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

Class FunctionCall

graphlite/src/ast/ast.rs:538–543  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

536/// Function call: name(args...)
537#[derive(Debug, Clone, Serialize, Deserialize)]
538pub struct FunctionCall {
539 pub name: String,
540 pub distinct: DistinctQualifier,
541 pub arguments: Vec<Expression>,
542 pub location: Location,
543}
544
545/// Property access: object.property
546#[derive(Debug, Clone, Serialize, Deserialize)]

Calls

no outgoing calls