Method: FatCore::Evaluator#set_local_vars

Defined in:
lib/fat_core/evaluator.rb

#set_local_vars(vars = {}, bnd) ⇒ Object



28
29
30
31
32
# File 'lib/fat_core/evaluator.rb', line 28

def set_local_vars(vars = {}, bnd)
  vars.each_pair do |name, val|
    bnd.local_variable_set(name, val)
  end
end