class MODL::Parser::MODLParser::Modl_conditionContext

Public Class Methods

new( parent, invokingState) click to toggle source
Calls superclass method
# File lib/modl/parser/MODLParser.rb, line 1943
def initialize( parent,  invokingState)
        super(parent, invokingState)
end

Public Instance Methods

FSLASH() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1937
def FSLASH()
 return tokens(MODLParser::FSLASH)
end
FSLASH_i( i) click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1940
def FSLASH_i( i)
        return token(MODLParser::FSLASH, i)
end
STRING() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1931
def STRING()
  return token(MODLParser::STRING, 0)
end
accept(visitor) click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1960
          def accept(visitor)
if (visitor.respond_to?(:visitModl_condition))
                    return visitor.visitModl_condition(self)
else
                   return visitor.visit_children(self)
end
          end
enter_rule( listener) click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1949
          def enter_rule( listener)
if (listener.respond_to?(:enterModl_condition))
                    listener.enterModl_condition(self)
end
          end
exit_rule( listener) click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1954
          def exit_rule( listener)
if (listener.respond_to?(:exitModl_condition))
                    listener.exitModl_condition(self)
end
          end
getRuleIndex() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1946
def getRuleIndex()
 return RULE_modl_condition
end
modl_operator() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1934
def modl_operator()
        return rule_context("Modl_operatorContext",0)
end
modl_value() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1925
def modl_value()
        return rule_contexts("Modl_valueContext")
end
modl_value_i( i) click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1928
def modl_value_i( i)
        return rule_context("Modl_valueContext",i)
end