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

Function starts_upper_re

codegraph-kernel/src/dart.rs:81–84  ·  view source on GitHub ↗

The chained-call re-encode gate (`/^[A-Z]/`).

()

Source from the content-addressed store, hash-verified

79}
80/// The chained-call re-encode gate (`/^[A-Z]/`).
81fn starts_upper_re() -> &'static Regex {
82 static RE: OnceLock<Regex> = OnceLock::new();
83 RE.get_or_init(|| Regex::new(r"^[A-Z]").unwrap())
84}
85/// extractDartReturnType's `<...>` strip (`/<[^>]*>/g`).
86fn angle_args_re() -> &'static Regex {
87 static RE: OnceLock<Regex> = OnceLock::new();

Callers 1

bare_call_nameMethod · 0.70

Calls 1

unwrapMethod · 0.60

Tested by

no test coverage detected