File tree Expand file tree Collapse file tree 3 files changed +1
-52
lines changed
src/main/java/org/truffleruby Expand file tree Collapse file tree 3 files changed +1
-52
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44
44
import org .truffleruby .core .cast .ToSNode ;
45
45
import org .truffleruby .core .cast .ToSNodeGen ;
46
46
import org .truffleruby .core .hash .ConcatHashLiteralNode ;
47
- import org .truffleruby .core .hash .EnsureSymbolKeysNode ;
48
47
import org .truffleruby .core .hash .HashLiteralNode ;
49
48
import org .truffleruby .core .kernel .KernelNodesFactory ;
50
49
import org .truffleruby .core .module .ModuleNodesFactory ;
@@ -1627,8 +1626,7 @@ public RubyNode visitHashNode(HashParseNode node) {
1627
1626
final RubyNode hashLiteralSoFar = HashLiteralNode
1628
1627
.create (language , keyValues .toArray (RubyNode .EMPTY_ARRAY ));
1629
1628
hashConcats .add (hashLiteralSoFar );
1630
- hashConcats .add (new EnsureSymbolKeysNode (
1631
- HashCastNodeGen .create (pair .getValue ().accept (this ))));
1629
+ hashConcats .add (HashCastNodeGen .create (pair .getValue ().accept (this )));
1632
1630
keyValues .clear ();
1633
1631
} else {
1634
1632
keyValues .add (pair .getKey ().accept (this ));
You can’t perform that action at this time.
0 commit comments