Class: Bijou::Parse::Diagnostics
- Inherits:
-
Object
- Object
- Bijou::Parse::Diagnostics
- Defined in:
- lib/bijou/diagnostics.rb
Instance Attribute Summary collapse
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#messages ⇒ Object
readonly
Returns the value of attribute messages.
-
#warnings ⇒ Object
readonly
Returns the value of attribute warnings.
Instance Method Summary collapse
- #add_error(msg) ⇒ Object
- #add_message(msg) ⇒ Object
- #add_warning(msg) ⇒ Object
-
#initialize ⇒ Diagnostics
constructor
A new instance of Diagnostics.
- #text ⇒ Object
Constructor Details
#initialize ⇒ Diagnostics
Returns a new instance of Diagnostics.
54 55 56 57 58 59 60 |
# File 'lib/bijou/diagnostics.rb', line 54 def initialize @log = [] @messages = [] @messages = [] @warnings = [] @errors = [] end |
Instance Attribute Details
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
62 63 64 |
# File 'lib/bijou/diagnostics.rb', line 62 def errors @errors end |
#messages ⇒ Object (readonly)
Returns the value of attribute messages.
62 63 64 |
# File 'lib/bijou/diagnostics.rb', line 62 def @messages end |
#warnings ⇒ Object (readonly)
Returns the value of attribute warnings.
62 63 64 |
# File 'lib/bijou/diagnostics.rb', line 62 def warnings @warnings end |
Instance Method Details
#add_error(msg) ⇒ Object
74 75 76 77 |
# File 'lib/bijou/diagnostics.rb', line 74 def add_error(msg) @errors.push(msg) @log.push(msg) end |
#add_message(msg) ⇒ Object
64 65 66 67 |
# File 'lib/bijou/diagnostics.rb', line 64 def (msg) @messages.push(msg) @log.push(msg) end |
#add_warning(msg) ⇒ Object
69 70 71 72 |
# File 'lib/bijou/diagnostics.rb', line 69 def add_warning(msg) @warnings.push(msg) @log.push(msg) end |
#text ⇒ Object
79 80 81 82 83 84 85 86 |
# File 'lib/bijou/diagnostics.rb', line 79 def text result = '' @log.each { |s| result << s.text result << "\n" } result end |