Class: Prism::DefNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents a method definition.

def method
end
^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, name, name_loc, receiver, parameters, body, locals, def_keyword_loc, operator_loc, lparen_loc, rparen_loc, equal_loc, end_keyword_loc) ⇒ DefNode

Initialize a new DefNode node.



5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
# File 'lib/prism/node.rb', line 5888

def initialize(source, node_id, location, flags, name, name_loc, receiver, parameters, body, locals, def_keyword_loc, operator_loc, lparen_loc, rparen_loc, equal_loc, end_keyword_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @name = name
  @name_loc = name_loc
  @receiver = receiver
  @parameters = parameters
  @body = body
  @locals = locals
  @def_keyword_loc = def_keyword_loc
  @operator_loc = operator_loc
  @lparen_loc = lparen_loc
  @rparen_loc = rparen_loc
  @equal_loc = equal_loc
  @end_keyword_loc = end_keyword_loc
end

Instance Attribute Details

#bodyObject (readonly)

attr_reader body: StatementsNode | BeginNode | nil



5967
5968
5969
# File 'lib/prism/node.rb', line 5967

def body
  @body
end

#localsObject (readonly)

attr_reader locals: Array



5970
5971
5972
# File 'lib/prism/node.rb', line 5970

def locals
  @locals
end

#nameObject (readonly)

attr_reader name: Symbol



5945
5946
5947
# File 'lib/prism/node.rb', line 5945

def name
  @name
end

#parametersObject (readonly)

attr_reader parameters: ParametersNode?



5964
5965
5966
# File 'lib/prism/node.rb', line 5964

def parameters
  @parameters
end

#receiverObject (readonly)

attr_reader receiver: Prism::node?



5961
5962
5963
# File 'lib/prism/node.rb', line 5961

def receiver
  @receiver
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



6121
6122
6123
# File 'lib/prism/node.rb', line 6121

def self.type
  :def_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.



6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
# File 'lib/prism/node.rb', line 6127

def ===(other)
  other.is_a?(DefNode) &&
    (name === other.name) &&
    (name_loc.nil? == other.name_loc.nil?) &&
    (receiver === other.receiver) &&
    (parameters === other.parameters) &&
    (body === other.body) &&
    (locals.length == other.locals.length) &&
    locals.zip(other.locals).all? { |left, right| left === right } &&
    (def_keyword_loc.nil? == other.def_keyword_loc.nil?) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (lparen_loc.nil? == other.lparen_loc.nil?) &&
    (rparen_loc.nil? == other.rparen_loc.nil?) &&
    (equal_loc.nil? == other.equal_loc.nil?) &&
    (end_keyword_loc.nil? == other.end_keyword_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



5908
5909
5910
# File 'lib/prism/node.rb', line 5908

def accept(visitor)
  visitor.visit_def_node(self)
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



5913
5914
5915
# File 'lib/prism/node.rb', line 5913

def child_nodes
  [receiver, parameters, body]
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



5927
5928
5929
# File 'lib/prism/node.rb', line 5927

def comment_targets
  [name_loc, *receiver, *parameters, *body, def_keyword_loc, *operator_loc, *lparen_loc, *rparen_loc, *equal_loc, *end_keyword_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



5918
5919
5920
5921
5922
5923
5924
# File 'lib/prism/node.rb', line 5918

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << receiver if receiver
  compact << parameters if parameters
  compact << body if body
  compact
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, receiver: self.receiver, parameters: self.parameters, body: self.body, locals: self.locals, def_keyword_loc: self.def_keyword_loc, operator_loc: self.operator_loc, lparen_loc: self.lparen_loc, rparen_loc: self.rparen_loc, equal_loc: self.equal_loc, end_keyword_loc: self.end_keyword_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?name: Symbol, ?name_loc: Location, ?receiver: Prism::node?, ?parameters: ParametersNode?, ?body: StatementsNode | BeginNode | nil, ?locals: Array, ?def_keyword_loc: Location, ?operator_loc: Location?, ?lparen_loc: Location?, ?rparen_loc: Location?, ?equal_loc: Location?, ?end_keyword_loc: Location?) -> DefNode



5932
5933
5934
# File 'lib/prism/node.rb', line 5932

def copy(node_id: self.node_id, location: self.location, flags: self.flags, name: self.name, name_loc: self.name_loc, receiver: self.receiver, parameters: self.parameters, body: self.body, locals: self.locals, def_keyword_loc: self.def_keyword_loc, operator_loc: self.operator_loc, lparen_loc: self.lparen_loc, rparen_loc: self.rparen_loc, equal_loc: self.equal_loc, end_keyword_loc: self.end_keyword_loc)
  DefNode.new(source, node_id, location, flags, name, name_loc, receiver, parameters, body, locals, def_keyword_loc, operator_loc, lparen_loc, rparen_loc, equal_loc, end_keyword_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, name: Symbol, name_loc: Location, receiver: Prism::node?, parameters: ParametersNode?, body: StatementsNode | BeginNode | nil, locals: Array, def_keyword_loc: Location, operator_loc: Location?, lparen_loc: Location?, rparen_loc: Location?, equal_loc: Location?, end_keyword_loc: Location? }



5940
5941
5942
# File 'lib/prism/node.rb', line 5940

def deconstruct_keys(keys)
  { node_id: node_id, location: location, name: name, name_loc: name_loc, receiver: receiver, parameters: parameters, body: body, locals: locals, def_keyword_loc: def_keyword_loc, operator_loc: operator_loc, lparen_loc: lparen_loc, rparen_loc: rparen_loc, equal_loc: equal_loc, end_keyword_loc: end_keyword_loc }
end

#def_keywordObject

def def_keyword: () -> String



6081
6082
6083
# File 'lib/prism/node.rb', line 6081

def def_keyword
  def_keyword_loc.slice
end

#def_keyword_locObject

attr_reader def_keyword_loc: Location



5973
5974
5975
5976
5977
# File 'lib/prism/node.rb', line 5973

def def_keyword_loc
  location = @def_keyword_loc
  return location if location.is_a?(Location)
  @def_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#end_keywordObject

def end_keyword: () -> String?



6106
6107
6108
# File 'lib/prism/node.rb', line 6106

def end_keyword
  end_keyword_loc&.slice
end

#end_keyword_locObject

attr_reader end_keyword_loc: Location?



6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
# File 'lib/prism/node.rb', line 6062

def end_keyword_loc
  location = @end_keyword_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @end_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#equalObject

def equal: () -> String?



6101
6102
6103
# File 'lib/prism/node.rb', line 6101

def equal
  equal_loc&.slice
end

#equal_locObject

attr_reader equal_loc: Location?



6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
# File 'lib/prism/node.rb', line 6043

def equal_loc
  location = @equal_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @equal_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#inspectObject

def inspect -> String



6111
6112
6113
# File 'lib/prism/node.rb', line 6111

def inspect
  InspectVisitor.compose(self)
end

#lparenObject

def lparen: () -> String?



6091
6092
6093
# File 'lib/prism/node.rb', line 6091

def lparen
  lparen_loc&.slice
end

#lparen_locObject

attr_reader lparen_loc: Location?



6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
# File 'lib/prism/node.rb', line 6005

def lparen_loc
  location = @lparen_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @lparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#name_locObject

attr_reader name_loc: Location



5948
5949
5950
5951
5952
# File 'lib/prism/node.rb', line 5948

def name_loc
  location = @name_loc
  return location if location.is_a?(Location)
  @name_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#operatorObject

def operator: () -> String?



6086
6087
6088
# File 'lib/prism/node.rb', line 6086

def operator
  operator_loc&.slice
end

#operator_locObject

attr_reader operator_loc: Location?



5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
# File 'lib/prism/node.rb', line 5986

def operator_loc
  location = @operator_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#rparenObject

def rparen: () -> String?



6096
6097
6098
# File 'lib/prism/node.rb', line 6096

def rparen
  rparen_loc&.slice
end

#rparen_locObject

attr_reader rparen_loc: Location?



6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
# File 'lib/prism/node.rb', line 6024

def rparen_loc
  location = @rparen_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @rparen_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#save_def_keyword_loc(repository) ⇒ Object

Save the def_keyword_loc location using the given saved source so that it can be retrieved later.



5981
5982
5983
# File 'lib/prism/node.rb', line 5981

def save_def_keyword_loc(repository)
  repository.enter(node_id, :def_keyword_loc)
end

#save_end_keyword_loc(repository) ⇒ Object

Save the end_keyword_loc location using the given saved source so that it can be retrieved later.



6076
6077
6078
# File 'lib/prism/node.rb', line 6076

def save_end_keyword_loc(repository)
  repository.enter(node_id, :end_keyword_loc) unless @end_keyword_loc.nil?
end

#save_equal_loc(repository) ⇒ Object

Save the equal_loc location using the given saved source so that it can be retrieved later.



6057
6058
6059
# File 'lib/prism/node.rb', line 6057

def save_equal_loc(repository)
  repository.enter(node_id, :equal_loc) unless @equal_loc.nil?
end

#save_lparen_loc(repository) ⇒ Object

Save the lparen_loc location using the given saved source so that it can be retrieved later.



6019
6020
6021
# File 'lib/prism/node.rb', line 6019

def save_lparen_loc(repository)
  repository.enter(node_id, :lparen_loc) unless @lparen_loc.nil?
end

#save_name_loc(repository) ⇒ Object

Save the name_loc location using the given saved source so that it can be retrieved later.



5956
5957
5958
# File 'lib/prism/node.rb', line 5956

def save_name_loc(repository)
  repository.enter(node_id, :name_loc)
end

#save_operator_loc(repository) ⇒ Object

Save the operator_loc location using the given saved source so that it can be retrieved later.



6000
6001
6002
# File 'lib/prism/node.rb', line 6000

def save_operator_loc(repository)
  repository.enter(node_id, :operator_loc) unless @operator_loc.nil?
end

#save_rparen_loc(repository) ⇒ Object

Save the rparen_loc location using the given saved source so that it can be retrieved later.



6038
6039
6040
# File 'lib/prism/node.rb', line 6038

def save_rparen_loc(repository)
  repository.enter(node_id, :rparen_loc) unless @rparen_loc.nil?
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



6116
6117
6118
# File 'lib/prism/node.rb', line 6116

def type
  :def_node
end