The idea here is to take in an Index and AST, then walk through the AST to generate a kind of TypeMap.
That TypeMap can then be used to get the type of a specific Node in the AST, making it easy to provide autocompletion requests and perform type checks.
Related to #44.
The idea here is to take in an
Index
and AST, then walk through the AST to generate a kind ofTypeMap
.That
TypeMap
can then be used to get the type of a specificNode
in the AST, making it easy to provide autocompletion requests and perform type checks.At least, that's the idea.