mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 04:04:06 +00:00
Use Marker argument for item parsers
- Fix pub_expr - Fix incorrect parsing of crate::path
This commit is contained in:
parent
3d9c2beb8e
commit
76075c7410
@ -86,7 +86,7 @@ impl BlockLike {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn opt_visibility(p: &mut Parser) {
|
fn opt_visibility(p: &mut Parser) -> bool {
|
||||||
match p.current() {
|
match p.current() {
|
||||||
PUB_KW => {
|
PUB_KW => {
|
||||||
let m = p.start();
|
let m = p.start();
|
||||||
@ -116,13 +116,19 @@ fn opt_visibility(p: &mut Parser) {
|
|||||||
}
|
}
|
||||||
// test crate_keyword_vis
|
// test crate_keyword_vis
|
||||||
// crate fn main() { }
|
// crate fn main() { }
|
||||||
CRATE_KW => {
|
// struct S { crate field: u32 }
|
||||||
|
// struct T(crate u32);
|
||||||
|
//
|
||||||
|
// test crate_keyword_path
|
||||||
|
// fn foo() { crate::foo(); }
|
||||||
|
CRATE_KW if p.nth(1) != COLONCOLON => {
|
||||||
let m = p.start();
|
let m = p.start();
|
||||||
p.bump();
|
p.bump();
|
||||||
m.complete(p, VISIBILITY);
|
m.complete(p, VISIBILITY);
|
||||||
}
|
}
|
||||||
_ => (),
|
_ => return false,
|
||||||
}
|
}
|
||||||
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
fn opt_alias(p: &mut Parser) {
|
fn opt_alias(p: &mut Parser) {
|
||||||
|
@ -67,8 +67,6 @@ pub(crate) fn expr_block_contents(p: &mut Parser) {
|
|||||||
Err(m) => m,
|
Err(m) => m,
|
||||||
};
|
};
|
||||||
|
|
||||||
// test pub_expr
|
|
||||||
// fn foo() { pub 92; } //FIXME
|
|
||||||
if has_attrs {
|
if has_attrs {
|
||||||
m.abandon(p);
|
m.abandon(p);
|
||||||
p.error("expected a let statement or an item after attributes in block");
|
p.error("expected a let statement or an item after attributes in block");
|
||||||
|
@ -67,11 +67,14 @@ pub(super) fn item_or_macro(p: &mut Parser, stop_on_r_curly: bool, flavor: ItemF
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn maybe_item(p: &mut Parser, m: Marker, flavor: ItemFlavor) -> Result<(), Marker> {
|
pub(super) fn maybe_item(p: &mut Parser, m: Marker, flavor: ItemFlavor) -> Result<(), Marker> {
|
||||||
opt_visibility(p);
|
// test_err pub_expr
|
||||||
if let Some(kind) = items_without_modifiers(p) {
|
// fn foo() { pub 92; }
|
||||||
m.complete(p, kind);
|
let has_visibility = opt_visibility(p);
|
||||||
return Ok(());
|
|
||||||
}
|
let m = match items_without_modifiers(p, m) {
|
||||||
|
Ok(()) => return Ok(()),
|
||||||
|
Err(m) => m,
|
||||||
|
};
|
||||||
|
|
||||||
let mut has_mods = false;
|
let mut has_mods = false;
|
||||||
|
|
||||||
@ -152,10 +155,14 @@ pub(super) fn maybe_item(p: &mut Parser, m: Marker, flavor: ItemFlavor) -> Resul
|
|||||||
m.complete(p, IMPL_BLOCK);
|
m.complete(p, IMPL_BLOCK);
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
if !has_mods {
|
if !has_visibility && !has_mods {
|
||||||
return Err(m);
|
return Err(m);
|
||||||
} else {
|
} else {
|
||||||
p.error("expected fn, trait or impl");
|
if has_mods {
|
||||||
|
p.error("expected fn, trait or impl");
|
||||||
|
} else {
|
||||||
|
p.error("expected an item");
|
||||||
|
}
|
||||||
m.complete(p, ERROR);
|
m.complete(p, ERROR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -163,23 +170,14 @@ pub(super) fn maybe_item(p: &mut Parser, m: Marker, flavor: ItemFlavor) -> Resul
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn items_without_modifiers(p: &mut Parser) -> Option<SyntaxKind> {
|
fn items_without_modifiers(p: &mut Parser, m: Marker) -> Result<(), Marker> {
|
||||||
let la = p.nth(1);
|
let la = p.nth(1);
|
||||||
let kind = match p.current() {
|
match p.current() {
|
||||||
// test extern_crate
|
// test extern_crate
|
||||||
// extern crate foo;
|
// extern crate foo;
|
||||||
EXTERN_KW if la == CRATE_KW => {
|
EXTERN_KW if la == CRATE_KW => extern_crate_item(p, m),
|
||||||
extern_crate_item(p);
|
TYPE_KW => type_def(p, m),
|
||||||
EXTERN_CRATE_ITEM
|
MOD_KW => mod_item(p, m),
|
||||||
}
|
|
||||||
TYPE_KW => {
|
|
||||||
type_def(p);
|
|
||||||
TYPE_ALIAS_DEF
|
|
||||||
}
|
|
||||||
MOD_KW => {
|
|
||||||
mod_item(p);
|
|
||||||
MODULE
|
|
||||||
}
|
|
||||||
STRUCT_KW => {
|
STRUCT_KW => {
|
||||||
// test struct_items
|
// test struct_items
|
||||||
// struct Foo;
|
// struct Foo;
|
||||||
@ -190,14 +188,7 @@ fn items_without_modifiers(p: &mut Parser) -> Option<SyntaxKind> {
|
|||||||
// a: i32,
|
// a: i32,
|
||||||
// b: f32,
|
// b: f32,
|
||||||
// }
|
// }
|
||||||
nominal::struct_def(p, STRUCT_KW);
|
nominal::struct_def(p, m, STRUCT_KW);
|
||||||
if p.at(SEMI) {
|
|
||||||
p.err_and_bump(
|
|
||||||
"expected item, found `;`\n\
|
|
||||||
consider removing this semicolon",
|
|
||||||
);
|
|
||||||
}
|
|
||||||
STRUCT_DEF
|
|
||||||
}
|
}
|
||||||
IDENT if p.at_contextual_kw("union") && p.nth(1) == IDENT => {
|
IDENT if p.at_contextual_kw("union") && p.nth(1) == IDENT => {
|
||||||
// test union_items
|
// test union_items
|
||||||
@ -206,25 +197,12 @@ fn items_without_modifiers(p: &mut Parser) -> Option<SyntaxKind> {
|
|||||||
// a: i32,
|
// a: i32,
|
||||||
// b: f32,
|
// b: f32,
|
||||||
// }
|
// }
|
||||||
nominal::struct_def(p, UNION_KW);
|
nominal::struct_def(p, m, UNION_KW);
|
||||||
STRUCT_DEF
|
|
||||||
}
|
|
||||||
ENUM_KW => {
|
|
||||||
nominal::enum_def(p);
|
|
||||||
ENUM_DEF
|
|
||||||
}
|
|
||||||
USE_KW => {
|
|
||||||
use_item::use_item(p);
|
|
||||||
USE_ITEM
|
|
||||||
}
|
|
||||||
CONST_KW if (la == IDENT || la == MUT_KW) => {
|
|
||||||
consts::const_def(p);
|
|
||||||
CONST_DEF
|
|
||||||
}
|
|
||||||
STATIC_KW => {
|
|
||||||
consts::static_def(p);
|
|
||||||
STATIC_DEF
|
|
||||||
}
|
}
|
||||||
|
ENUM_KW => nominal::enum_def(p, m),
|
||||||
|
USE_KW => use_item::use_item(p, m),
|
||||||
|
CONST_KW if (la == IDENT || la == MUT_KW) => consts::const_def(p, m),
|
||||||
|
STATIC_KW => consts::static_def(p, m),
|
||||||
// test extern_block
|
// test extern_block
|
||||||
// extern {}
|
// extern {}
|
||||||
EXTERN_KW
|
EXTERN_KW
|
||||||
@ -232,14 +210,20 @@ fn items_without_modifiers(p: &mut Parser) -> Option<SyntaxKind> {
|
|||||||
{
|
{
|
||||||
abi(p);
|
abi(p);
|
||||||
extern_item_list(p);
|
extern_item_list(p);
|
||||||
EXTERN_BLOCK
|
m.complete(p, EXTERN_BLOCK);
|
||||||
}
|
}
|
||||||
_ => return None,
|
_ => return Err(m),
|
||||||
};
|
};
|
||||||
Some(kind)
|
if p.at(SEMI) {
|
||||||
|
p.err_and_bump(
|
||||||
|
"expected item, found `;`\n\
|
||||||
|
consider removing this semicolon",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn extern_crate_item(p: &mut Parser) {
|
fn extern_crate_item(p: &mut Parser, m: Marker) {
|
||||||
assert!(p.at(EXTERN_KW));
|
assert!(p.at(EXTERN_KW));
|
||||||
p.bump();
|
p.bump();
|
||||||
assert!(p.at(CRATE_KW));
|
assert!(p.at(CRATE_KW));
|
||||||
@ -247,6 +231,7 @@ fn extern_crate_item(p: &mut Parser) {
|
|||||||
name_ref(p);
|
name_ref(p);
|
||||||
opt_alias(p);
|
opt_alias(p);
|
||||||
p.expect(SEMI);
|
p.expect(SEMI);
|
||||||
|
m.complete(p, EXTERN_CRATE_ITEM);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn extern_item_list(p: &mut Parser) {
|
pub(crate) fn extern_item_list(p: &mut Parser) {
|
||||||
@ -295,7 +280,7 @@ fn fn_def(p: &mut Parser, flavor: ItemFlavor) {
|
|||||||
|
|
||||||
// test type_item
|
// test type_item
|
||||||
// type Foo = Bar;
|
// type Foo = Bar;
|
||||||
fn type_def(p: &mut Parser) {
|
fn type_def(p: &mut Parser, m: Marker) {
|
||||||
assert!(p.at(TYPE_KW));
|
assert!(p.at(TYPE_KW));
|
||||||
p.bump();
|
p.bump();
|
||||||
|
|
||||||
@ -317,9 +302,10 @@ fn type_def(p: &mut Parser) {
|
|||||||
types::type_(p);
|
types::type_(p);
|
||||||
}
|
}
|
||||||
p.expect(SEMI);
|
p.expect(SEMI);
|
||||||
|
m.complete(p, TYPE_ALIAS_DEF);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn mod_item(p: &mut Parser) {
|
pub(crate) fn mod_item(p: &mut Parser, m: Marker) {
|
||||||
assert!(p.at(MOD_KW));
|
assert!(p.at(MOD_KW));
|
||||||
p.bump();
|
p.bump();
|
||||||
|
|
||||||
@ -329,6 +315,7 @@ pub(crate) fn mod_item(p: &mut Parser) {
|
|||||||
} else if !p.eat(SEMI) {
|
} else if !p.eat(SEMI) {
|
||||||
p.error("expected `;` or `{`");
|
p.error("expected `;` or `{`");
|
||||||
}
|
}
|
||||||
|
m.complete(p, MODULE);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn mod_item_list(p: &mut Parser) {
|
pub(crate) fn mod_item_list(p: &mut Parser) {
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
pub(super) fn static_def(p: &mut Parser) {
|
pub(super) fn static_def(p: &mut Parser, m: Marker) {
|
||||||
const_or_static(p, STATIC_KW)
|
const_or_static(p, m, STATIC_KW, STATIC_DEF)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn const_def(p: &mut Parser) {
|
pub(super) fn const_def(p: &mut Parser, m: Marker) {
|
||||||
const_or_static(p, CONST_KW)
|
const_or_static(p, m, CONST_KW, CONST_DEF)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn const_or_static(p: &mut Parser, kw: SyntaxKind) {
|
fn const_or_static(p: &mut Parser, m: Marker, kw: SyntaxKind, def: SyntaxKind) {
|
||||||
assert!(p.at(kw));
|
assert!(p.at(kw));
|
||||||
p.bump();
|
p.bump();
|
||||||
p.eat(MUT_KW); // TODO: validator to forbid const mut
|
p.eat(MUT_KW); // TODO: validator to forbid const mut
|
||||||
@ -18,4 +18,5 @@ fn const_or_static(p: &mut Parser, kw: SyntaxKind) {
|
|||||||
expressions::expr(p);
|
expressions::expr(p);
|
||||||
}
|
}
|
||||||
p.expect(SEMI);
|
p.expect(SEMI);
|
||||||
|
m.complete(p, def);
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
pub(super) fn struct_def(p: &mut Parser, kind: SyntaxKind) {
|
pub(super) fn struct_def(p: &mut Parser, m: Marker, kind: SyntaxKind) {
|
||||||
assert!(p.at(STRUCT_KW) || p.at_contextual_kw("union"));
|
assert!(p.at(STRUCT_KW) || p.at_contextual_kw("union"));
|
||||||
p.bump_remap(kind);
|
p.bump_remap(kind);
|
||||||
|
|
||||||
@ -12,19 +12,16 @@ pub(super) fn struct_def(p: &mut Parser, kind: SyntaxKind) {
|
|||||||
match p.current() {
|
match p.current() {
|
||||||
SEMI => {
|
SEMI => {
|
||||||
p.bump();
|
p.bump();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
L_CURLY => named_field_def_list(p),
|
L_CURLY => named_field_def_list(p),
|
||||||
_ => {
|
_ => {
|
||||||
//TODO: special case `(` error message
|
//TODO: special case `(` error message
|
||||||
p.error("expected `;` or `{`");
|
p.error("expected `;` or `{`");
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
SEMI if kind == STRUCT_KW => {
|
SEMI if kind == STRUCT_KW => {
|
||||||
p.bump();
|
p.bump();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
L_CURLY => named_field_def_list(p),
|
L_CURLY => named_field_def_list(p),
|
||||||
L_PAREN if kind == STRUCT_KW => {
|
L_PAREN if kind == STRUCT_KW => {
|
||||||
@ -37,16 +34,15 @@ pub(super) fn struct_def(p: &mut Parser, kind: SyntaxKind) {
|
|||||||
}
|
}
|
||||||
_ if kind == STRUCT_KW => {
|
_ if kind == STRUCT_KW => {
|
||||||
p.error("expected `;`, `{`, or `(`");
|
p.error("expected `;`, `{`, or `(`");
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
p.error("expected `{`");
|
p.error("expected `{`");
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
m.complete(p, STRUCT_DEF);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(super) fn enum_def(p: &mut Parser) {
|
pub(super) fn enum_def(p: &mut Parser, m: Marker) {
|
||||||
assert!(p.at(ENUM_KW));
|
assert!(p.at(ENUM_KW));
|
||||||
p.bump();
|
p.bump();
|
||||||
name_r(p, ITEM_RECOVERY_SET);
|
name_r(p, ITEM_RECOVERY_SET);
|
||||||
@ -57,6 +53,7 @@ pub(super) fn enum_def(p: &mut Parser) {
|
|||||||
} else {
|
} else {
|
||||||
p.error("expected `{`")
|
p.error("expected `{`")
|
||||||
}
|
}
|
||||||
|
m.complete(p, ENUM_DEF);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn enum_variant_list(p: &mut Parser) {
|
pub(crate) fn enum_variant_list(p: &mut Parser) {
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
pub(super) fn use_item(p: &mut Parser) {
|
pub(super) fn use_item(p: &mut Parser, m: Marker) {
|
||||||
assert!(p.at(USE_KW));
|
assert!(p.at(USE_KW));
|
||||||
p.bump();
|
p.bump();
|
||||||
use_tree(p);
|
use_tree(p);
|
||||||
p.expect(SEMI);
|
p.expect(SEMI);
|
||||||
|
m.complete(p, USE_ITEM);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse a use 'tree', such as `some::path` in `use some::path;`
|
/// Parse a use 'tree', such as `some::path` in `use some::path;`
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
SOURCE_FILE@[0; 40)
|
SOURCE_FILE@[0; 40)
|
||||||
STRUCT_DEF@[0; 40)
|
STRUCT_DEF@[0; 39)
|
||||||
STRUCT_KW@[0; 6)
|
STRUCT_KW@[0; 6)
|
||||||
WHITESPACE@[6; 7)
|
WHITESPACE@[6; 7)
|
||||||
NAME@[7; 8)
|
NAME@[7; 8)
|
||||||
@ -35,5 +35,5 @@ SOURCE_FILE@[0; 40)
|
|||||||
R_CURLY@[38; 39)
|
R_CURLY@[38; 39)
|
||||||
err: `expected item, found `;`
|
err: `expected item, found `;`
|
||||||
consider removing this semicolon`
|
consider removing this semicolon`
|
||||||
ERROR@[39; 40)
|
ERROR@[39; 40)
|
||||||
SEMI@[39; 40)
|
SEMI@[39; 40)
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
fn foo() { pub 92; }
|
@ -1,4 +1,4 @@
|
|||||||
SOURCE_FILE@[0; 29)
|
SOURCE_FILE@[0; 21)
|
||||||
FN_DEF@[0; 20)
|
FN_DEF@[0; 20)
|
||||||
FN_KW@[0; 2)
|
FN_KW@[0; 2)
|
||||||
WHITESPACE@[2; 3)
|
WHITESPACE@[2; 3)
|
||||||
@ -11,15 +11,15 @@ SOURCE_FILE@[0; 29)
|
|||||||
BLOCK@[9; 20)
|
BLOCK@[9; 20)
|
||||||
L_CURLY@[9; 10)
|
L_CURLY@[9; 10)
|
||||||
WHITESPACE@[10; 11)
|
WHITESPACE@[10; 11)
|
||||||
EXPR_STMT@[11; 18)
|
ERROR@[11; 14)
|
||||||
VISIBILITY@[11; 14)
|
VISIBILITY@[11; 14)
|
||||||
PUB_KW@[11; 14)
|
PUB_KW@[11; 14)
|
||||||
WHITESPACE@[14; 15)
|
err: `expected an item`
|
||||||
|
WHITESPACE@[14; 15)
|
||||||
|
EXPR_STMT@[15; 18)
|
||||||
LITERAL@[15; 17)
|
LITERAL@[15; 17)
|
||||||
INT_NUMBER@[15; 17) "92"
|
INT_NUMBER@[15; 17) "92"
|
||||||
SEMI@[17; 18)
|
SEMI@[17; 18)
|
||||||
WHITESPACE@[18; 19)
|
WHITESPACE@[18; 19)
|
||||||
R_CURLY@[19; 20)
|
R_CURLY@[19; 20)
|
||||||
WHITESPACE@[20; 21)
|
WHITESPACE@[20; 21)
|
||||||
COMMENT@[21; 28)
|
|
||||||
WHITESPACE@[28; 29)
|
|
@ -1 +0,0 @@
|
|||||||
fn foo() { pub 92; } //FIXME
|
|
@ -1 +1,3 @@
|
|||||||
crate fn main() { }
|
crate fn main() { }
|
||||||
|
struct S { crate field: u32 }
|
||||||
|
struct T(crate u32);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
SOURCE_FILE@[0; 20)
|
SOURCE_FILE@[0; 71)
|
||||||
FN_DEF@[0; 19)
|
FN_DEF@[0; 19)
|
||||||
VISIBILITY@[0; 5)
|
VISIBILITY@[0; 5)
|
||||||
CRATE_KW@[0; 5)
|
CRATE_KW@[0; 5)
|
||||||
@ -16,3 +16,47 @@ SOURCE_FILE@[0; 20)
|
|||||||
WHITESPACE@[17; 18)
|
WHITESPACE@[17; 18)
|
||||||
R_CURLY@[18; 19)
|
R_CURLY@[18; 19)
|
||||||
WHITESPACE@[19; 20)
|
WHITESPACE@[19; 20)
|
||||||
|
STRUCT_DEF@[20; 49)
|
||||||
|
STRUCT_KW@[20; 26)
|
||||||
|
WHITESPACE@[26; 27)
|
||||||
|
NAME@[27; 28)
|
||||||
|
IDENT@[27; 28) "S"
|
||||||
|
WHITESPACE@[28; 29)
|
||||||
|
NAMED_FIELD_DEF_LIST@[29; 49)
|
||||||
|
L_CURLY@[29; 30)
|
||||||
|
WHITESPACE@[30; 31)
|
||||||
|
NAMED_FIELD_DEF@[31; 47)
|
||||||
|
VISIBILITY@[31; 36)
|
||||||
|
CRATE_KW@[31; 36)
|
||||||
|
WHITESPACE@[36; 37)
|
||||||
|
NAME@[37; 42)
|
||||||
|
IDENT@[37; 42) "field"
|
||||||
|
COLON@[42; 43)
|
||||||
|
WHITESPACE@[43; 44)
|
||||||
|
PATH_TYPE@[44; 47)
|
||||||
|
PATH@[44; 47)
|
||||||
|
PATH_SEGMENT@[44; 47)
|
||||||
|
NAME_REF@[44; 47)
|
||||||
|
IDENT@[44; 47) "u32"
|
||||||
|
WHITESPACE@[47; 48)
|
||||||
|
R_CURLY@[48; 49)
|
||||||
|
WHITESPACE@[49; 50)
|
||||||
|
STRUCT_DEF@[50; 70)
|
||||||
|
STRUCT_KW@[50; 56)
|
||||||
|
WHITESPACE@[56; 57)
|
||||||
|
NAME@[57; 58)
|
||||||
|
IDENT@[57; 58) "T"
|
||||||
|
POS_FIELD_DEF_LIST@[58; 69)
|
||||||
|
L_PAREN@[58; 59)
|
||||||
|
POS_FIELD_DEF@[59; 68)
|
||||||
|
VISIBILITY@[59; 64)
|
||||||
|
CRATE_KW@[59; 64)
|
||||||
|
WHITESPACE@[64; 65)
|
||||||
|
PATH_TYPE@[65; 68)
|
||||||
|
PATH@[65; 68)
|
||||||
|
PATH_SEGMENT@[65; 68)
|
||||||
|
NAME_REF@[65; 68)
|
||||||
|
IDENT@[65; 68) "u32"
|
||||||
|
R_PAREN@[68; 69)
|
||||||
|
SEMI@[69; 70)
|
||||||
|
WHITESPACE@[70; 71)
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
fn foo() { crate::foo(); }
|
@ -0,0 +1,31 @@
|
|||||||
|
SOURCE_FILE@[0; 27)
|
||||||
|
FN_DEF@[0; 26)
|
||||||
|
FN_KW@[0; 2)
|
||||||
|
WHITESPACE@[2; 3)
|
||||||
|
NAME@[3; 6)
|
||||||
|
IDENT@[3; 6) "foo"
|
||||||
|
PARAM_LIST@[6; 8)
|
||||||
|
L_PAREN@[6; 7)
|
||||||
|
R_PAREN@[7; 8)
|
||||||
|
WHITESPACE@[8; 9)
|
||||||
|
BLOCK@[9; 26)
|
||||||
|
L_CURLY@[9; 10)
|
||||||
|
WHITESPACE@[10; 11)
|
||||||
|
EXPR_STMT@[11; 24)
|
||||||
|
CALL_EXPR@[11; 23)
|
||||||
|
PATH_EXPR@[11; 21)
|
||||||
|
PATH@[11; 21)
|
||||||
|
PATH@[11; 16)
|
||||||
|
PATH_SEGMENT@[11; 16)
|
||||||
|
CRATE_KW@[11; 16)
|
||||||
|
COLONCOLON@[16; 18)
|
||||||
|
PATH_SEGMENT@[18; 21)
|
||||||
|
NAME_REF@[18; 21)
|
||||||
|
IDENT@[18; 21) "foo"
|
||||||
|
ARG_LIST@[21; 23)
|
||||||
|
L_PAREN@[21; 22)
|
||||||
|
R_PAREN@[22; 23)
|
||||||
|
SEMI@[23; 24)
|
||||||
|
WHITESPACE@[24; 25)
|
||||||
|
R_CURLY@[25; 26)
|
||||||
|
WHITESPACE@[26; 27)
|
Loading…
Reference in New Issue
Block a user