feat(codemode): native coercion parity in interpreter (#37608)

This commit is contained in:
Aiden Cline
2026-07-18 12:01:10 -05:00
committed by GitHub
parent 7d4496eafc
commit 5f437a09b0
10 changed files with 323 additions and 48 deletions
+2
View File
@@ -2,6 +2,8 @@ import { type AstNode, InterpreterRuntimeError, supportedSyntaxMessage } from ".
import { typeofValue } from "../interpreter/references.js"
import { copyIn, copyOut } from "../tool-runtime.js"
export const jsonStatics = new Set(["parse", "stringify"])
export const invokeJsonMethod = (name: string, args: Array<unknown>, node: AstNode): unknown => {
switch (name) {
case "stringify": {