Searched refs:expr_style (Results 1 – 4 of 4) sorted by relevance
| /linux/rust/syn/ |
| H A D | path.rs | 517 fn parse_helper(input: ParseStream, expr_style: bool) -> Result<Self> { in parse_helper() 533 if !expr_style in parse_helper() 613 pub(crate) fn parse_helper(input: ParseStream, expr_style: bool) -> Result<Self> { in parse_helper() 618 let value = PathSegment::parse_helper(input, expr_style)?; in parse_helper() 623 Path::parse_rest(input, &mut path, expr_style)?; in parse_helper() 630 expr_style: bool, in parse_rest() 635 let value = PathSegment::parse_helper(input, expr_style)?; in parse_rest() 648 pub(crate) fn qpath(input: ParseStream, expr_style: bool) -> Result<(Option<QSelf>, Path)> { in qpath() 663 let path = PathSegment::parse_helper(input, expr_style)?; in qpath() 695 let path = Path::parse_helper(input, expr_style)?; in qpath()
|
| H A D | pat.rs | 422 let expr_style = true; in pat_path_or_macro_or_struct_or_range() localVariable 423 let (qself, path) = path::parsing::qpath(input, expr_style)?; in pat_path_or_macro_or_struct_or_range()
|
| H A D | ty.rs | 785 let expr_style = false; in parse() localVariable 786 let (qself, path) = path::parsing::qpath(input, expr_style)?; in parse()
|
| H A D | expr.rs | 1947 let expr_style = true; in path_or_macro_or_struct() localVariable 1948 let (qself, path) = path::parsing::qpath(input, expr_style)?; in path_or_macro_or_struct() 2783 let expr_style = true; in parse() localVariable 2784 let (qself, path) = path::parsing::qpath(input, expr_style)?; in parse() 2967 let expr_style = true; in parse() localVariable 2968 let (qself, path) = path::parsing::qpath(input, expr_style)?; in parse()
|