class MODL::Parser::MODLParser::Modl_structureContext
Public Class Methods
new( parent, invokingState)
click to toggle source
Calls superclass method
# File lib/modl/parser/MODLParser.rb, line 251 def initialize( parent, invokingState) super(parent, invokingState) end
Public Instance Methods
accept(visitor)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 268 def accept(visitor) if (visitor.respond_to?(:visitModl_structure)) return visitor.visitModl_structure(self) else return visitor.visit_children(self) end end
enter_rule( listener)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 257 def enter_rule( listener) if (listener.respond_to?(:enterModl_structure)) listener.enterModl_structure(self) end end
exit_rule( listener)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 262 def exit_rule( listener) if (listener.respond_to?(:exitModl_structure)) listener.exitModl_structure(self) end end
getRuleIndex()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 254 def getRuleIndex() return RULE_modl_structure end
modl_array()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 242 def modl_array() return rule_context("Modl_arrayContext",0) end
modl_map()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 239 def modl_map() return rule_context("Modl_mapContext",0) end
modl_pair()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 248 def modl_pair() return rule_context("Modl_pairContext",0) end
modl_top_level_conditional()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 245 def modl_top_level_conditional() return rule_context("Modl_top_level_conditionalContext",0) end