nitc :: TablesCapable :: defaultinit
nitc :: TablesCapable :: lexer_accept
The accept value of the lexer at initc :: TablesCapable :: lexer_goto
The goto value of the lexer at row i, column j-1nitc :: TablesCapable :: parser_action
The action value of the parser at row i, column j-1nitc :: TablesCapable :: parser_goto
The goto value of the parser at row i, column j-1nitc $ TablesCapable :: SELF
Type of this instance, automatically specialized in every classcore :: Object :: class_factory
Implementation used byget_class
to create the specific class.
nitc :: TablesCapable :: defaultinit
core :: Object :: defaultinit
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
nitc :: TablesCapable :: lexer_accept
The accept value of the lexer at initc :: TablesCapable :: lexer_goto
The goto value of the lexer at row i, column j-1core :: Object :: native_class_name
The class name of the object in CString format.core :: Object :: output_class_name
Display class name on stdout (debug only).nitc :: TablesCapable :: parser_action
The action value of the parser at row i, column j-1nitc :: TablesCapable :: parser_goto
The goto value of the parser at row i, column j-1
# Interface allowing the acces of the tables used during the parsing.
interface TablesCapable
# The goto value of the lexer at row i, column j-1
# Note that the length of the row r is stored at (r, 0)
fun lexer_goto(i, j: Int): Int is extern "lexer_goto"
# The accept value of the lexer at i
fun lexer_accept(i: Int): Int is extern "lexer_accept"
# The goto value of the parser at row i, column j-1
# Note that the length of the row r is stored at (r, 0)
fun parser_goto(i, j: Int): Int is extern "parser_goto"
# The action value of the parser at row i, column j-1
# Note that the length of the row r is stored at (r, 0)
fun parser_action(i, j: Int): Int is extern "parser_action"
end
src/parser/tables.nit:18,1--34,3