Class: Parser::Source::Map::ObjcKwarg

Inherits:
Parser::Source::Map show all
Defined in:
lib/parser/source/map/objc_kwarg.rb

Instance Attribute Summary collapse

Attributes inherited from Parser::Source::Map

#expression, #node

Instance Method Summary collapse

Methods inherited from Parser::Source::Map

#==, #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

#argumentObject (readonly)



9
10
11
# File 'lib/parser/source/map/objc_kwarg.rb', line 9

def argument
  @argument
end

#keywordObject (readonly)



7
8
9
# File 'lib/parser/source/map/objc_kwarg.rb', line 7

def keyword
  @keyword
end

#operatorObject (readonly)



8
9
10
# File 'lib/parser/source/map/objc_kwarg.rb', line 8

def operator
  @operator
end