chore: generate

This commit is contained in:
opencode-agent[bot]
2026-07-06 18:20:49 +00:00
parent 964b3d1eed
commit 5344de6a42
9 changed files with 1129 additions and 4372 deletions
+2 -1
View File
@@ -153,7 +153,8 @@ export const unsupportedSyntax = (kind: string, node: AstNode): InterpreterRunti
[supportedSyntaxMessage],
)
export const isRecord = (value: unknown): value is Record<string, unknown> => typeof value === "object" && value !== null
export const isRecord = (value: unknown): value is Record<string, unknown> =>
typeof value === "object" && value !== null
export const asNode = (value: unknown, context: string): AstNode => {
if (!isRecord(value) || typeof value.type !== "string") {