2017-12-22 09:55:46 -06:00
|
|
|
|
- Feature Name: libsyntax2.0
|
2017-12-21 13:37:06 -06:00
|
|
|
|
- Start Date: 2017-12-30
|
2017-12-21 13:28:23 -06:00
|
|
|
|
- RFC PR: (leave this empty)
|
|
|
|
|
- Rust Issue: (leave this empty)
|
|
|
|
|
|
2017-12-21 13:37:06 -06:00
|
|
|
|
|
|
|
|
|
>I think the lack of reusability comes in object-oriented languages,
|
|
|
|
|
>not functional languages. Because the problem with object-oriented
|
|
|
|
|
>languages is they’ve got all this implicit environment that they
|
|
|
|
|
>carry around with them. You wanted a banana but what you got was a
|
|
|
|
|
>gorilla holding the banana and the entire jungle.
|
|
|
|
|
>
|
|
|
|
|
>If you have referentially transparent code, if you have pure
|
|
|
|
|
>functions — all the data comes in its input arguments and everything
|
|
|
|
|
>goes out and leave no state behind — it’s incredibly reusable.
|
|
|
|
|
>
|
|
|
|
|
> **Joe Armstrong**
|
|
|
|
|
|
2017-12-21 13:28:23 -06:00
|
|
|
|
# Summary
|
|
|
|
|
[summary]: #summary
|
|
|
|
|
|
2017-12-21 13:37:06 -06:00
|
|
|
|
The long-term plan is to rewrite libsyntax parser and syntax tree data
|
|
|
|
|
structure to create a software component independent of the rest of
|
|
|
|
|
rustc compiler and suitable for the needs of IDEs and code
|
|
|
|
|
editors. This RFCs is the first step of this plan, whose goal is to
|
|
|
|
|
find out if this is possible at least in theory. If it is possible,
|
|
|
|
|
the next steps would be a prototype implementation as a crates.io
|
|
|
|
|
crate and a separate RFC for integrating the prototype with rustc,
|
|
|
|
|
other tools, and eventual libsyntax removal.
|
|
|
|
|
|
|
|
|
|
Note that this RFC does not propose to stabilize any API for working
|
|
|
|
|
with rust syntax: the semver version of the hypothetical library would
|
2017-12-28 14:55:16 -06:00
|
|
|
|
be `0.1.0`. It is intended to be used by tools, which are currently
|
|
|
|
|
closely related to the compiler: `rustc`, `rustfmt`, `clippy`, `rls`
|
|
|
|
|
and hypothetical `rustfix`. While it would be possible to create
|
|
|
|
|
third-party tools on top of the new libsyntax, the burden of adopting
|
|
|
|
|
to breaking changes would be on authors of such tools.
|
2017-12-21 13:37:06 -06:00
|
|
|
|
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
|
|
|
|
# Motivation
|
|
|
|
|
[motivation]: #motivation
|
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
There are two main drawbacks with the current version of libsyntax:
|
|
|
|
|
|
|
|
|
|
* It is tightly integrated with the compiler and hard to use
|
|
|
|
|
independently
|
|
|
|
|
|
|
|
|
|
* The AST representation is not well-suited for use inside IDEs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## IDE support
|
|
|
|
|
|
|
|
|
|
There are several differences in how IDEs and compilers typically
|
|
|
|
|
treat source code.
|
|
|
|
|
|
|
|
|
|
In the compiler, it is convenient to transform the source
|
|
|
|
|
code into Abstract Syntax Tree form, which is independent of the
|
|
|
|
|
surface syntax. For example, it's convenient to discard comments,
|
|
|
|
|
whitespaces and desugar some syntactic constructs in terms of the
|
|
|
|
|
simpler ones.
|
|
|
|
|
|
|
|
|
|
In contrast, IDEs work much closer to the source code, so it is
|
|
|
|
|
crucial to preserve full information about the original text. For
|
|
|
|
|
example, IDE may adjust indentation after typing a `}` which closes a
|
|
|
|
|
block, and to do this correctly, IDE must be aware of syntax (that is,
|
|
|
|
|
that `}` indeed closes some block, and is not a syntax error) and of
|
|
|
|
|
all whitespaces and comments. So, IDE suitable AST should explicitly
|
|
|
|
|
account for syntactic elements, not considered important by the
|
|
|
|
|
compiler.
|
|
|
|
|
|
|
|
|
|
Another difference is that IDEs typically work with incomplete and
|
|
|
|
|
syntactically invalid code. This boils down to two parser properties.
|
|
|
|
|
First, the parser must produce syntax tree even if some required input
|
|
|
|
|
is missing. For example, for input `fn foo` the function node should
|
|
|
|
|
be present in the parse, despite the fact that there is no parameters
|
|
|
|
|
or body. Second, the parser must be able to skip over parts of input
|
|
|
|
|
it can't recognize and aggressively recover from errors. That is, the
|
|
|
|
|
syntax tree data structure should be able to handle both missing and
|
|
|
|
|
extra nodes.
|
|
|
|
|
|
|
|
|
|
IDEs also need the ability to incrementally reparse and relex source
|
|
|
|
|
code after the user types. A smart IDE would use syntax tree structure
|
|
|
|
|
to handle editing commands (for example, to add/remove trailing commas
|
|
|
|
|
after join/split lines actions), so parsing time can be very
|
|
|
|
|
noticeable.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Currently rustc uses the classical AST approach, and preserves some of
|
|
|
|
|
the source code information in the form of spans in the AST. It is not
|
|
|
|
|
clear if this structure can full fill all IDE requirements.
|
|
|
|
|
|
|
|
|
|
|
2017-12-22 06:31:48 -06:00
|
|
|
|
## Reusability
|
2017-12-21 18:43:39 -06:00
|
|
|
|
|
2017-12-22 10:21:45 -06:00
|
|
|
|
In theory, the parser can be a pure function, which takes a `&str` as
|
|
|
|
|
an input, and produces a `ParseTree` as an output.
|
2017-12-21 18:43:39 -06:00
|
|
|
|
|
|
|
|
|
This is great for reusability: for example, you can compile this
|
|
|
|
|
function to WASM and use it for fast client-side validation of syntax
|
|
|
|
|
on the rust playground, or you can develop tools like `rustfmt` on
|
|
|
|
|
stable Rust outside of rustc repository, or you can embed the parser
|
|
|
|
|
into your favorite IDE or code editor.
|
|
|
|
|
|
|
|
|
|
This is also great for correctness: with such simple interface, it's
|
|
|
|
|
possible to write property-based tests to thoroughly compare two
|
|
|
|
|
different implementations of the parser. It's also straightforward to
|
|
|
|
|
create a comprehensive test suite, because all the inputs and outputs
|
|
|
|
|
are trivially serializable to human-readable text.
|
|
|
|
|
|
|
|
|
|
Another benefit is performance: with this signature, you can cache a
|
|
|
|
|
parse tree for each file, with trivial strategy for cache invalidation
|
|
|
|
|
(invalidate an entry when the underling file changes). On top of such
|
|
|
|
|
a cache it is possible to build a smart code indexer which maintains
|
|
|
|
|
the set of symbols in the project, watches files for changes and
|
|
|
|
|
automatically reindexes only changed files.
|
|
|
|
|
|
|
|
|
|
Unfortunately, the current libsyntax is far from this ideal. For
|
|
|
|
|
example, even the lexer makes use of the `FileMap` which is
|
|
|
|
|
essentially a global state of the compiler which represents all know
|
|
|
|
|
files. As a data point, it turned out to be easier to move `rustfmt`
|
2017-12-22 10:21:45 -06:00
|
|
|
|
into the main `rustc` repository than to move libsyntax outside!
|
2017-12-21 18:43:39 -06:00
|
|
|
|
|
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
# Guide-level explanation
|
|
|
|
|
[guide-level-explanation]: #guide-level-explanation
|
2017-12-21 18:43:39 -06:00
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
Not applicable.
|
2017-12-21 18:43:39 -06:00
|
|
|
|
|
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
# Reference-level explanation
|
|
|
|
|
[reference-level-explanation]: #reference-level-explanation
|
2017-12-21 18:43:39 -06:00
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
It is not clear if a single parser can accommodate the needs of the
|
|
|
|
|
compiler and the IDE, but there is hope that it is possible. The RFC
|
|
|
|
|
proposes to develop libsynax2.0 as an experimental crates.io crate. If
|
|
|
|
|
the experiment turns out to be a success, the second RFC will propose
|
|
|
|
|
to integrate it with all existing tools and `rustc`.
|
2017-12-21 18:43:39 -06:00
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
Next, a syntax tree data structure is proposed for libsyntax2.0. It
|
|
|
|
|
seems to have the following important properties:
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
* It is lossless and faithfully represents the original source code,
|
|
|
|
|
including explicit nodes for comments and whitespace.
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
* It is flexible and allows to encode arbitrary node structure,
|
|
|
|
|
even for invalid syntax.
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
* It is minimal: it stores small amount of data and has no
|
|
|
|
|
dependencies. For instance, it does not need compiler's string
|
|
|
|
|
interner or literal data representation.
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
* While the tree itself is minimal, it is extensible in a sense that
|
|
|
|
|
it possible to associate arbitrary data with certain nodes in a
|
|
|
|
|
type-safe way.
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
2017-12-22 06:31:48 -06:00
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
It is not clear if this representation is the best one. It is heavily
|
|
|
|
|
inspired by [PSI] data structure which used in [IntelliJ] based IDEs
|
|
|
|
|
and in the [Kotlin] compiler.
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
2017-12-22 06:31:48 -06:00
|
|
|
|
[PSI]: http://www.jetbrains.org/intellij/sdk/docs/reference_guide/custom_language_support/implementing_parser_and_psi.html
|
|
|
|
|
[IntelliJ]: https://github.com/JetBrains/intellij-community/
|
|
|
|
|
[Kotlin]: https://kotlinlang.org/
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
## Untyped Tree
|
|
|
|
|
|
2017-12-22 07:28:04 -06:00
|
|
|
|
The main idea is to store the minimal amount of information in the
|
2017-12-22 10:21:45 -06:00
|
|
|
|
tree itself, and instead lean heavily on the source code for the
|
|
|
|
|
actual data about identifier names, constant values etc.
|
2017-12-22 07:28:04 -06:00
|
|
|
|
|
|
|
|
|
All nodes in the tree are of the same type and store a constant for
|
|
|
|
|
the syntactic category of the element and a range in the source code.
|
|
|
|
|
|
2017-12-22 07:56:22 -06:00
|
|
|
|
Here is a minimal implementation of this data structure with some Rust
|
|
|
|
|
syntactic categories
|
2017-12-22 07:28:04 -06:00
|
|
|
|
|
|
|
|
|
|
2017-12-22 07:56:22 -06:00
|
|
|
|
```rust
|
2017-12-22 09:55:46 -06:00
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
|
|
|
|
|
pub struct NodeKind(u16);
|
|
|
|
|
|
|
|
|
|
pub struct File {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
text: String,
|
|
|
|
|
nodes: Vec<NodeData>,
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct NodeData {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
kind: NodeKind,
|
|
|
|
|
range: (u32, u32),
|
|
|
|
|
parent: Option<u32>,
|
|
|
|
|
first_child: Option<u32>,
|
|
|
|
|
next_sibling: Option<u32>,
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
|
pub struct Node<'f> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
file: &'f File,
|
|
|
|
|
idx: u32,
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct Children<'f> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
next: Option<Node<'f>>,
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl File {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
pub fn root<'f>(&'f self) -> Node<'f> {
|
|
|
|
|
assert!(!self.nodes.is_empty());
|
|
|
|
|
Node { file: self, idx: 0 }
|
|
|
|
|
}
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'f> Node<'f> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
pub fn kind(&self) -> NodeKind {
|
|
|
|
|
self.data().kind
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn text(&self) -> &'f str {
|
|
|
|
|
let (start, end) = self.data().range;
|
|
|
|
|
&self.file.text[start as usize..end as usize]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn parent(&self) -> Option<Node<'f>> {
|
|
|
|
|
self.as_node(self.data().parent)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn children(&self) -> Children<'f> {
|
|
|
|
|
Children { next: self.as_node(self.data().first_child) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn data(&self) -> &'f NodeData {
|
|
|
|
|
&self.file.nodes[self.idx as usize]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn as_node(&self, idx: Option<u32>) -> Option<Node<'f>> {
|
|
|
|
|
idx.map(|idx| Node { file: self.file, idx })
|
|
|
|
|
}
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'f> Iterator for Children<'f> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
type Item = Node<'f>;
|
2017-12-22 09:55:46 -06:00
|
|
|
|
|
2017-12-22 10:21:45 -06:00
|
|
|
|
fn next(&mut self) -> Option<Node<'f>> {
|
|
|
|
|
let next = self.next;
|
|
|
|
|
self.next = next.and_then(|node| node.as_node(node.data().next_sibling));
|
|
|
|
|
next
|
|
|
|
|
}
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub const ERROR: NodeKind = NodeKind(0);
|
|
|
|
|
pub const WHITESPACE: NodeKind = NodeKind(1);
|
|
|
|
|
pub const STRUCT_KW: NodeKind = NodeKind(2);
|
|
|
|
|
pub const IDENT: NodeKind = NodeKind(3);
|
|
|
|
|
pub const L_CURLY: NodeKind = NodeKind(4);
|
|
|
|
|
pub const R_CURLY: NodeKind = NodeKind(5);
|
|
|
|
|
pub const COLON: NodeKind = NodeKind(6);
|
|
|
|
|
pub const COMMA: NodeKind = NodeKind(7);
|
|
|
|
|
pub const AMP: NodeKind = NodeKind(8);
|
|
|
|
|
pub const LINE_COMMENT: NodeKind = NodeKind(9);
|
|
|
|
|
pub const FILE: NodeKind = NodeKind(10);
|
|
|
|
|
pub const STRUCT_DEF: NodeKind = NodeKind(11);
|
|
|
|
|
pub const FIELD_DEF: NodeKind = NodeKind(12);
|
|
|
|
|
pub const TYPE_REF: NodeKind = NodeKind(13);
|
2017-12-22 07:28:04 -06:00
|
|
|
|
```
|
|
|
|
|
|
2017-12-22 07:56:22 -06:00
|
|
|
|
Here is a rust snippet and the corresponding parse tree:
|
|
|
|
|
|
|
|
|
|
```rust
|
|
|
|
|
struct Foo {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
field1: u32,
|
|
|
|
|
&
|
|
|
|
|
// non-doc comment
|
|
|
|
|
field2:
|
2017-12-22 07:56:22 -06:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
FILE
|
|
|
|
|
STRUCT_DEF
|
|
|
|
|
STRUCT_KW
|
2017-12-22 10:21:45 -06:00
|
|
|
|
WHITESPACE
|
|
|
|
|
IDENT
|
|
|
|
|
WHITESPACE
|
|
|
|
|
L_CURLY
|
|
|
|
|
WHITESPACE
|
|
|
|
|
FIELD_DEF
|
|
|
|
|
IDENT
|
|
|
|
|
COLON
|
|
|
|
|
WHITESPACE
|
|
|
|
|
TYPE_REF
|
|
|
|
|
IDENT
|
|
|
|
|
COMMA
|
|
|
|
|
WHITESPACE
|
|
|
|
|
ERROR
|
|
|
|
|
AMP
|
|
|
|
|
WHITESPACE
|
|
|
|
|
FIELD_DEF
|
|
|
|
|
LINE_COMMENT
|
|
|
|
|
WHITESPACE
|
|
|
|
|
IDENT
|
|
|
|
|
COLON
|
|
|
|
|
ERROR
|
|
|
|
|
WHITESPACE
|
|
|
|
|
R_CURLY
|
2017-12-22 07:56:22 -06:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Note several features of the tree:
|
|
|
|
|
|
|
|
|
|
* All whitespace and comments are explicitly accounted for.
|
|
|
|
|
|
|
|
|
|
* The node for `STRUCT_DEF` contains the error element for `&`, but
|
|
|
|
|
still represents the following field correctly.
|
2017-12-22 10:21:45 -06:00
|
|
|
|
|
2017-12-22 07:56:22 -06:00
|
|
|
|
* The second field of the struct is incomplete: `FIELD_DEF` node for
|
|
|
|
|
it contains an `ERROR` element, but nevertheless has the correct
|
|
|
|
|
`NodeKind`.
|
2017-12-22 10:21:45 -06:00
|
|
|
|
|
2017-12-22 07:56:22 -06:00
|
|
|
|
* The non-documenting comment is correctly attached to the following
|
|
|
|
|
field.
|
2017-12-22 10:21:45 -06:00
|
|
|
|
|
2017-12-22 07:28:04 -06:00
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
## Typed Tree
|
2017-12-22 10:21:45 -06:00
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
It's hard to work with this raw parse tree, because it is untyped:
|
|
|
|
|
node containing a struct definition has the same API as the node for
|
|
|
|
|
the struct field. But it's possible to add a strongly typed layer on
|
2017-12-22 10:21:45 -06:00
|
|
|
|
top of this raw tree, and get a zero-cost AST. Here is an example
|
|
|
|
|
which adds type-safe wrappers for structs and fields:
|
2017-12-22 09:55:46 -06:00
|
|
|
|
|
|
|
|
|
```rust
|
2017-12-22 10:21:45 -06:00
|
|
|
|
// generic infrastructure
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
pub trait AstNode<'f>: Copy + 'f {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
fn new(node: Node<'f>) -> Option<Self>;
|
|
|
|
|
fn node(&self) -> Node<'f>;
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn child_of_kind<'f>(node: Node<'f>, kind: NodeKind) -> Option<Node<'f>> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
node.children().find(|child| child.kind() == kind)
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn ast_children<'f, A: AstNode<'f>>(node: Node<'f>) -> Box<Iterator<Item=A> + 'f> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
Box::new(node.children().filter_map(A::new))
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-22 10:21:45 -06:00
|
|
|
|
// AST elements, specific to Rust
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
|
pub struct StructDef<'f>(Node<'f>);
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
|
pub struct FieldDef<'f>(Node<'f>);
|
|
|
|
|
|
|
|
|
|
#[derive(Clone, Copy)]
|
|
|
|
|
pub struct TypeRef<'f>(Node<'f>);
|
|
|
|
|
|
|
|
|
|
pub trait NameOwner<'f>: AstNode<'f> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
fn name_ident(&self) -> Node<'f> {
|
|
|
|
|
child_of_kind(self.node(), IDENT).unwrap()
|
|
|
|
|
}
|
2017-12-22 09:55:46 -06:00
|
|
|
|
|
2017-12-22 10:21:45 -06:00
|
|
|
|
fn name(&self) -> &'f str { self.name_ident().text() }
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
impl<'f> AstNode<'f> for StructDef<'f> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
fn new(node: Node<'f>) -> Option<Self> {
|
|
|
|
|
if node.kind() == STRUCT_DEF { Some(StructDef(node)) } else { None }
|
|
|
|
|
}
|
|
|
|
|
fn node(&self) -> Node<'f> { self.0 }
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-22 10:21:45 -06:00
|
|
|
|
impl<'f> NameOwner<'f> for StructDef<'f> {}
|
|
|
|
|
|
|
|
|
|
impl<'f> StructDef<'f> {
|
|
|
|
|
pub fn fields(&self) -> Box<Iterator<Item=FieldDef<'f>> + 'f> {
|
|
|
|
|
ast_children(self.node())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
impl<'f> AstNode<'f> for FieldDef<'f> {
|
2017-12-22 10:21:45 -06:00
|
|
|
|
fn new(node: Node<'f>) -> Option<Self> {
|
|
|
|
|
if node.kind() == FIELD_DEF { Some(FieldDef(node)) } else { None }
|
|
|
|
|
}
|
|
|
|
|
fn node(&self) -> Node<'f> { self.0 }
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-22 10:21:45 -06:00
|
|
|
|
impl<'f> FieldDef<'f> {
|
|
|
|
|
pub fn type_ref(&self) -> Option<TypeRef<'f>> {
|
|
|
|
|
ast_children(self.node()).next()
|
|
|
|
|
}
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'f> NameOwner<'f> for FieldDef<'f> {}
|
|
|
|
|
|
|
|
|
|
|
2017-12-22 10:21:45 -06:00
|
|
|
|
impl<'f> AstNode<'f> for TypeRef<'f> {
|
|
|
|
|
fn new(node: Node<'f>) -> Option<Self> {
|
|
|
|
|
if node.kind() == TYPE_REF { Some(TypeRef(node)) } else { None }
|
|
|
|
|
}
|
|
|
|
|
fn node(&self) -> Node<'f> { self.0 }
|
2017-12-22 09:55:46 -06:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
Note that although AST wrappers provide a type-safe access to the
|
|
|
|
|
tree, they are still represented as indexes, so clients of the syntax
|
|
|
|
|
tree can easily associated additional data with AST nodes by storing
|
|
|
|
|
it in a side-table.
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
|
|
|
|
|
## Missing Source Code
|
|
|
|
|
|
|
|
|
|
The crucial feature of this syntax tree is that it is just a view into
|
|
|
|
|
the original source code. And this poses a problem for the Rust
|
|
|
|
|
language, because not all compiled Rust code is represented in the
|
|
|
|
|
form of source code! Specifically, Rust has a powerful macro system,
|
|
|
|
|
which effectively allows to create and parse additional source code at
|
|
|
|
|
compile time. It is not entirely clear that the proposed parsing
|
|
|
|
|
framework is able to handle this use case, and it's the main purpose
|
|
|
|
|
of this RFC to figure it out. The current idea for handling macros is
|
|
|
|
|
to make each macro expansion produce a triple of (expansion text,
|
|
|
|
|
syntax tree, hygiene information), where hygiene information is a side
|
|
|
|
|
table, which colors different ranges of the expansion text according
|
|
|
|
|
to the original syntactic context.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Implementation plan
|
|
|
|
|
|
|
|
|
|
This RFC proposes huge changes to the internals of the compiler, so
|
|
|
|
|
it's important to proceed carefully and incrementally. The following
|
|
|
|
|
plan is suggested:
|
|
|
|
|
|
2017-12-28 14:55:16 -06:00
|
|
|
|
* RFC discussion about the theoretical feasibility of the proposal,
|
|
|
|
|
and the best representation representation for the syntax tree.
|
2017-12-22 09:55:46 -06:00
|
|
|
|
|
|
|
|
|
* Implementation of the proposal as a completely separate crates.io
|
2017-12-22 10:21:45 -06:00
|
|
|
|
crate, by refactoring existing libsyntax source code to produce a
|
|
|
|
|
new tree.
|
|
|
|
|
|
|
|
|
|
* A prototype implementation of the macro expansion on top of the new
|
|
|
|
|
sytnax tree.
|
2017-12-22 09:55:46 -06:00
|
|
|
|
|
|
|
|
|
* Additional round of discussion/RFC about merging with the mainline
|
|
|
|
|
compiler.
|
|
|
|
|
|
2017-12-22 07:28:04 -06:00
|
|
|
|
|
2017-12-21 13:28:23 -06:00
|
|
|
|
# Drawbacks
|
|
|
|
|
[drawbacks]: #drawbacks
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
- No harm will be done as long as the new libsyntax exists as an
|
|
|
|
|
experiemt on crates.io. However, actually using it in the compiler
|
|
|
|
|
and other tools would require massive refactorings.
|
2017-12-28 14:55:16 -06:00
|
|
|
|
|
|
|
|
|
- It's difficult to know upfront if the proposed syntax tree would
|
|
|
|
|
actually work well in both the compiler and IDE. It may be possible
|
|
|
|
|
that some drawbacks will be discovered during implementation.
|
|
|
|
|
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
|
|
|
|
# Rationale and alternatives
|
|
|
|
|
[alternatives]: #alternatives
|
|
|
|
|
|
2017-12-23 04:45:03 -06:00
|
|
|
|
- Incrementally add more information about source code to the current
|
|
|
|
|
AST.
|
|
|
|
|
|
|
|
|
|
- Move the current libsyntax to crates.io as is. In the past, there
|
|
|
|
|
were several failed attempts to do that.
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
- Explore alternative representations for the parse tree.
|
2017-12-23 04:45:03 -06:00
|
|
|
|
|
|
|
|
|
- Use parser generator instead of hand written parser. Using the
|
|
|
|
|
parser from libsyntax directly would be easier, and hand-written
|
|
|
|
|
LL-style parsers usually have much better error recovery than
|
|
|
|
|
generated LR-style ones.
|
2017-12-21 13:28:23 -06:00
|
|
|
|
|
|
|
|
|
# Unresolved questions
|
|
|
|
|
[unresolved]: #unresolved-questions
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
- Is it at all possible to represent Rust parser as a pure function of
|
2017-12-23 04:45:03 -06:00
|
|
|
|
the source code? It seems like the answer is yes, because the
|
|
|
|
|
language and especially macros were cleverly designed with this
|
|
|
|
|
use-case in mind.
|
2017-12-28 14:55:16 -06:00
|
|
|
|
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
- Is it possible to implement macro expansion using the proposed
|
2017-12-23 04:45:03 -06:00
|
|
|
|
framework? This is the main question of this RFC. The proposed
|
|
|
|
|
solution of synthesizing source code on the fly seems workable: it's
|
|
|
|
|
not that different from the current implementation, which
|
|
|
|
|
synthesizes token trees.
|
2017-12-28 14:55:16 -06:00
|
|
|
|
|
|
|
|
|
|
2017-12-22 09:55:46 -06:00
|
|
|
|
- How to actually phase out current libsyntax, if libsyntax2.0 turns
|
|
|
|
|
out to be a success?
|