MCPcopy Create free account
hub / github.com/PRQL/prql / ident_part

Function ident_part

prqlc/prqlc-parser/src/parser/mod.rs:72–79  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

70}
71
72fn ident_part<'a, I>() -> impl Parser<'a, I, String, ParserError<'a>> + Clone
73where
74 I: Input<'a, Token = lr::Token, Span = Span> + BorrowInput<'a>,
75{
76 select_ref! {
77 lr::Token { kind: TokenKind::Ident(ident), .. } => ident.clone(),
78 }
79}
80
81fn keyword<'a, I>(kw: &'static str) -> impl Parser<'a, I, (), ParserError<'a>> + Clone
82where

Callers 11

module_contentsFunction · 0.70
query_defFunction · 0.70
var_defFunction · 0.70
type_defFunction · 0.70
import_defFunction · 0.70
type_exprFunction · 0.70
aliasedFunction · 0.70
maybe_aliasedFunction · 0.70
func_callFunction · 0.70
lambda_funcFunction · 0.70
identFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected