You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
458 B
24 lines
458 B
2 years ago
|
require_relative "environment"
|
||
|
|
||
|
module Lox
|
||
|
class Function
|
||
|
def initialize(decl)
|
||
|
@decl = decl
|
||
|
end
|
||
|
|
||
|
def arity = @decl.params.size
|
||
|
|
||
|
def call(interpreter, args)
|
||
|
env = Environment.new(interpreter.globals)
|
||
|
@decl.params.map(&:lexeme).zip(args).each do |name, value|
|
||
|
env.define(name, value)
|
||
|
end
|
||
|
|
||
|
interpreter.execute_block(@decl.body, env)
|
||
|
nil
|
||
|
end
|
||
|
|
||
|
def to_s = "<fn #{@decl.name.lexeme}>"
|
||
|
end
|
||
|
end
|