Module: Perfetto::Interceptor::StubMethods
- Defined in:
- lib/perfetto/interceptor.rb
Overview
Stub methods
Instance Method Summary collapse
- #perfetto_trace_all ⇒ Object
- #perfetto_trace_class_method(_method_name) ⇒ Object
- #perfetto_trace_instance_method(_method_name) ⇒ Object
- #perfetto_traced_class_method?(_method_name) ⇒ Boolean
- #perfetto_traced_class_methods ⇒ Object
- #perfetto_traced_instance_method?(_method_name) ⇒ Boolean
- #perfetto_traced_instance_methods ⇒ Object
Instance Method Details
#perfetto_trace_all ⇒ Object
21 |
# File 'lib/perfetto/interceptor.rb', line 21 def perfetto_trace_all; end |
#perfetto_trace_class_method(_method_name) ⇒ Object
20 |
# File 'lib/perfetto/interceptor.rb', line 20 def perfetto_trace_class_method(_method_name); end |
#perfetto_trace_instance_method(_method_name) ⇒ Object
19 |
# File 'lib/perfetto/interceptor.rb', line 19 def perfetto_trace_instance_method(_method_name); end |
#perfetto_traced_class_method?(_method_name) ⇒ Boolean
27 28 29 |
# File 'lib/perfetto/interceptor.rb', line 27 def perfetto_traced_class_method?(_method_name) false end |
#perfetto_traced_class_methods ⇒ Object
35 36 37 |
# File 'lib/perfetto/interceptor.rb', line 35 def perfetto_traced_class_methods [] end |
#perfetto_traced_instance_method?(_method_name) ⇒ Boolean
23 24 25 |
# File 'lib/perfetto/interceptor.rb', line 23 def perfetto_traced_instance_method?(_method_name) false end |
#perfetto_traced_instance_methods ⇒ Object
31 32 33 |
# File 'lib/perfetto/interceptor.rb', line 31 def perfetto_traced_instance_methods [] end |