File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/main/java/org/truffleruby/core/hash/library Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change 11
11
12
12
import com .oracle .truffle .api .CompilerAsserts ;
13
13
import com .oracle .truffle .api .dsl .Cached ;
14
+ import com .oracle .truffle .api .dsl .GenerateInline ;
14
15
import com .oracle .truffle .api .dsl .GenerateUncached ;
15
16
import com .oracle .truffle .api .dsl .Specialization ;
16
17
import com .oracle .truffle .api .frame .Frame ;
@@ -118,6 +119,7 @@ public interface EachEntryCallback {
118
119
/** Call the block with an key-value entry. If the block has > 1 arity, passes the key and the value as arguments,
119
120
* otherwise passes an array containing the key and the value as single argument. */
120
121
@ GenerateUncached
122
+ @ GenerateInline (false )
121
123
public abstract static class YieldPairNode extends RubyBaseNode {
122
124
123
125
public static YieldPairNode create () {
You can’t perform that action at this time.
0 commit comments