Class: Ast::Merge::RejectedTieBreakCandidate
- Inherits:
-
Struct
- Object
- Struct
- Ast::Merge::RejectedTieBreakCandidate
- Defined in:
- lib/ast/merge.rb
Instance Attribute Summary collapse
-
#confidence ⇒ Object
Returns the value of attribute confidence.
-
#from_node_id ⇒ Object
Returns the value of attribute from_node_id.
-
#from_path ⇒ Object
Returns the value of attribute from_path.
-
#rejected_by ⇒ Object
Returns the value of attribute rejected_by.
Instance Method Summary collapse
Instance Attribute Details
#confidence ⇒ Object
Returns the value of attribute confidence
654 655 656 |
# File 'lib/ast/merge.rb', line 654 def confidence @confidence end |
#from_node_id ⇒ Object
Returns the value of attribute from_node_id
654 655 656 |
# File 'lib/ast/merge.rb', line 654 def from_node_id @from_node_id end |
#from_path ⇒ Object
Returns the value of attribute from_path
654 655 656 |
# File 'lib/ast/merge.rb', line 654 def from_path @from_path end |
#rejected_by ⇒ Object
Returns the value of attribute rejected_by
654 655 656 |
# File 'lib/ast/merge.rb', line 654 def rejected_by @rejected_by end |
Instance Method Details
#to_h ⇒ Object
655 656 657 658 659 660 661 662 |
# File 'lib/ast/merge.rb', line 655 def to_h { from_path: from_path, from_node_id: from_node_id, confidence: confidence, rejected_by: rejected_by } end |