Type-checking for GeomLab.
Supervisor
Suitable for
Abstract
The GeomLab language is untyped, leading to errors when expressions are evaluated that would be better caught at an earlier
stage. Most GeomLab programs, however, follow relatively simple typing rules. The aim in this project is to write a polymorphic
type checker for GeomLab and integrate it into the GeomLab system, which is implemented in Java. A simple implementation
of the type-checker would wait until an expression is about to be evaluated, and type-check the whole program at that point.
As an extension of the project, you could investigate whether it is possible to type-check function definitions one at a time,
even when some of the functions they call have not yet been defined.