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
676 677 678 |
# File 'lib/ast/merge.rb', line 676 def confidence @confidence end |
#from_node_id ⇒ Object
Returns the value of attribute from_node_id
676 677 678 |
# File 'lib/ast/merge.rb', line 676 def from_node_id @from_node_id end |
#from_path ⇒ Object
Returns the value of attribute from_path
676 677 678 |
# File 'lib/ast/merge.rb', line 676 def from_path @from_path end |
#rejected_by ⇒ Object
Returns the value of attribute rejected_by
676 677 678 |
# File 'lib/ast/merge.rb', line 676 def rejected_by @rejected_by end |
Instance Method Details
#to_h ⇒ Object
677 678 679 680 681 682 683 684 |
# File 'lib/ast/merge.rb', line 677 def to_h { from_path: from_path, from_node_id: from_node_id, confidence: confidence, rejected_by: rejected_by } end |