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
389 390 391 |
# File 'lib/ast/merge.rb', line 389 def defer @defer end |
#merge_ir_wins ⇒ Object
Returns the value of attribute merge_ir_wins
389 390 391 |
# File 'lib/ast/merge.rb', line 389 def merge_ir_wins @merge_ir_wins end |
#neutral ⇒ Object
Returns the value of attribute neutral
389 390 391 |
# File 'lib/ast/merge.rb', line 389 def neutral @neutral end |
#owner_path_wins ⇒ Object
Returns the value of attribute owner_path_wins
389 390 391 |
# File 'lib/ast/merge.rb', line 389 def owner_path_wins @owner_path_wins end |
#recommendation ⇒ Object
Returns the value of attribute recommendation
389 390 391 |
# File 'lib/ast/merge.rb', line 389 def recommendation @recommendation end |
Instance Method Details
#to_h ⇒ Object
391 392 393 394 395 396 397 398 399 |
# File 'lib/ast/merge.rb', line 391 def to_h { owner_path_wins: owner_path_wins, merge_ir_wins: merge_ir_wins, neutral: neutral, defer: defer, recommendation: recommendation } end |