Exception: Rouge::Lexer::AmbiguousGuess
- Inherits:
-
StandardError
- Object
- StandardError
- Rouge::Lexer::AmbiguousGuess
- Defined in:
- lib/rouge/lexer.rb
Instance Attribute Summary collapse
-
#alternatives ⇒ Object
readonly
Returns the value of attribute alternatives.
Instance Method Summary collapse
-
#initialize(alternatives) ⇒ AmbiguousGuess
constructor
A new instance of AmbiguousGuess.
- #message ⇒ Object
Constructor Details
#initialize(alternatives) ⇒ AmbiguousGuess
Returns a new instance of AmbiguousGuess.
127 |
# File 'lib/rouge/lexer.rb', line 127 def initialize(alternatives); @alternatives = alternatives; end |
Instance Attribute Details
#alternatives ⇒ Object (readonly)
Returns the value of attribute alternatives.
126 127 128 |
# File 'lib/rouge/lexer.rb', line 126 def alternatives @alternatives end |
Instance Method Details
#message ⇒ Object
129 130 131 |
# File 'lib/rouge/lexer.rb', line 129 def "Ambiguous guess: can't decide between #{alternatives.map(&:tag).inspect}" end |