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.

26 lines
417 B

require_relative "visitable"
module Lox
module Stmt
Block = Struct.new(:stmts) do
include Visitable
end
Expr = Struct.new(:expr) do
include Visitable
end
If = Struct.new(:cond, :then, :else) do
include Visitable
end
Print = Struct.new(:expr) do
include Visitable
end
Var = Struct.new(:name, :initializer) do
include Visitable
end
end
end