Concrete-Syntax-Tree
Concrete-Syntax-Tree copied to clipboard
Concrete Syntax Trees represent s-expressions with source information
This enhancement consists of writing a generic function named CANONICALIZE-DECLARATION-SPECIFIER. It should take four parameters: * SYSTEM. An object representing the Common Lisp system. * DECLARATION-IDENTIFIER. A symbol that identifies...
Provide unit tests that verify that the condition EXPRESSION-CST-REQUIRED is signaled when RAW is called on some object other than an EXPRESSION-CST. Provide unit tests that verify that the condition...
Would this library be suitable for inferring variable types, for example, can I use it to determine the type of `a` in: ```lisp (let ((a 5)) a) ; I'd expect...