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 .. bar
^^^^^^^^^^
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[nil | Node].
-
#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 }.
-
#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.
6964 6965 6966 6967 6968 6969 6970 6971 6972 |
# File 'lib/prism/node.rb', line 6964 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?
7016 7017 7018 |
# File 'lib/prism/node.rb', line 7016 def left @left end |
#right ⇒ Object (readonly)
attr_reader right: Prism::node?
7019 7020 7021 |
# File 'lib/prism/node.rb', line 7019 def right @right end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
7050 7051 7052 |
# File 'lib/prism/node.rb', line 7050 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.
7056 7057 7058 7059 7060 7061 7062 |
# File 'lib/prism/node.rb', line 7056 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
6975 6976 6977 |
# File 'lib/prism/node.rb', line 6975 def accept(visitor) visitor.visit_flip_flop_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
6980 6981 6982 |
# File 'lib/prism/node.rb', line 6980 def child_nodes [left, right] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
6993 6994 6995 |
# File 'lib/prism/node.rb', line 6993 def comment_targets [*left, *right, operator_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
6985 6986 6987 6988 6989 6990 |
# File 'lib/prism/node.rb', line 6985 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
6998 6999 7000 |
# File 'lib/prism/node.rb', line 6998 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 }
7006 7007 7008 |
# File 'lib/prism/node.rb', line 7006 def deconstruct_keys(keys) { node_id: node_id, location: location, left: left, right: right, operator_loc: operator_loc } end |
#exclude_end? ⇒ Boolean
def exclude_end?: () -> bool
7011 7012 7013 |
# File 'lib/prism/node.rb', line 7011 def exclude_end? flags.anybits?(RangeFlags::EXCLUDE_END) end |
#inspect ⇒ Object
def inspect -> String
7040 7041 7042 |
# File 'lib/prism/node.rb', line 7040 def inspect InspectVisitor.compose(self) end |
#operator ⇒ Object
def operator: () -> String
7035 7036 7037 |
# File 'lib/prism/node.rb', line 7035 def operator operator_loc.slice end |
#operator_loc ⇒ Object
attr_reader operator_loc: Location
7022 7023 7024 7025 7026 |
# File 'lib/prism/node.rb', line 7022 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.
7030 7031 7032 |
# File 'lib/prism/node.rb', line 7030 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`.
7045 7046 7047 |
# File 'lib/prism/node.rb', line 7045 def type :flip_flop_node end |