MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / parameter_or_catalog_path

Function parameter_or_catalog_path

graphlite/src/ast/parser.rs:3444–3447  ·  view source on GitHub ↗

Parse parameter or catalog path (helper function)

(tokens: &[Token])

Source from the content-addressed store, hash-verified

3442
3443/// Parse parameter or catalog path (helper function)
3444fn parameter_or_catalog_path(tokens: &[Token]) -> IResult<&[Token], CatalogPath> {
3445 // For simplicity, just parse as catalog path for now
3446 catalog_path(tokens)
3447}
3448
3449/// Expect a specific token
3450fn expect_token(expected: Token) -> impl Fn(&[Token]) -> IResult<&[Token], Token> {

Callers

nothing calls this directly

Calls 1

catalog_pathFunction · 0.85

Tested by

no test coverage detected