class ShuntingYard::UnknownOperatorError

Public Class Methods

new(token) click to toggle source
Calls superclass method
# File lib/shunting_yard/errors.rb, line 23
def initialize(token)
  super "Unknown operator '#{token.lexeme}'"
end