(def: array, ctx: BaseParseContext)
| 190 | : validateObjectLiteral<def, $, args> |
| 191 | |
| 192 | export const parseTuple = (def: array, ctx: BaseParseContext): BaseRoot => |
| 193 | maybeParseTupleExpression(def, ctx) ?? parseTupleLiteral(def, ctx) |
| 194 | |
| 195 | export type validateTuple<def extends array, $, args> = |
| 196 | maybeValidateTupleExpression<def, $, args> extends infer result ? |
no test coverage detected
searching dependent graphs…