Method: Prism::BlockArgumentNode#operator_loc
- Defined in:
- lib/prism/node.rb
#operator_loc ⇒ Object
attr_reader operator_loc: Location
1496 1497 1498 1499 1500 |
# File 'lib/prism/node.rb', line 1496 def operator_loc location = @operator_loc return location if location.is_a?(Location) @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |