3
3
class Orthoses::Trace
4
4
@loader: untyped
5
5
@patterns: untyped
6
+ @trace_point_filter: untyped
6
7
@sort_union_types: untyped
7
- def initialize : (Orthoses::_Call loader, patterns: Array[String] | _CallablePatterns , ?sort_union_types: bool ?) -> void
8
+ def initialize : (Orthoses::_Call loader, patterns: Array[String], trace_point_filter: _Callable? , ?sort_union_types: bool ?) -> void
8
9
def call : () -> Orthoses::store
9
10
end
10
11
11
12
class Orthoses::Trace::Attribute
12
13
@loader: untyped
13
14
@patterns: untyped
15
+ @trace_point_filter: untyped
14
16
@sort_union_types: untyped
15
17
@captured_dict: untyped
16
- def initialize : (Orthoses::_Call loader, patterns: Array[String] | Orthoses::Trace::_CallablePatterns , ?sort_union_types: bool ?) -> void
18
+ def initialize : (Orthoses::_Call loader, patterns: Array[String], trace_point_filter: _Callable? , ?sort_union_types: bool ?) -> void
17
19
def call : () -> Orthoses::store
18
20
private def build_trace_hook : () -> untyped
19
21
include Orthoses::Trace::Targetable
32
34
class Orthoses::Trace::Method
33
35
@loader: untyped
34
36
@patterns: untyped
37
+ @trace_point_filter: untyped
35
38
@sort_union_types: untyped
36
39
@stack: untyped
37
40
@args_return_map: untyped
38
41
@alias_map: untyped
39
- def initialize : (Orthoses::_Call loader, patterns: Array[String] | Orthoses::Trace::_CallablePatterns , ?sort_union_types: bool ?) -> void
42
+ def initialize : (Orthoses::_Call loader, patterns: Array[String], trace_point_filter: _Callable? , ?sort_union_types: bool ?) -> void
40
43
def call : () -> Orthoses::store
41
44
private def build_trace_point : () -> untyped
42
45
private def build_members : () -> untyped
@@ -49,9 +52,9 @@ class Orthoses::Trace::Method::Info < ::Struct[untyped]
49
52
end
50
53
51
54
module Orthoses::Trace::Targetable
52
- def target? : (untyped name, untyped tp ) -> untyped
55
+ def target? : (untyped name) -> untyped
53
56
end
54
57
55
- interface Orthoses::Trace::_CallablePatterns
56
- def call : (String, TracePoint ) -> boolish
58
+ interface Orthoses::Trace::_Callable
59
+ def call : (String) -> boolish
57
60
end
0 commit comments