class MODL::Parser::MODLParser::Modl_operatorContext

Public Class Methods

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

Public Instance Methods

EQUALS() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1826
def EQUALS()
  return token(MODLParser::EQUALS, 0)
end
EXCLAM() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1835
def EXCLAM()
  return token(MODLParser::EXCLAM, 0)
end
GTHAN() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1829
def GTHAN()
  return token(MODLParser::GTHAN, 0)
end
LTHAN() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1832
def LTHAN()
  return token(MODLParser::LTHAN, 0)
end
accept(visitor) click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1855
          def accept(visitor)
if (visitor.respond_to?(:visitModl_operator))
                    return visitor.visitModl_operator(self)
else
                   return visitor.visit_children(self)
end
          end
enter_rule( listener) click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1844
          def enter_rule( listener)
if (listener.respond_to?(:enterModl_operator))
                    listener.enterModl_operator(self)
end
          end
exit_rule( listener) click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1849
          def exit_rule( listener)
if (listener.respond_to?(:exitModl_operator))
                    listener.exitModl_operator(self)
end
          end
getRuleIndex() click to toggle source
# File lib/modl/parser/MODLParser.rb, line 1841
def getRuleIndex()
 return RULE_modl_operator
end