class DDQL::TokenType::PrefixOperator

Public Class Methods

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

Public Instance Methods

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