From 4a5618e900e0e4deaccb24d58329f170b8156d0f Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Thu, 16 Oct 2025 09:53:05 -0700 Subject: [PATCH] Update value.ts --- src/value.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/value.ts b/src/value.ts index 8173ff5..95334e2 100644 --- a/src/value.ts +++ b/src/value.ts @@ -9,14 +9,14 @@ export type Value = | { type: 'dict'; value: Dict } | { type: 'regex'; value: RegExp } | { - type: 'function' - params: string[] - defaults: Record // indices into constants - body: number - parentScope: Scope - variadic: boolean - named: boolean - value: '' + type: 'function' + params: string[] + defaults: Record // indices into constants + body: number + parentScope: Scope + variadic: boolean + named: boolean + value: '' } export type Dict = Map