ReadLocalDummyNode.java
/*
* Copyright (c) 2014 Oracle and/or its affiliates. All rights reserved. This
* code is released under a tri EPL/GPL/LGPL license. You can use it,
* redistribute it and/or modify it under the terms of the:
*
* Eclipse Public License version 1.0
* GNU General Public License version 2
* GNU Lesser General Public License version 2.1
*/
package org.jruby.truffle.translator;
import com.oracle.truffle.api.frame.FrameSlot;
import com.oracle.truffle.api.source.SourceSection;
import org.jruby.ast.Node;
import org.jruby.ast.NodeType;
import org.jruby.ast.visitor.NodeVisitor;
import org.jruby.lexer.yacc.ISourcePosition;
import java.util.Collections;
import java.util.List;
public class ReadLocalDummyNode extends org.jruby.ast.Node {
final SourceSection sourceSection;
final FrameSlot frameSlot;
public ReadLocalDummyNode(ISourcePosition sourcePosition, SourceSection sourceSection, FrameSlot frameSlot) {
super(sourcePosition);
this.sourceSection = sourceSection;
this.frameSlot = frameSlot;
}
@Override
public <T> T accept(NodeVisitor<T> visitor) {
return visitor.visitOther(this);
}
@Override
public List<Node> childNodes() {
return Collections.EMPTY_LIST;
}
@Override
public NodeType getNodeType() {
throw new UnsupportedOperationException();
}
public SourceSection getSourceSection() {
return sourceSection;
}
public FrameSlot getFrameSlot() {
return frameSlot;
}
}