Class: LibRubyParser::Nodes::Kwnilarg
- Inherits:
-
LibRubyParser::Node
- Object
- LibRubyParser::Node
- LibRubyParser::Nodes::Kwnilarg
- Defined in:
- lib/lib-ruby-parser/nodes.rb
Overview
Represents an special argument that rejects all keyword arguments (i.e. def m(**nil); end
)
Instance Attribute Summary collapse
-
#expression_l ⇒ Loc
readonly
Location of the
nil
. -
#name_l ⇒ Loc
readonly
Location of the
nil
.
Instance Attribute Details
#expression_l ⇒ Loc (readonly)
Location of the nil
def m(**nil); end
~~~~~
2355 2356 2357 |
# File 'lib/lib-ruby-parser/nodes.rb', line 2355 def expression_l @expression_l end |
#name_l ⇒ Loc (readonly)
Location of the nil
def m(**nil); end
~~~
2346 2347 2348 |
# File 'lib/lib-ruby-parser/nodes.rb', line 2346 def name_l @name_l end |