class Apricot::Scope
Attributes
loop_label[RW]
The loop label stores the code location where a (recur) form should jump to.
parent[R]
variables[R]
Public Class Methods
new(parent)
click to toggle source
# File lib/apricot/scopes.rb, line 52 def initialize(parent) @parent = parent @variables = {} @loop_label = nil end