class DDQL::TokenType::InfixOperator

Public Class Methods

new() click to toggle source
Calls superclass method DDQL::TokenType::new
# File lib/ddql/token_type.rb, line 333
def initialize
  super(name: :infixoperator, pattern: Operators.operator_regex(:infix))
end

Public Instance Methods

infix?() click to toggle source
# File lib/ddql/token_type.rb, line 337
def infix?
  true
end