class Puppet::Pops::Evaluator::PuppetStopIteration
Attributes
file[R]
line[R]
pos[R]
Public Class Methods
new(file, line, pos = nil)
click to toggle source
# File lib/puppet/pops/evaluator/closure.rb 31 def initialize(file, line, pos = nil) 32 @file = file 33 @line = line 34 @pos = pos 35 end
Public Instance Methods
message()
click to toggle source
# File lib/puppet/pops/evaluator/closure.rb 37 def message 38 "break() from context where this is illegal" 39 end