File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/main/ruby/truffleruby/core Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,6 @@ fails:Public methods on Digest.singleton_class should include const_missing
34
34
fails:Public methods on Digest::Instance should not include finish
35
35
fails:Public methods on Dir should not include closed?
36
36
fails:Public methods on Exception should include respond_to?
37
- fails:Public methods on FalseClass should include ===
38
- fails:Public methods on TrueClass should include ===
39
- fails:Public methods on NilClass should include ===
40
37
fails:Public methods on Fiber should not include alive?
41
38
fails:Public methods on Fiber should not include transfer
42
39
fails:Public methods on Fiber should include inspect
@@ -64,4 +61,3 @@ fails:Public methods on Enumerator::Lazy should include filter_map
64
61
fails:Public methods on Enumerator::Lazy should include with_index
65
62
fails:Public methods on Fiber should include raise
66
63
fails:Public methods on IO should include set_encoding_by_bom
67
- fails:Public methods on Module should include const_source_location
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ def inspect
38
38
to_s
39
39
end
40
40
41
+ alias_method :=== , :===
41
42
end
42
43
43
44
FALSE = false
Original file line number Diff line number Diff line change @@ -76,6 +76,8 @@ def to_c
76
76
def to_h
77
77
{ }
78
78
end
79
+
80
+ alias_method :=== , :===
79
81
end
80
82
81
83
NIL = nil
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ def inspect
38
38
to_s
39
39
end
40
40
41
+ alias_method :=== , :===
41
42
end
42
43
43
44
TRUE = true
You can’t perform that action at this time.
0 commit comments