Class: Parser::Source::Map::ObjcKwarg
Instance Attribute Summary collapse
#expression, #node
Instance Method Summary
collapse
#==, #column, #initialize_copy, #last_column, #last_line, #line, #to_hash, #with_expression
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
9
10
11
|
# File 'lib/parser/source/map/objc_kwarg.rb', line 9
def argument
@argument
end
|
#keyword ⇒ Object
7
8
9
|
# File 'lib/parser/source/map/objc_kwarg.rb', line 7
def keyword
@keyword
end
|
#operator ⇒ Object
8
9
10
|
# File 'lib/parser/source/map/objc_kwarg.rb', line 8
def operator
@operator
end
|