(name: string)
| 213 | |
| 214 | /** Check if a name is a builtin function (not a component) */ |
| 215 | export function isBuiltin(name: string): boolean { |
| 216 | return BUILTIN_NAMES.has(name); |
| 217 | } |
| 218 | |
| 219 | /** Reserved statement-level call names — not builtins, not components */ |
| 220 | export const RESERVED_CALLS = { Query: "Query", Mutation: "Mutation" } as const; |
no test coverage detected