public class RubyParserResult
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private Node |
ast |
private java.util.List<Node> |
beginNodes |
static java.util.List<Node> |
EMPTY_BEGIN_LIST |
private int |
endOffset |
private DynamicScope |
scope |
| Constructor and Description |
|---|
RubyParserResult() |
| Modifier and Type | Method and Description |
|---|---|
void |
addBeginNode(PreExeNode node) |
Node |
getAST() |
java.util.List<Node> |
getBeginNodes() |
int |
getEndOffset() |
DynamicScope |
getScope() |
void |
setAST(Node ast)
Sets the ast.
|
void |
setEndOffset(int endOffset) |
void |
setScope(DynamicScope scope) |
public static final java.util.List<Node> EMPTY_BEGIN_LIST
private java.util.List<Node> beginNodes
private Node ast
private int endOffset
private DynamicScope scope
public Node getAST()
public DynamicScope getScope()
public void setScope(DynamicScope scope)
public void setAST(Node ast)
ast - The ast to setpublic void addBeginNode(PreExeNode node)
public java.util.List<Node> getBeginNodes()
public int getEndOffset()
public void setEndOffset(int endOffset)