lean2/tests/lua/parser2.lua
2013-12-22 11:51:38 -08:00

26 lines
725 B
Lua

local env = environment()
parse_lean_cmds([[
Variable N : Type
Variables x y : N
Variable f : N -> N -> N
SetOption pp::colors false
]], env)
local f, x, y = Consts("f, x, y")
print(env:type_check(f(x, y)))
assert(env:type_check(f(x, y)) == Const("N"))
assert(not get_options():get{"pp", "colors"})
parse_lean_cmds([[
SetOption pp::colors true
]], env)
assert(get_options():get{"pp", "colors"})
local o = get_options()
o:update({"lean", "pp", "notation"}, false)
assert(not o:get{"lean", "pp", "notation"})
o = parse_lean_cmds([[
Check fun x : N, y
SetOption pp::notation true
Check fun x : N, y
]], env, o)
print(o)
assert(o:get{"lean", "pp", "notation"})
assert(parse_lean("f x y", env) == f(x, y))