lean4-htt/src/tests/frontends/lean
Leonardo de Moura ae01d3818d fix(frontends/lean/parser): parse_type method
The parser had a nasty ambiguity. For example,
    f Type 1
had two possible interpretations
    (f (Type) (1))
or
    (f (Type 1))

To fix this issue, whenever we want to specify a particular universe, we have to precede 'Type' with a parenthesis.
Examples:
    (Type 1)
    (Type U)
    (Type M + 1)

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-12-19 15:24:34 -08:00
..
CMakeLists.txt refactor(tests/frontends/lean/implicit_args): remove implicit_args unit tests from frontends/lean, all tests were moved to tests/library/elaborator 2013-10-22 16:42:07 -07:00
frontend.cpp refactor(frontends/lean): remove frontend class, it is not needed anymore 2013-12-18 14:37:55 -08:00
parser.cpp fix(frontends/lean/parser): parse_type method 2013-12-19 15:24:34 -08:00
pp.cpp refactor(frontends/lean): remove frontend class, it is not needed anymore 2013-12-18 14:37:55 -08:00
scanner.cpp feat(util): add primitives for checking the amount of available stack space 2013-12-01 17:19:27 -08:00