Class: Parser::Source::Map::ObjcKwarg
- Inherits:
-
Map
- Object
- Map
- Parser::Source::Map::ObjcKwarg
- Defined in:
- lib/parser/source/map/objc_kwarg.rb
Instance Attribute Summary collapse
- #argument ⇒ Object readonly
- #keyword ⇒ Object readonly
- #operator ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(keyword_l, operator_l, argument_l, expression_l) ⇒ ObjcKwarg
constructor
A new instance of ObjcKwarg.
Constructor Details
#initialize(keyword_l, operator_l, argument_l, expression_l) ⇒ ObjcKwarg
Returns a new instance of ObjcKwarg.
11 12 13 14 15 |
# File 'lib/parser/source/map/objc_kwarg.rb', line 11 def initialize(keyword_l, operator_l, argument_l, expression_l) @keyword, @operator, @argument = keyword_l, operator_l, argument_l super(expression_l) end |
Instance Attribute Details
#argument ⇒ Object (readonly)
9 10 11 |
# File 'lib/parser/source/map/objc_kwarg.rb', line 9 def argument @argument end |
#keyword ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/objc_kwarg.rb', line 7 def keyword @keyword end |
#operator ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/objc_kwarg.rb', line 8 def operator @operator end |