Package com.prineside.luaj.ast
Class SyntaxElement
java.lang.Object
com.prineside.luaj.ast.SyntaxElement
Base class for syntax elements of the parse tree that appear in source files.
The LuaParser class will fill these values out during parsing for use in
syntax highlighting, for example.
-
Field Summary
FieldsModifier and TypeFieldDescriptionshort
The column at which the element begins.int
The line number on which the element begins.short
The column at which the element ends.int
The line number on which the element ends. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
beginLine
public int beginLineThe line number on which the element begins. -
beginColumn
public short beginColumnThe column at which the element begins. -
endLine
public int endLineThe line number on which the element ends. -
endColumn
public short endColumnThe column at which the element ends.
-
-
Constructor Details
-
SyntaxElement
public SyntaxElement()
-