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 32 def initialize(file, line, pos = nil) 33 @file = file 34 @line = line 35 @pos = pos 36 end
Public Instance Methods
message()
click to toggle source
# File lib/puppet/pops/evaluator/closure.rb 38 def message 39 "break() from context where this is illegal" 40 end