Sha256: 6d76cf6ccf0f257840a2b5c94c6a634f583e2c5d72b35bf06723aa8e3aa3ccec
Contents?: true
Size: 652 Bytes
Versions: 3
Compression:
Stored size: 652 Bytes
Contents
# encoding: utf-8 module Antelope module Ace class Token # Defines an error token. This may be used internally by the # parser when it enters panic mode; any tokens following this # are the synchronisation tokens. This is considered a terminal # for the purposes of rule definitions. class Error < Terminal # Initialize the error token. Technically takes no arguments. # Sets the name to be `:$error`. def initialize(*) super :$error end # (see Token#error?) def error? true end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
antelope-0.2.4 | lib/antelope/ace/token/error.rb |
antelope-0.2.3 | lib/antelope/ace/token/error.rb |
antelope-0.2.2 | lib/antelope/ace/token/error.rb |