feat(codemode): support labeled control flow (#38035)

This commit is contained in:
Aiden Cline 2026-07-20 23:36:24 -05:00 committed by GitHub
commit a81c04fd31
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 312 additions and 18 deletions

View file

@ -31,8 +31,8 @@ export type Binding = {
export type StatementResult =
| { kind: "none" }
| { kind: "return"; value: unknown }
| { kind: "break" }
| { kind: "continue" }
| { kind: "break"; label?: string }
| { kind: "continue"; label?: string }
export type MemberReference = {
target: SafeObject | Array<unknown> | CodeModeRegExp | CodeModeURL