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