Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
174 additions
and 48 deletions.
- +160 −34 core/src/main/java/org/jruby/truffle/nodes/RubyNode.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/cast/ArrayCastNode.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/cast/BooleanCastNode.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/cast/SplatCastNode.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/core/FalseClassNodes.java
- +5 −5 core/src/main/java/org/jruby/truffle/nodes/core/FloatNodes.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/core/KernelNodes.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/core/NilClassNodes.java
- +2 −2 core/src/main/java/org/jruby/truffle/nodes/core/TrueClassNodes.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/methods/AliasNode.java
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -57,7 +57,7 @@ public boolean doFloat(double value) { | ||
return true; | ||
} | ||
|
||
@Specialization(guards = "!isRubyNilClass") | ||
public boolean doBasicObject(RubyBasicObject object) { | ||
return true; | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -55,7 +55,7 @@ public boolean orXor(RubyNilClass other) { | ||
return false; | ||
} | ||
|
||
@Specialization(guards = "!isRubyNilClass") | ||
public boolean orXor(RubyBasicObject other) { | ||
return true; | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -192,7 +192,7 @@ public boolean orXor(RubyNilClass other) { | ||
return false; | ||
} | ||
|
||
@Specialization(guards = "!isRubyNilClass") | ||
public boolean orXor(RubyBasicObject other) { | ||
return true; | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters