mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
29 lines
No EOL
893 B
Ruby
29 lines
No EOL
893 B
Ruby
module CoffeeScript
|
|
|
|
# Racc will raise this Exception whenever a syntax error occurs. The main
|
|
# benefit over the Racc::ParseError is that the CoffeeScript::ParseError is
|
|
# line-number aware.
|
|
class ParseError < Racc::ParseError
|
|
|
|
TOKEN_MAP = {
|
|
'INDENT' => 'indent',
|
|
'OUTDENT' => 'outdent',
|
|
"\n" => 'newline'
|
|
}
|
|
|
|
def initialize(token_id, value, stack=nil, message=nil)
|
|
@token_id, @value, @stack, @message = token_id, value, stack, message
|
|
end
|
|
|
|
def message
|
|
line = @value.respond_to?(:line) ? @value.line : "END"
|
|
line_part = "line #{line}:"
|
|
id_part = @token_id != @value.to_s ? " unexpected #{@token_id.to_s.downcase}" : ""
|
|
val_part = @message || "for #{TOKEN_MAP[@value.to_s] || "'#{@value}'"}"
|
|
"#{line_part} syntax error, #{val_part}#{id_part}"
|
|
end
|
|
alias_method :inspect, :message
|
|
|
|
end
|
|
|
|
end |