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

Function symbolic_op_re

codegraph-kernel/src/ccpp/mod.rs:131–134  ·  view source on GitHub ↗

Symbolic operator tail (`/^[^\w\s]/` in JS).

()

Source from the content-addressed store, hash-verified

129}
130/// Symbolic operator tail (`/^[^\w\s]/` in JS).
131fn symbolic_op_re() -> &'static Regex {
132 static RE: OnceLock<Regex> = OnceLock::new();
133 RE.get_or_init(|| Regex::new(r"^[^A-Za-z0-9_\s]").unwrap())
134}
135/// extractStaticMemberRef's capitalized-receiver test.
136fn capitalized_re() -> &'static Regex {
137 static RE: OnceLock<Regex> = OnceLock::new();

Callers 1

extract_callMethod · 0.85

Calls 1

unwrapMethod · 0.60

Tested by

no test coverage detected