Exception: ANTLR3::Error::RewriteEarlyExit
- Inherits:
-
RewriteCardinalityError
- Object
- StandardError
- RewriteCardinalityError
- ANTLR3::Error::RewriteEarlyExit
- Defined in:
- lib/antlr3/error.rb
Overview
- error
-
RewriteEarlyExit
- used by
-
tree-rewriting parsers and tree parsers
- occurs when
-
A tree-rewrite rule requires one or more occurence of a symbol, but none have been seen.
Instance Attribute Summary collapse
-
#element_description ⇒ Object
Returns the value of attribute element_description.
Instance Method Summary collapse
-
#initialize(element_description = nil) ⇒ RewriteEarlyExit
constructor
A new instance of RewriteEarlyExit.
Methods inherited from RewriteCardinalityError
Constructor Details
#initialize(element_description = nil) ⇒ RewriteEarlyExit
Returns a new instance of RewriteEarlyExit.
546 547 548 |
# File 'lib/antlr3/error.rb', line 546 def initialize( element_description = nil ) super( element_description ) end |
Instance Attribute Details
#element_description ⇒ Object
Returns the value of attribute element_description.
545 546 547 |
# File 'lib/antlr3/error.rb', line 545 def element_description @element_description end |