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.
121 |
# File 'lib/rouge/lexer.rb', line 121 def initialize(alternatives); @alternatives = alternatives; end |
Instance Attribute Details
#alternatives ⇒ Object (readonly)
Returns the value of attribute alternatives.
120 121 122 |
# File 'lib/rouge/lexer.rb', line 120 def alternatives @alternatives end |
Instance Method Details
#message ⇒ Object
123 124 125 |
# File 'lib/rouge/lexer.rb', line 123 def "Ambiguous guess: can't decide between #{alternatives.map(&:tag).inspect}" end |