Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
37 additions
and 31 deletions.
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/cast/LambdaNode.java
- +2 −2 core/src/main/java/org/jruby/truffle/nodes/core/ArrayNodes.java
- +2 −2 core/src/main/java/org/jruby/truffle/nodes/core/KernelNodes.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/core/ProcNodes.java
- +1 −1 core/src/main/java/org/jruby/truffle/nodes/methods/BlockDefinitionNode.java
- +13 −4 core/src/main/java/org/jruby/truffle/nodes/supercall/AbstractGeneralSuperCallNode.java
- +2 −2 core/src/main/java/org/jruby/truffle/nodes/supercall/GeneralSuperCallNode.java
- +2 −2 core/src/main/java/org/jruby/truffle/nodes/supercall/GeneralSuperReCallNode.java
- +1 −1 core/src/main/java/org/jruby/truffle/runtime/RubyCallStack.java
- +9 −3 core/src/main/java/org/jruby/truffle/runtime/core/RubyProc.java
- +1 −1 core/src/main/java/org/jruby/truffle/runtime/core/RubySymbol.java
- +2 −2 core/src/main/java/org/jruby/truffle/translator/MethodTranslator.java
- +0 −6 spec/truffle/tags/language/defined_tags.txt
- +0 −3 spec/truffle/tags/language/super_tags.txt
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
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
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
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
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
@@ -1,12 +1,9 @@ | ||
fails:The super keyword calls the correct method when the method visibility is modified | ||
fails:The super keyword supers up appropriate name even if used for multiple method names | ||
fails:The super keyword can be used with implicit arguments from a method defined with define_method | ||
fails:The super keyword passes along modified rest args when they weren't originally empty | ||
fails:The super keyword passes along modified rest args when they were originally empty | ||
fails:The super keyword raises a RuntimeError when called with implicit arguments from a method defined with define_method | ||
fails:The super keyword invokes methods from a chain of anonymous modules | ||
fails:The super keyword calls method_missing when a superclass method is not found | ||
fails:The super keyword sees the included version of a module a method is alias from |