typia 7.0.0-dev.20240922 → 7.0.0-dev.20240924

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,13 +41,13 @@ export namespace MiscLiteralsProgrammer {
41
41
  if (result.success === false)
42
42
  throw TransformerError.from(`typia.misc.literals`)(result.errors);
43
43
 
44
- const meta: Metadata = result.data;
44
+ const metadata: Metadata = result.data;
45
45
  const values: Set<Atomic.Type | null> = new Set([
46
- ...meta.constants.map((c) => c.values.map((v) => v.value)).flat(),
47
- ...(meta.atomics.filter((a) => a.type === "boolean").length
46
+ ...metadata.constants.map((c) => c.values.map((v) => v.value)).flat(),
47
+ ...(metadata.atomics.filter((a) => a.type === "boolean").length
48
48
  ? [true, false]
49
49
  : []),
50
- ...(meta.nullable ? [null] : []),
50
+ ...(metadata.nullable ? [null] : []),
51
51
  ]);
52
52
  return ts.factory.createAsExpression(
53
53
  ts.factory.createArrayLiteralExpression(