A parser for Julia using Tokenize that aims to extend the built-in parser by providing additional meta information along with the resultant AST.
Installation and Usage
using Pkg
Pkg.add("CSTParser")
using CSTParser
CSTParser.parse("x = y + 123")
Documentation:
Structure
CSTParser.EXPR are broadly equivalent to Base.Expr in structure. The key differences are additional fields to store, for each expression:
trivia tokens such as punctuation or keywords that are not stored as part of the AST but are needed for the CST representation;
the span measurements for an expression;
the textual representation of the token (only needed for certain tokens including identifiers (symbols), operators and literals);
the parent expression, if present; and
any other meta information (this field is untyped and is used within CSTParser to hold errors).
All .head values used in Expr are used in EXPR. Unlike in AST, tokens (terminal expressions with no child expressions) are stored as EXPR and additional head types are used to distinguish between different types of token. These possible head values include:
请发表评论