Class: Ast::Merge::MergeIREvaluationReport
- Inherits:
-
Struct
- Object
- Struct
- Ast::Merge::MergeIREvaluationReport
- Defined in:
- lib/ast/merge.rb
Instance Attribute Summary collapse
-
#diagnostics ⇒ Object
Returns the value of attribute diagnostics.
-
#inconsistency_report ⇒ Object
Returns the value of attribute inconsistency_report.
-
#merge_engine ⇒ Object
Returns the value of attribute merge_engine.
-
#outcome ⇒ Object
Returns the value of attribute outcome.
-
#raw_merge ⇒ Object
Returns the value of attribute raw_merge.
Instance Method Summary collapse
Instance Attribute Details
#diagnostics ⇒ Object
Returns the value of attribute diagnostics
383 384 385 |
# File 'lib/ast/merge.rb', line 383 def diagnostics @diagnostics end |
#inconsistency_report ⇒ Object
Returns the value of attribute inconsistency_report
383 384 385 |
# File 'lib/ast/merge.rb', line 383 def inconsistency_report @inconsistency_report end |
#merge_engine ⇒ Object
Returns the value of attribute merge_engine
383 384 385 |
# File 'lib/ast/merge.rb', line 383 def merge_engine @merge_engine end |
#outcome ⇒ Object
Returns the value of attribute outcome
383 384 385 |
# File 'lib/ast/merge.rb', line 383 def outcome @outcome end |
#raw_merge ⇒ Object
Returns the value of attribute raw_merge
383 384 385 |
# File 'lib/ast/merge.rb', line 383 def raw_merge @raw_merge end |
Instance Method Details
#to_h ⇒ Object
385 386 387 388 389 390 391 392 393 |
# File 'lib/ast/merge.rb', line 385 def to_h { merge_engine: merge_engine, raw_merge: raw_merge.to_h, inconsistency_report: inconsistency_report.to_h, outcome: outcome, diagnostics: diagnostics || [] } end |