Skip to content

Commit 85c90e8

Browse files
committed
Revert "[truffle] Fix wrong class name in getlex"
This reverts commit ed653e1.
1 parent b172740 commit 85c90e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vm/jvm/runtime/org/perl6/nqp/truffle/nodes/expression/NQPGetlexNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
import org.perl6.nqp.dsl.Deserializer;
99

1010
@NodeInfo(shortName = "getlex_o")
11-
public final class NQPGetlexNode extends NQPObjNode {
11+
public final class NQPGetlexObjNode extends NQPObjNode {
1212
@Child private NQPNode leftNode;
1313
@Child private NQPNode rightNode;
1414

1515
@Deserializer
16-
public NQPGetlexNode(NQPNode leftNode, NQPNode rightNode) {
16+
public NQPGetlexObjNode(NQPNode leftNode, NQPNode rightNode) {
1717
this.leftNode = leftNode;
1818
this.rightNode = rightNode;
1919
}

0 commit comments

Comments
 (0)