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

Function keywords

prqlc/prqlc/src/codegen/ast.rs:331–338  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

329}
330
331fn keywords() -> &'static HashSet<&'static str> {
332 static KEYWORDS: OnceLock<HashSet<&'static str>> = OnceLock::new();
333 KEYWORDS.get_or_init(|| {
334 HashSet::from_iter([
335 "let", "into", "case", "prql", "type", "module", "internal", "func",
336 ])
337 })
338}
339
340fn valid_prql_ident() -> &'static Regex {
341 static VALID_PRQL_IDENT: OnceLock<Regex> = OnceLock::new();

Callers 1

write_ident_partFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected