Module: RainforestRubyRuntime::Variables
- Defined in:
- lib/rainforest_ruby_runtime/variables/scope.rb,
lib/rainforest_ruby_runtime/variables/value.rb,
lib/rainforest_ruby_runtime/variables/registry.rb
Defined Under Namespace
Classes: Registry, Scope, StaticVariableRegistry, Value
Class Method Summary
collapse
Class Method Details
.scope_registry ⇒ Object
50
51
52
|
# File 'lib/rainforest_ruby_runtime/variables/registry.rb', line 50
def self.scope_registry
@scope_registry ||= Registry.new
end
|
.scope_registry=(registry) ⇒ Object
54
55
56
|
# File 'lib/rainforest_ruby_runtime/variables/registry.rb', line 54
def self.scope_registry=(registry)
@scope_registry = registry
end
|