class Parser::Source::Map::Definition

Attributes

end[R]
keyword[R]
name[R]
operator[R]

Public Class Methods

new(keyword_l, operator_l, name_l, end_l) click to toggle source
Calls superclass method Parser::Source::Map::new
# File lib/parser/source/map/definition.rb, line 10
def initialize(keyword_l, operator_l, name_l, end_l)
  @keyword  = keyword_l
  @operator = operator_l
  @name     = name_l
  @end      = end_l

  super(@keyword.join(@end))
end