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
361 362 363 |
# File 'lib/ast/merge.rb', line 361 def diagnostics @diagnostics end |
#inconsistency_report ⇒ Object
Returns the value of attribute inconsistency_report
361 362 363 |
# File 'lib/ast/merge.rb', line 361 def inconsistency_report @inconsistency_report end |
#merge_engine ⇒ Object
Returns the value of attribute merge_engine
361 362 363 |
# File 'lib/ast/merge.rb', line 361 def merge_engine @merge_engine end |
#outcome ⇒ Object
Returns the value of attribute outcome
361 362 363 |
# File 'lib/ast/merge.rb', line 361 def outcome @outcome end |
#raw_merge ⇒ Object
Returns the value of attribute raw_merge
361 362 363 |
# File 'lib/ast/merge.rb', line 361 def raw_merge @raw_merge end |
Instance Method Details
#to_h ⇒ Object
363 364 365 366 367 368 369 370 371 |
# File 'lib/ast/merge.rb', line 363 def to_h { merge_engine: merge_engine, raw_merge: raw_merge.to_h, inconsistency_report: inconsistency_report.to_h, outcome: outcome, diagnostics: diagnostics || [] } end |