Class: Prism::FlipFlopNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::FlipFlopNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents the use of the .. or ... operators to create flip flops.
baz if foo ..
^^^^^^^^^^
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
attr_reader left: Prism::node?.
-
#right ⇒ Object
readonly
attr_reader right: Prism::node?.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#copy(node_id: self.node_id, location: self.location, flags: self.flags, left: self.left, right: self.right, operator_loc: self.operator_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?left: Prism::node?, ?right: Prism::node?, ?operator_loc: Location) -> FlipFlopNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, left: Prism::node?, right: Prism::node?, operator_loc: Location }.
-
#each_child_node {|left| ... } ⇒ Object
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator.
-
#exclude_end? ⇒ Boolean
def exclude_end?: () -> bool.
-
#initialize(source, node_id, location, flags, left, right, operator_loc) ⇒ FlipFlopNode
constructor
Initialize a new FlipFlopNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#operator ⇒ Object
def operator: () -> String.
-
#operator_loc ⇒ Object
attr_reader operator_loc: Location.
-
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
Constructor Details
#initialize(source, node_id, location, flags, left, right, operator_loc) ⇒ FlipFlopNode
Initialize a new FlipFlopNode node.
7467 7468 7469 7470 7471 7472 7473 7474 7475 |
# File 'lib/prism/node.rb', line 7467 def initialize(source, node_id, location, flags, left, right, operator_loc) @source = source @node_id = node_id @location = location @flags = flags @left = left @right = right @operator_loc = operator_loc end |
Instance Attribute Details
#left ⇒ Object (readonly)
attr_reader left: Prism::node?
7527 7528 7529 |
# File 'lib/prism/node.rb', line 7527 def left @left end |
#right ⇒ Object (readonly)
attr_reader right: Prism::node?
7530 7531 7532 |
# File 'lib/prism/node.rb', line 7530 def right @right end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See Node::type.
7561 7562 7563 |
# File 'lib/prism/node.rb', line 7561 def self.type :flip_flop_node end |
Instance Method Details
#===(other) ⇒ Object
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
7567 7568 7569 7570 7571 7572 7573 |
# File 'lib/prism/node.rb', line 7567 def ===(other) other.is_a?(FlipFlopNode) && (flags === other.flags) && (left === other.left) && (right === other.right) && (operator_loc.nil? == other.operator_loc.nil?) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
7478 7479 7480 |
# File 'lib/prism/node.rb', line 7478 def accept(visitor) visitor.visit_flip_flop_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
7483 7484 7485 |
# File 'lib/prism/node.rb', line 7483 def child_nodes [left, right] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
7504 7505 7506 |
# File 'lib/prism/node.rb', line 7504 def comment_targets [*left, *right, operator_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
7496 7497 7498 7499 7500 7501 |
# File 'lib/prism/node.rb', line 7496 def compact_child_nodes compact = [] #: Array[Prism::node] compact << left if left compact << right if right compact end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, left: self.left, right: self.right, operator_loc: self.operator_loc) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?left: Prism::node?, ?right: Prism::node?, ?operator_loc: Location) -> FlipFlopNode
7509 7510 7511 |
# File 'lib/prism/node.rb', line 7509 def copy(node_id: self.node_id, location: self.location, flags: self.flags, left: self.left, right: self.right, operator_loc: self.operator_loc) FlipFlopNode.new(source, node_id, location, flags, left, right, operator_loc) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, left: Prism::node?, right: Prism::node?, operator_loc: Location }
7517 7518 7519 |
# File 'lib/prism/node.rb', line 7517 def deconstruct_keys(keys) { node_id: node_id, location: location, left: left, right: right, operator_loc: operator_loc } end |
#each_child_node {|left| ... } ⇒ Object
def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator
7488 7489 7490 7491 7492 7493 |
# File 'lib/prism/node.rb', line 7488 def each_child_node return to_enum(:each_child_node) unless block_given? yield left if left yield right if right end |
#exclude_end? ⇒ Boolean
def exclude_end?: () -> bool
7522 7523 7524 |
# File 'lib/prism/node.rb', line 7522 def exclude_end? flags.anybits?(RangeFlags::EXCLUDE_END) end |
#inspect ⇒ Object
def inspect -> String
7551 7552 7553 |
# File 'lib/prism/node.rb', line 7551 def inspect InspectVisitor.compose(self) end |
#operator ⇒ Object
def operator: () -> String
7546 7547 7548 |
# File 'lib/prism/node.rb', line 7546 def operator operator_loc.slice end |
#operator_loc ⇒ Object
attr_reader operator_loc: Location
7533 7534 7535 7536 7537 |
# File 'lib/prism/node.rb', line 7533 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#save_operator_loc(repository) ⇒ Object
Save the operator_loc location using the given saved source so that it can be retrieved later.
7541 7542 7543 |
# File 'lib/prism/node.rb', line 7541 def save_operator_loc(repository) repository.enter(node_id, :operator_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
7556 7557 7558 |
# File 'lib/prism/node.rb', line 7556 def type :flip_flop_node end |