class MODL::Parser::MODLParser::Modl_arrayContext
Public Class Methods
new( parent, invokingState)
click to toggle source
Calls superclass method
# File lib/modl/parser/MODLParser.rb, line 434 def initialize( parent, invokingState) super(parent, invokingState) end
Public Instance Methods
LSBRAC()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 410 def LSBRAC() return token(MODLParser::LSBRAC, 0) end
RSBRAC()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 413 def RSBRAC() return token(MODLParser::RSBRAC, 0) end
STRUCT_SEP()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 428 def STRUCT_SEP() return tokens(MODLParser::STRUCT_SEP) end
STRUCT_SEP_i( i)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 431 def STRUCT_SEP_i( i) return token(MODLParser::STRUCT_SEP, i) end
accept(visitor)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 451 def accept(visitor) if (visitor.respond_to?(:visitModl_array)) return visitor.visitModl_array(self) else return visitor.visit_children(self) end end
enter_rule( listener)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 440 def enter_rule( listener) if (listener.respond_to?(:enterModl_array)) listener.enterModl_array(self) end end
exit_rule( listener)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 445 def exit_rule( listener) if (listener.respond_to?(:exitModl_array)) listener.exitModl_array(self) end end
getRuleIndex()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 437 def getRuleIndex() return RULE_modl_array end
modl_array_item()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 416 def modl_array_item() return rule_contexts("Modl_array_itemContext") end
modl_array_item_i( i)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 419 def modl_array_item_i( i) return rule_context("Modl_array_itemContext",i) end
modl_nb_array()
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 422 def modl_nb_array() return rule_contexts("Modl_nb_arrayContext") end
modl_nb_array_i( i)
click to toggle source
# File lib/modl/parser/MODLParser.rb, line 425 def modl_nb_array_i( i) return rule_context("Modl_nb_arrayContext",i) end