Class: BibTeX::Error
Overview
Represents a lexical or syntactical error.
Instance Attribute Summary collapse
-
#trace ⇒ Object
Returns the value of attribute trace.
Attributes inherited from Element
Instance Method Summary collapse
-
#added_to_bibliography(bibliography) ⇒ Object
Called when the element was added to a bibliography.
- #content ⇒ Object
-
#initialize(trace = []) ⇒ Error
constructor
A new instance of Error.
-
#removed_from_bibliography(bibliography) ⇒ Object
Called when the element was removed from a bibliography.
Methods inherited from Element
#<=>, #has_type?, #join, #matches?, #meets?, parse, #replace, #to_hash, #to_json, #to_xml, #to_yaml, #type
Constructor Details
#initialize(trace = []) ⇒ Error
Returns a new instance of Error.
12 13 14 |
# File 'lib/bibtex/error.rb', line 12 def initialize(trace=[]) @trace = trace end |
Instance Attribute Details
#trace ⇒ Object
Returns the value of attribute trace.
10 11 12 |
# File 'lib/bibtex/error.rb', line 10 def trace @trace end |
Instance Method Details
#added_to_bibliography(bibliography) ⇒ Object
Called when the element was added to a bibliography.
26 27 28 29 30 |
# File 'lib/bibtex/error.rb', line 26 def added_to_bibliography(bibliography) super(bibliography) bibliography.errors << self self end |
#content ⇒ Object
21 22 23 |
# File 'lib/bibtex/error.rb', line 21 def content @trace.map { |e| e[1] }.join end |
#removed_from_bibliography(bibliography) ⇒ Object
Called when the element was removed from a bibliography.
33 34 35 36 37 |
# File 'lib/bibtex/error.rb', line 33 def removed_from_bibliography(bibliography) super(bibliography) bibliography.errors.delete(self) self end |