Class: Prism::OptionalKeywordParameterNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::OptionalKeywordParameterNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents an optional keyword parameter to a method, block, or lambda definition.
def a(b: 1)
^^^^
end
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
attr_reader name: Symbol.
-
#value ⇒ Object
readonly
attr_reader value: 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, name: self.name, name_loc: self.name_loc, value: self.value) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?value: Prism::node) -> OptionalKeywordParameterNode.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, value: Prism::node }.
-
#initialize(source, node_id, location, flags, name, name_loc, value) ⇒ OptionalKeywordParameterNode
constructor
Initialize a new OptionalKeywordParameterNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#name_loc ⇒ Object
attr_reader name_loc: Location.
-
#repeated_parameter? ⇒ Boolean
def repeated_parameter?: () -> bool.
-
#save_name_loc(repository) ⇒ Object
Save the name_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, name, name_loc, value) ⇒ OptionalKeywordParameterNode
Initialize a new OptionalKeywordParameterNode node.
13969 13970 13971 13972 13973 13974 13975 13976 13977 |
# File 'lib/prism/node.rb', line 13969 def initialize(source, node_id, location, flags, name, name_loc, value) @source = source @node_id = node_id @location = location @flags = flags @name = name @name_loc = name_loc @value = value end |
Instance Attribute Details
#name ⇒ Object (readonly)
attr_reader name: Symbol
14018 14019 14020 |
# File 'lib/prism/node.rb', line 14018 def name @name end |
#value ⇒ Object (readonly)
attr_reader value: Prism::node
14034 14035 14036 |
# File 'lib/prism/node.rb', line 14034 def value @value end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
14047 14048 14049 |
# File 'lib/prism/node.rb', line 14047 def self.type :optional_keyword_parameter_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.
14053 14054 14055 14056 14057 14058 14059 |
# File 'lib/prism/node.rb', line 14053 def ===(other) other.is_a?(OptionalKeywordParameterNode) && (flags === other.flags) && (name === other.name) && (name_loc.nil? == other.name_loc.nil?) && (value === other.value) end |
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void
13980 13981 13982 |
# File 'lib/prism/node.rb', line 13980 def accept(visitor) visitor.visit_optional_keyword_parameter_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
13985 13986 13987 |
# File 'lib/prism/node.rb', line 13985 def child_nodes [value] end |
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location]
13995 13996 13997 |
# File 'lib/prism/node.rb', line 13995 def comment_targets [name_loc, value] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
13990 13991 13992 |
# File 'lib/prism/node.rb', line 13990 def compact_child_nodes [value] end |
#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, value: self.value) ⇒ Object
def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?value: Prism::node) -> OptionalKeywordParameterNode
14000 14001 14002 |
# File 'lib/prism/node.rb', line 14000 def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, value: self.value) OptionalKeywordParameterNode.new(source, node_id, location, flags, name, name_loc, value) end |
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, value: Prism::node }
14008 14009 14010 |
# File 'lib/prism/node.rb', line 14008 def deconstruct_keys(keys) { node_id: node_id, location: location, name: name, name_loc: name_loc, value: value } end |
#inspect ⇒ Object
def inspect -> String
14037 14038 14039 |
# File 'lib/prism/node.rb', line 14037 def inspect InspectVisitor.compose(self) end |
#name_loc ⇒ Object
attr_reader name_loc: Location
14021 14022 14023 14024 14025 |
# File 'lib/prism/node.rb', line 14021 def name_loc location = @name_loc return location if location.is_a?(Location) @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#repeated_parameter? ⇒ Boolean
def repeated_parameter?: () -> bool
14013 14014 14015 |
# File 'lib/prism/node.rb', line 14013 def repeated_parameter? flags.anybits?(ParameterFlags::REPEATED_PARAMETER) end |
#save_name_loc(repository) ⇒ Object
Save the name_loc location using the given saved source so that it can be retrieved later.
14029 14030 14031 |
# File 'lib/prism/node.rb', line 14029 def save_name_loc(repository) repository.enter(node_id, :name_loc) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
14042 14043 14044 |
# File 'lib/prism/node.rb', line 14042 def type :optional_keyword_parameter_node end |