MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / ascii_ident_re

Function ascii_ident_re

codegraph-kernel/src/kotlin.rs:67–70  ·  view source on GitHub ↗

`/^[A-Za-z_]\w*$/` with JS's ASCII `\w` (getReturnType's ident test).

()

Source from the content-addressed store, hash-verified

65
66/// `/^[A-Za-z_]\w*$/` with JS's ASCII `\w` (getReturnType's ident test).
67fn ascii_ident_re() -> &'static Regex {
68 static RE: OnceLock<Regex> = OnceLock::new();
69 RE.get_or_init(|| Regex::new(r"^[A-Za-z_][0-9A-Za-z_]*$").unwrap())
70}
71/// extractStaticMemberRef's capitalized-receiver test.
72fn capitalized_re() -> &'static Regex {
73 static RE: OnceLock<Regex> = OnceLock::new();

Callers 1

return_type_ofMethod · 0.70

Calls 1

unwrapMethod · 0.60

Tested by

no test coverage detected