Method: Puppet::Pops::Model::ReservedWord#initialize
- Defined in:
- lib/puppet/pops/model/ast.rb
#initialize(locator, offset, length, word, future = nil) ⇒ ReservedWord
Returns a new instance of ReservedWord.
3726 3727 3728 3729 3730 3731 |
# File 'lib/puppet/pops/model/ast.rb', line 3726 def initialize(locator, offset, length, word, future = nil) super(locator, offset, length) @hash = @hash ^ word.hash ^ future.hash @word = word @future = future end |