Class: Ast::Merge::MergeIRComparisonSummary
- Inherits:
-
Struct
- Object
- Struct
- Ast::Merge::MergeIRComparisonSummary
- Defined in:
- lib/ast/merge.rb
Instance Attribute Summary collapse
-
#defer ⇒ Object
Returns the value of attribute defer.
-
#merge_ir_wins ⇒ Object
Returns the value of attribute merge_ir_wins.
-
#neutral ⇒ Object
Returns the value of attribute neutral.
-
#owner_path_wins ⇒ Object
Returns the value of attribute owner_path_wins.
-
#recommendation ⇒ Object
Returns the value of attribute recommendation.
Instance Method Summary collapse
Instance Attribute Details
#defer ⇒ Object
Returns the value of attribute defer
411 412 413 |
# File 'lib/ast/merge.rb', line 411 def defer @defer end |
#merge_ir_wins ⇒ Object
Returns the value of attribute merge_ir_wins
411 412 413 |
# File 'lib/ast/merge.rb', line 411 def merge_ir_wins @merge_ir_wins end |
#neutral ⇒ Object
Returns the value of attribute neutral
411 412 413 |
# File 'lib/ast/merge.rb', line 411 def neutral @neutral end |
#owner_path_wins ⇒ Object
Returns the value of attribute owner_path_wins
411 412 413 |
# File 'lib/ast/merge.rb', line 411 def owner_path_wins @owner_path_wins end |
#recommendation ⇒ Object
Returns the value of attribute recommendation
411 412 413 |
# File 'lib/ast/merge.rb', line 411 def recommendation @recommendation end |
Instance Method Details
#to_h ⇒ Object
413 414 415 416 417 418 419 420 421 |
# File 'lib/ast/merge.rb', line 413 def to_h { owner_path_wins: owner_path_wins, merge_ir_wins: merge_ir_wins, neutral: neutral, defer: defer, recommendation: recommendation } end |