Skip to content

Commit

Permalink
Revert "[truffle] Fix wrong class name in getlex"
Browse files Browse the repository at this point in the history
This reverts commit ed653e1.
  • Loading branch information
pmurias committed Aug 31, 2018
1 parent b172740 commit 85c90e8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -8,12 +8,12 @@
import org.perl6.nqp.dsl.Deserializer;

@NodeInfo(shortName = "getlex_o")
public final class NQPGetlexNode extends NQPObjNode {
public final class NQPGetlexObjNode extends NQPObjNode {
@Child private NQPNode leftNode;
@Child private NQPNode rightNode;

@Deserializer
public NQPGetlexNode(NQPNode leftNode, NQPNode rightNode) {
public NQPGetlexObjNode(NQPNode leftNode, NQPNode rightNode) {
this.leftNode = leftNode;
this.rightNode = rightNode;
}
Expand Down

0 comments on commit 85c90e8

Please sign in to comment.