typeprof 0.9.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +1 -1
- data/Gemfile.lock +6 -5
- data/doc/demo.md +2 -2
- data/doc/todo.md +133 -0
- data/lib/typeprof/analyzer.rb +89 -37
- data/lib/typeprof/block.rb +34 -0
- data/lib/typeprof/builtin.rb +169 -66
- data/lib/typeprof/cli.rb +7 -0
- data/lib/typeprof/config.rb +25 -3
- data/lib/typeprof/container-type.rb +24 -0
- data/lib/typeprof/export.rb +130 -69
- data/lib/typeprof/import.rb +82 -38
- data/lib/typeprof/iseq.rb +23 -4
- data/lib/typeprof/method.rb +29 -7
- data/lib/typeprof/type.rb +75 -13
- data/lib/typeprof/version.rb +1 -1
- data/smoke/alias.rb +4 -4
- data/smoke/alias2.rb +3 -1
- data/smoke/arguments.rb +2 -2
- data/smoke/arguments2.rb +5 -5
- data/smoke/array-each.rb +1 -1
- data/smoke/array-each3.rb +1 -1
- data/smoke/array-map.rb +1 -1
- data/smoke/array-map2.rb +1 -1
- data/smoke/array-map3.rb +3 -3
- data/smoke/array-mul.rb +2 -2
- data/smoke/array-plus1.rb +1 -1
- data/smoke/array-plus2.rb +1 -0
- data/smoke/array-range-aref.rb +11 -11
- data/smoke/array-replace.rb +1 -1
- data/smoke/array1.rb +5 -5
- data/smoke/array10.rb +1 -1
- data/smoke/array11.rb +1 -1
- data/smoke/array12.rb +1 -1
- data/smoke/array14.rb +1 -1
- data/smoke/array15.rb +1 -1
- data/smoke/array2.rb +2 -2
- data/smoke/array3.rb +1 -0
- data/smoke/array6.rb +2 -1
- data/smoke/array8.rb +1 -1
- data/smoke/array9.rb +1 -1
- data/smoke/attr-module.rb +1 -0
- data/smoke/attr-vis.rb +43 -0
- data/smoke/attr-vis.rbs +4 -0
- data/smoke/attr.rb +2 -2
- data/smoke/block-ambiguous.rb +4 -4
- data/smoke/block-args1-rest.rb +6 -5
- data/smoke/block-args1.rb +5 -5
- data/smoke/block-args2-rest.rb +6 -5
- data/smoke/block-args2.rb +5 -5
- data/smoke/block-args3-rest.rb +7 -6
- data/smoke/block-args3.rb +6 -6
- data/smoke/block-blockarg.rb +3 -3
- data/smoke/block-kwarg.rb +4 -4
- data/smoke/block1.rb +1 -1
- data/smoke/block10.rb +1 -1
- data/smoke/block11.rb +2 -2
- data/smoke/block2.rb +1 -1
- data/smoke/block3.rb +1 -1
- data/smoke/block5.rb +1 -0
- data/smoke/block_given.rb +37 -0
- data/smoke/class_method.rb +2 -2
- data/smoke/class_method2.rb +2 -2
- data/smoke/constant2.rb +3 -2
- data/smoke/context-sensitive1.rb +1 -1
- data/smoke/cvar.rb +3 -2
- data/smoke/define_method.rb +2 -2
- data/smoke/define_method3.rb +1 -0
- data/smoke/define_method4.rb +1 -1
- data/smoke/define_method6.rb +19 -0
- data/smoke/demo.rb +6 -6
- data/smoke/demo1.rb +1 -1
- data/smoke/demo11.rb +1 -1
- data/smoke/demo2.rb +1 -1
- data/smoke/demo3.rb +1 -1
- data/smoke/demo4.rb +3 -3
- data/smoke/demo5.rb +1 -1
- data/smoke/demo6.rb +2 -1
- data/smoke/demo7.rb +1 -1
- data/smoke/demo9.rb +1 -0
- data/smoke/dummy-execution1.rb +1 -1
- data/smoke/dummy-execution2.rb +1 -1
- data/smoke/dummy_element.rb +1 -1
- data/smoke/ensure1.rb +1 -1
- data/smoke/enum_for.rb +15 -0
- data/smoke/enum_for2.rb +17 -0
- data/smoke/fib.rb +2 -2
- data/smoke/flow1.rb +1 -1
- data/smoke/flow10.rb +17 -0
- data/smoke/flow2.rb +1 -1
- data/smoke/flow3.rb +1 -1
- data/smoke/flow5.rb +1 -1
- data/smoke/flow6.rb +1 -1
- data/smoke/flow7.rb +1 -1
- data/smoke/flow8.rb +1 -1
- data/smoke/flow9.rb +1 -1
- data/smoke/function.rb +1 -1
- data/smoke/gvar.rb +1 -1
- data/smoke/gvar2.rb +1 -1
- data/smoke/hash-fetch.rb +3 -3
- data/smoke/inheritance.rb +4 -4
- data/smoke/initialize.rb +3 -2
- data/smoke/instance_eval.rb +1 -1
- data/smoke/int_times.rb +1 -1
- data/smoke/integer.rb +1 -1
- data/smoke/ivar.rb +3 -2
- data/smoke/ivar2.rb +2 -2
- data/smoke/ivar3.rb +2 -1
- data/smoke/ivar4.rb +21 -0
- data/smoke/kernel-class.rb +1 -1
- data/smoke/keyword4.rb +1 -1
- data/smoke/kwrest.rb +1 -0
- data/smoke/kwsplat1.rb +2 -2
- data/smoke/kwsplat2.rb +1 -1
- data/smoke/manual-rbs.rb +2 -1
- data/smoke/manual-rbs3.rb +1 -0
- data/smoke/method_in_branch.rb +1 -1
- data/smoke/method_missing.rb +4 -3
- data/smoke/module3.rb +1 -1
- data/smoke/module4.rb +1 -0
- data/smoke/module5.rb +1 -1
- data/smoke/module_function1.rb +3 -2
- data/smoke/module_function2.rb +3 -2
- data/smoke/multiple-include.rb +1 -0
- data/smoke/next1.rb +1 -1
- data/smoke/object-send1.rb +3 -3
- data/smoke/optional1.rb +1 -1
- data/smoke/optional2.rb +1 -1
- data/smoke/optional3.rb +1 -1
- data/smoke/parameterizedd-self.rb +2 -1
- data/smoke/prepend1.rb +33 -0
- data/smoke/prepend2.rb +10 -0
- data/smoke/prepend2.rbs +9 -0
- data/smoke/primitive_method.rb +19 -0
- data/smoke/proc4.rb +1 -1
- data/smoke/public.rb +4 -0
- data/smoke/range.rb +1 -1
- data/smoke/rbs-attr.rb +2 -2
- data/smoke/rbs-proc2.rb +1 -1
- data/smoke/rbs-proc3.rb +1 -1
- data/smoke/rbs-tyvar4.rb +3 -2
- data/smoke/rbs-tyvar6.rb +3 -3
- data/smoke/redo1.rb +1 -1
- data/smoke/redo2.rb +1 -1
- data/smoke/rescue1.rb +1 -1
- data/smoke/rescue2.rb +1 -1
- data/smoke/rescue3.rb +1 -0
- data/smoke/rescue4.rb +1 -1
- data/smoke/respond_to.rb +1 -1
- data/smoke/rest1.rb +2 -2
- data/smoke/rest2.rb +1 -1
- data/smoke/rest3.rb +6 -6
- data/smoke/rest4.rb +2 -2
- data/smoke/rest5.rb +1 -1
- data/smoke/rest6.rb +1 -1
- data/smoke/retry1.rb +2 -2
- data/smoke/simple.rb +12 -0
- data/smoke/step.rb +3 -3
- data/smoke/struct-keyword_init.rb +6 -16
- data/smoke/struct.rb +1 -1
- data/smoke/struct2.rb +1 -1
- data/smoke/struct3.rb +1 -1
- data/smoke/struct4.rb +1 -1
- data/smoke/struct5.rb +2 -2
- data/smoke/struct6.rb +2 -2
- data/smoke/struct7.rb +1 -1
- data/smoke/super1.rb +4 -4
- data/smoke/super3.rb +3 -2
- data/smoke/super4.rb +7 -5
- data/smoke/super5.rb +6 -4
- data/smoke/symbol-proc-attr.rb +1 -1
- data/smoke/tap1.rb +2 -2
- data/smoke/toplevel.rb +1 -1
- data/smoke/type_var.rb +3 -3
- data/smoke/user-demo.rb +1 -1
- data/smoke/wrong-extend.rb +1 -0
- data/smoke/wrong-include.rb +1 -0
- data/smoke/wrong-include2.rb +1 -1
- data/testbed/goodcheck-Gemfile.lock +1 -1
- data/typeprof.gemspec +1 -1
- metadata +19 -5
data/smoke/int_times.rb
CHANGED
data/smoke/integer.rb
CHANGED
data/smoke/ivar.rb
CHANGED
@@ -20,11 +20,12 @@ __END__
|
|
20
20
|
# Classes
|
21
21
|
class Object
|
22
22
|
private
|
23
|
-
def log: (Integer | String) -> nil
|
23
|
+
def log: (Integer | String x) -> nil
|
24
24
|
end
|
25
25
|
|
26
26
|
class Foo
|
27
27
|
@foo: Integer | String
|
28
|
-
|
28
|
+
|
29
|
+
def foo=: (Integer | String x) -> (Integer | String)
|
29
30
|
def foo: -> (Integer | String)
|
30
31
|
end
|
data/smoke/ivar2.rb
CHANGED
@@ -23,8 +23,8 @@ Foo.new.set
|
|
23
23
|
__END__
|
24
24
|
# Classes
|
25
25
|
class Foo
|
26
|
-
attr_reader array: Array[:sym | Integer | String]
|
27
|
-
attr_reader hash: {a: Integer, b: String, c: :sym}
|
28
26
|
def initialize: -> Hash[bot, bot]
|
29
27
|
def set: -> :sym
|
28
|
+
attr_reader array: Array[:sym | Integer | String]
|
29
|
+
attr_reader hash: {a: Integer, b: String, c: :sym}
|
30
30
|
end
|
data/smoke/ivar3.rb
CHANGED
@@ -7,10 +7,11 @@ end
|
|
7
7
|
|
8
8
|
__END__
|
9
9
|
# Errors
|
10
|
-
smoke/ivar3.rb:3: [warning] inconsistent assignment to RBS-declared
|
10
|
+
smoke/ivar3.rb:3: [warning] inconsistent assignment to RBS-declared variable
|
11
11
|
|
12
12
|
# Classes
|
13
13
|
class Foo
|
14
14
|
@bar: String
|
15
|
+
|
15
16
|
def initialize: -> String
|
16
17
|
end
|
data/smoke/ivar4.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
def foo
|
2
|
+
bot = @undefined_ivar
|
3
|
+
unless bot
|
4
|
+
bot.nil?
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
foo # There were a bug that type profiling is terminated at this line
|
9
|
+
|
10
|
+
def bar
|
11
|
+
end
|
12
|
+
|
13
|
+
__END__
|
14
|
+
# Classes
|
15
|
+
class Object
|
16
|
+
@undefined_ivar: bot
|
17
|
+
|
18
|
+
private
|
19
|
+
def foo: -> bool
|
20
|
+
def bar: -> nil
|
21
|
+
end
|
data/smoke/kernel-class.rb
CHANGED
data/smoke/keyword4.rb
CHANGED
data/smoke/kwrest.rb
CHANGED
data/smoke/kwsplat1.rb
CHANGED
@@ -38,6 +38,6 @@ class Object
|
|
38
38
|
private
|
39
39
|
def foo: (k: Integer) -> nil
|
40
40
|
def bar: (int: Integer, str: String) -> nil
|
41
|
-
def baz: (**
|
42
|
-
def qux: (**
|
41
|
+
def baz: (**Integer | String) -> nil
|
42
|
+
def qux: (**untyped) -> nil
|
43
43
|
end
|
data/smoke/kwsplat2.rb
CHANGED
data/smoke/manual-rbs.rb
CHANGED
data/smoke/manual-rbs3.rb
CHANGED
data/smoke/method_in_branch.rb
CHANGED
data/smoke/method_missing.rb
CHANGED
@@ -18,11 +18,12 @@ C.new(D.new).foo(:X, :Y, :Z)
|
|
18
18
|
__END__
|
19
19
|
# Classes
|
20
20
|
class D
|
21
|
-
def foo: (:X, :Y, :Z) -> nil
|
21
|
+
def foo: (:X x, :Y y, :Z z) -> nil
|
22
22
|
end
|
23
23
|
|
24
24
|
class C
|
25
25
|
@target: D
|
26
|
-
|
27
|
-
def
|
26
|
+
|
27
|
+
def initialize: (D x) -> D
|
28
|
+
def method_missing: (:foo m, *:X | :Y | :Z args) -> nil
|
28
29
|
end
|
data/smoke/module3.rb
CHANGED
data/smoke/module4.rb
CHANGED
data/smoke/module5.rb
CHANGED
data/smoke/module_function1.rb
CHANGED
@@ -18,11 +18,12 @@ Bar.new.bar
|
|
18
18
|
__END__
|
19
19
|
# Classes
|
20
20
|
module Foo
|
21
|
-
def foo: (:x | :y) -> (:x | :y)
|
22
|
-
def self.foo: (:x | :y) -> (:x | :y)
|
21
|
+
def foo: (:x | :y x) -> (:x | :y)
|
22
|
+
def self.foo: (:x | :y x) -> (:x | :y)
|
23
23
|
end
|
24
24
|
|
25
25
|
class Bar
|
26
26
|
include Foo
|
27
|
+
|
27
28
|
def bar: -> (:x | :y)
|
28
29
|
end
|
data/smoke/module_function2.rb
CHANGED
@@ -18,11 +18,12 @@ Bar.new.bar
|
|
18
18
|
__END__
|
19
19
|
# Classes
|
20
20
|
module Foo
|
21
|
-
def foo: (:x | :y) -> (:x | :y)
|
22
|
-
def self.foo: (:x | :y) -> (:x | :y)
|
21
|
+
def foo: (:x | :y x) -> (:x | :y)
|
22
|
+
def self.foo: (:x | :y x) -> (:x | :y)
|
23
23
|
end
|
24
24
|
|
25
25
|
class Bar
|
26
26
|
include Foo
|
27
|
+
|
27
28
|
def bar: -> (:x | :y)
|
28
29
|
end
|
data/smoke/multiple-include.rb
CHANGED
data/smoke/next1.rb
CHANGED
data/smoke/object-send1.rb
CHANGED
@@ -17,7 +17,7 @@ __END__
|
|
17
17
|
# Classes
|
18
18
|
class Object
|
19
19
|
private
|
20
|
-
def foo: (Integer) -> Integer
|
21
|
-
def bar: (Integer) -> Integer
|
22
|
-
def dispatch: (:bar | :foo) -> Integer
|
20
|
+
def foo: (Integer x) -> Integer
|
21
|
+
def bar: (Integer x) -> Integer
|
22
|
+
def dispatch: (:bar | :foo mid) -> Integer
|
23
23
|
end
|
data/smoke/optional1.rb
CHANGED
@@ -10,5 +10,5 @@ __END__
|
|
10
10
|
# Classes
|
11
11
|
class Object
|
12
12
|
private
|
13
|
-
def foo: (String, ?Integer | String, ?Integer | String, String) -> ([String, Integer | String, Integer | String, String])
|
13
|
+
def foo: (String a, ?Integer | String o1, ?Integer | String o2, String z) -> ([String, Integer | String, Integer | String, String])
|
14
14
|
end
|
data/smoke/optional2.rb
CHANGED
@@ -12,5 +12,5 @@ __END__
|
|
12
12
|
# Classes
|
13
13
|
class Object
|
14
14
|
private
|
15
|
-
def foo: (String, ?Integer | String, ?Integer | String, *String, String) -> ([String, Integer | String, Integer | String, Array[String], String])
|
15
|
+
def foo: (String a, ?Integer | String o1, ?Integer | String o2, *String r, String z) -> ([String, Integer | String, Integer | String, Array[String], String])
|
16
16
|
end
|
data/smoke/optional3.rb
CHANGED
data/smoke/prepend1.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
module Mod
|
2
|
+
def foo
|
3
|
+
[42, super(:sym)]
|
4
|
+
end
|
5
|
+
end
|
6
|
+
|
7
|
+
class Foo
|
8
|
+
prepend Mod
|
9
|
+
|
10
|
+
def foo(sym_arg)
|
11
|
+
sym_arg.to_s
|
12
|
+
end
|
13
|
+
|
14
|
+
def bar
|
15
|
+
foo
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
__END__
|
20
|
+
# Errors
|
21
|
+
smoke/prepend1.rb:3: [error] no superclass method: Mod#foo
|
22
|
+
|
23
|
+
# Classes
|
24
|
+
module Mod
|
25
|
+
def foo: -> ([Integer, String | untyped])
|
26
|
+
end
|
27
|
+
|
28
|
+
class Foo
|
29
|
+
prepend Mod
|
30
|
+
|
31
|
+
def foo: (:sym | untyped sym_arg) -> (String | untyped)
|
32
|
+
def bar: -> ([Integer, String | untyped])
|
33
|
+
end
|
data/smoke/prepend2.rb
ADDED
data/smoke/prepend2.rbs
ADDED
data/smoke/proc4.rb
CHANGED
data/smoke/public.rb
CHANGED
data/smoke/range.rb
CHANGED
data/smoke/rbs-attr.rb
CHANGED
@@ -15,8 +15,8 @@ end
|
|
15
15
|
|
16
16
|
__END__
|
17
17
|
# Errors
|
18
|
-
smoke/rbs-attr.rb:11: [warning] inconsistent assignment to RBS-declared
|
19
|
-
smoke/rbs-attr.rb:13: [warning] inconsistent assignment to RBS-declared
|
18
|
+
smoke/rbs-attr.rb:11: [warning] inconsistent assignment to RBS-declared variable
|
19
|
+
smoke/rbs-attr.rb:13: [warning] inconsistent assignment to RBS-declared variable
|
20
20
|
|
21
21
|
# Classes
|
22
22
|
class Object
|
data/smoke/rbs-proc2.rb
CHANGED
data/smoke/rbs-proc3.rb
CHANGED
data/smoke/rbs-tyvar4.rb
CHANGED
@@ -31,6 +31,7 @@ __END__
|
|
31
31
|
# Classes
|
32
32
|
class Foo
|
33
33
|
@ivar: Array[Array[String]]
|
34
|
-
|
35
|
-
def
|
34
|
+
|
35
|
+
def initialize: (Array[Array[String]] ivar) -> Array[Array[String]]
|
36
|
+
def foo: (:a | :b n) -> nil
|
36
37
|
end
|
data/smoke/rbs-tyvar6.rb
CHANGED
@@ -12,7 +12,7 @@ __END__
|
|
12
12
|
# Classes
|
13
13
|
class Object
|
14
14
|
private
|
15
|
-
def log1: (Bar[String]) -> nil
|
16
|
-
def log2: (Array[String]) -> nil
|
17
|
-
def log3: (Integer) -> nil
|
15
|
+
def log1: (Bar[String] obj) -> nil
|
16
|
+
def log2: (Array[String] obj) -> nil
|
17
|
+
def log3: (Integer obj) -> nil
|
18
18
|
end
|