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.

25 lines
481 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
2 years ago
catch(:return) {
interpreter.execute_block(@decl.body, env)
}
2 years ago
end
def to_s = "<fn #{@decl.name.lexeme}>"
end
end