class Lingo::Context
- Lingo::Context
- Reference
- Object
Defined in:
lingo/context.crConstructors
Instance Method Summary
- #column : Int32
- #column=(column : Int32)
- #consume(matched_string)
- #current_node
- #current_node=(current_node)
- #fork(root = nil)
- #join(other_context)
- #line : Int32
- #line=(line : Int32)
- #push_node(parsed_node)
- #remainder : String
- #remainder=(remainder : String)
- #root : Lingo::Node?
- #root=(root : Nil | Lingo::Node)
Constructor Detail
def self.new(remainder : String = "", root : Nil | Lingo::Node = nil.as(Lingo::Node | ::Nil), column : Int32 = 1, line : Int32 = 1)
#