1
1
//! # Token Streams
2
2
//!
3
3
//! `TokenStream`s represent syntactic objects before they are converted into ASTs.
4
- //! A `TokenStream` is, roughly speaking, a sequence (eg stream) of `TokenTree`s,
5
- //! which are themselves a single `Token` or a `Delimited` subsequence of tokens.
4
+ //! A `TokenStream` is, roughly speaking, a sequence of [ `TokenTree`] s,
5
+ //! which are themselves a single [ `Token`] or a `Delimited` subsequence of tokens.
6
6
//!
7
7
//! ## Ownership
8
8
//!
9
9
//! `TokenStream`s are persistent data structures constructed as ropes with reference
10
10
//! counted-children. In general, this means that calling an operation on a `TokenStream`
11
11
//! (such as `slice`) produces an entirely new `TokenStream` from the borrowed reference to
12
- //! the original. This essentially coerces `TokenStream`s into ' views' of their subparts,
12
+ //! the original. This essentially coerces `TokenStream`s into " views" of their subparts,
13
13
//! and a borrowed `TokenStream` is sufficient to build an owned `TokenStream` without taking
14
14
//! ownership of the original.
15
15
@@ -24,9 +24,9 @@ use smallvec::{smallvec, SmallVec};
24
24
25
25
use std:: { fmt, iter, mem} ;
26
26
27
- /// When the main rust parser encounters a syntax-extension invocation, it
28
- /// parses the arguments to the invocation as a token- tree. This is a very
29
- /// loose structure, such that all sorts of different AST- fragments can
27
+ /// When the main Rust parser encounters a syntax-extension invocation, it
28
+ /// parses the arguments to the invocation as a token tree. This is a very
29
+ /// loose structure, such that all sorts of different AST fragments can
30
30
/// be passed to syntax extensions using a uniform type.
31
31
///
32
32
/// If the syntax extension is an MBE macro, it will attempt to match its
@@ -38,9 +38,9 @@ use std::{fmt, iter, mem};
38
38
/// Nothing special happens to misnamed or misplaced `SubstNt`s.
39
39
#[ derive( Debug , Clone , PartialEq , Encodable , Decodable , HashStable_Generic ) ]
40
40
pub enum TokenTree {
41
- /// A single token
41
+ /// A single token.
42
42
Token ( Token ) ,
43
- /// A delimited sequence of token trees
43
+ /// A delimited sequence of token trees.
44
44
Delimited ( DelimSpan , DelimToken , TokenStream ) ,
45
45
}
46
46
62
62
}
63
63
64
64
impl TokenTree {
65
- /// Checks if this TokenTree is equal to the other, regardless of span information.
65
+ /// Checks if this ` TokenTree` is equal to the other, regardless of span information.
66
66
pub fn eq_unspanned ( & self , other : & TokenTree ) -> bool {
67
67
match ( self , other) {
68
68
( TokenTree :: Token ( token) , TokenTree :: Token ( token2) ) => token. kind == token2. kind ,
@@ -73,7 +73,7 @@ impl TokenTree {
73
73
}
74
74
}
75
75
76
- /// Retrieves the TokenTree's span.
76
+ /// Retrieves the ` TokenTree` 's span.
77
77
pub fn span ( & self ) -> Span {
78
78
match self {
79
79
TokenTree :: Token ( token) => token. span ,
@@ -140,7 +140,7 @@ impl CreateTokenStream for TokenStream {
140
140
}
141
141
}
142
142
143
- /// A lazy version of `TokenStream`, which defers creation
143
+ /// A lazy version of [ `TokenStream`] , which defers creation
144
144
/// of an actual `TokenStream` until it is needed.
145
145
/// `Box` is here only to reduce the structure size.
146
146
#[ derive( Clone ) ]
@@ -188,11 +188,12 @@ impl<CTX> HashStable<CTX> for LazyTokenStream {
188
188
}
189
189
}
190
190
191
- /// A `TokenStream` is an abstract sequence of tokens, organized into `TokenTree`s.
191
+ /// A `TokenStream` is an abstract sequence of tokens, organized into [ `TokenTree`] s.
192
192
///
193
193
/// The goal is for procedural macros to work with `TokenStream`s and `TokenTree`s
194
194
/// instead of a representation of the abstract syntax tree.
195
- /// Today's `TokenTree`s can still contain AST via `token::Interpolated` for back-compat.
195
+ /// Today's `TokenTree`s can still contain AST via `token::Interpolated` for
196
+ /// backwards compatability.
196
197
#[ derive( Clone , Debug , Default , Encodable , Decodable ) ]
197
198
pub struct TokenStream ( pub ( crate ) Lrc < Vec < TreeAndSpacing > > ) ;
198
199
@@ -429,7 +430,7 @@ impl TokenStreamBuilder {
429
430
}
430
431
}
431
432
432
- /// By-reference iterator over a `TokenStream`.
433
+ /// By-reference iterator over a [ `TokenStream`] .
433
434
#[ derive( Clone ) ]
434
435
pub struct CursorRef < ' t > {
435
436
stream : & ' t TokenStream ,
@@ -457,8 +458,8 @@ impl<'t> Iterator for CursorRef<'t> {
457
458
}
458
459
}
459
460
460
- /// Owning by-value iterator over a `TokenStream`.
461
- /// FIXME: Many uses of this can be replaced with by-reference iterator to avoid clones.
461
+ /// Owning by-value iterator over a [ `TokenStream`] .
462
+ // FIXME: Many uses of this can be replaced with by-reference iterator to avoid clones.
462
463
#[ derive( Clone ) ]
463
464
pub struct Cursor {
464
465
pub stream : TokenStream ,
0 commit comments