Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #695 - support recursive intersection type #699

Merged
merged 2 commits into from
Jun 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ When the same error occurs even in the `@next` version, then please fill the bel
### 📝 Summary
Write a short summary of the bug in here.

- **Typia Version**: 4.1.1
- **Typia Version**: 4.1.2
- **Expected behavior**:
- **Actual behavior**:

Expand All @@ -34,7 +34,7 @@ Visit above playground and write code occuring the bug.
After that, copy and paste link address of that.

> #### Example Link
> https://typia.io/playground?script=JYWwDg9gTgLgBDAnmYBDOAzKERwERIqp4DcAUGcAHYwCmUGqAxrXAJICytIARvXAG8ycEXAD0AKglxhouNIACGaCFTwAruuAATGXPli9onQC44AZxhRqAc3KyRk6Q5GLlUVfG6pgAGyOiEoYu3n5mltZUdhRyTi7ycAqErFo08Yog1KDquABMAAzpibQAHky+6ubAAG60HKgl2bgAjPmF+kEuqDa0ZlQ5fFDkcmCoULQ0Zpzcg3AAPnD9vr7DokwAFn7a41RTXLz0ANoAuuQAvhRiYgC0t9dkV+wAyg83d2SEaAB0TONqtGxzAAeaYHKAAPgAFABKexXO73R4AUQAigBVACCABkXvD3p9UD8-nQkQBHdSoXzA0GDKGwy5vW6vOAAJQxADkACIAeQ4rwRH2Q31+tH+LNQVG0OBB+1pMLhjMRhgxTyeSJZABVrk8NSy2OyAOJsABiAE1+fihYSRf8MeZzPQYE8rLZgBhEDKZvQ6QqBY8AFJPbnsuBPADCAAkkRwMRamQSvqgwGBfMAmGpgBAqEDDjT6McADT4VAAK2qeB9ZCAA
> https://typia.io/playground/?script=JYWwDg9gTgLgBDAnmYBDOAzKERwERIqp4DcAUGcAHYwCmUGqAxrXAJICytIARvXAG8ycEXAD0AKglxhouNIACGaCFTwAruuAATGXPli9onQC44AZxhRqAc3KyRk6Q5GLlUVfG6pgAGyOiEoYu3n5mltZUdhRyTi7ycAqErFo08Yog1KDquABMAAzpibQAHky+6ubAAG60HKgl2bgAjPmF+kEuqDa0ZlQ5fFDkcmCoULQ0Zpzcg3AAPnD9vr7DokwAFn7a41RTXLz0ANoAuuQAvhRiYgC0t9dkV+wAyg83d2SEaAB0TONqtGxzAAeaYHKAAPgAFABKchAA



Expand Down
7 changes: 4 additions & 3 deletions .github/ISSUE_TEMPLATE/QUESTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ about: What do you want to know?
---

## Question
I always welcome any questions about this backend proejct. However, half of questions can be solved by traveling [README.md](https://github.com/samchon/typia) or old [issues](https://github.com/samchon/typia/search?type=issues). Therefore, I recommend you to visit them before. If you have a question that has not been treated and you're extremely urgently, just contact me.
I always welcome any questions about this backend project.

- E-mail: [email protected]
- Mobile: 82-10-3627-0016
However, half of questions can be solved by traveling [README.md](https://github.com/samchon/typia) or old [issues](https://github.com/samchon/typia/search?type=issues).

Therefore, I recommend you to visit them before. If you have a question that has not been treated and you're extremely urgently, just contact me.
4 changes: 3 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ If you created a new created a new feature, then create the unit test function,
# COMPILE
npm run build

# PREPARE
# RE-WRITE TEST PROGRAMS IF REQUIRED
npm run test:template

# BUILD TEST PROGRAM
npm run build:test

# DO TEST
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ClassValidatorArrayRecursive } from "../../../structures/class-validator/ClassValidatorArrayRecursive";

import { createAssertErrorClassValidatorBenchmarkProgram } from "./createAssertErrorClassValidatorBenchmarkProgram";

createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorArrayRecursive);
createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorArrayRecursive);
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { ClassValidatorArrayRecursiveUnionExplicit } from "../../../structures/class-validator/ClassValidatorArrayRecursiveUnionExplicit";

import { createAssertErrorClassValidatorBenchmarkProgram } from "./createAssertErrorClassValidatorBenchmarkProgram";

createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorArrayRecursiveUnionExplicit);
createAssertErrorClassValidatorBenchmarkProgram(
ClassValidatorArrayRecursiveUnionExplicit,
);
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { ClassValidatorArrayRecursiveUnionImplicit } from "../../../structures/class-validator/ClassValidatorArrayRecursiveUnionImplicit";

import { createAssertErrorClassValidatorBenchmarkProgram } from "./createAssertErrorClassValidatorBenchmarkProgram";

createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorArrayRecursiveUnionImplicit);
createAssertErrorClassValidatorBenchmarkProgram(
ClassValidatorArrayRecursiveUnionImplicit,
);
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { ClassValidatorObjectHierarchical } from "../../../structures/class-validator/ClassValidatorObjectHierarchical";

import { createAssertErrorClassValidatorBenchmarkProgram } from "./createAssertErrorClassValidatorBenchmarkProgram";

createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorObjectHierarchical);
createAssertErrorClassValidatorBenchmarkProgram(
ClassValidatorObjectHierarchical,
);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ClassValidatorObjectRecursive } from "../../../structures/class-validator/ClassValidatorObjectRecursive";

import { createAssertErrorClassValidatorBenchmarkProgram } from "./createAssertErrorClassValidatorBenchmarkProgram";

createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorObjectRecursive);
createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorObjectRecursive);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ClassValidatorObjectSimple } from "../../../structures/class-validator/ClassValidatorObjectSimple";

import { createAssertErrorClassValidatorBenchmarkProgram } from "./createAssertErrorClassValidatorBenchmarkProgram";

createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorObjectSimple);
createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorObjectSimple);
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { ClassValidatorObjectUnionExplicit } from "../../../structures/class-validator/ClassValidatorObjectUnionExplicit";

import { createAssertErrorClassValidatorBenchmarkProgram } from "./createAssertErrorClassValidatorBenchmarkProgram";

createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorObjectUnionExplicit);
createAssertErrorClassValidatorBenchmarkProgram(
ClassValidatorObjectUnionExplicit,
);
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { ClassValidatorObjectUnionImplicit } from "../../../structures/class-validator/ClassValidatorObjectUnionImplicit";

import { createAssertErrorClassValidatorBenchmarkProgram } from "./createAssertErrorClassValidatorBenchmarkProgram";

createAssertErrorClassValidatorBenchmarkProgram(ClassValidatorObjectUnionImplicit);
createAssertErrorClassValidatorBenchmarkProgram(
ClassValidatorObjectUnionImplicit,
);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsArrayRecursive } from "../../../structures/io-ts/IoTsArrayRecursive";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsArrayRecursive);
createAssertErrorIoTsBenchmarkProgram(IoTsArrayRecursive);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsArrayRecursiveUnionExplicit } from "../../../structures/io-ts/IoTsArrayRecursiveUnionExplicit";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsArrayRecursiveUnionExplicit);
createAssertErrorIoTsBenchmarkProgram(IoTsArrayRecursiveUnionExplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsArrayRecursiveUnionImplicit } from "../../../structures/io-ts/IoTsArrayRecursiveUnionImplicit";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsArrayRecursiveUnionImplicit);
createAssertErrorIoTsBenchmarkProgram(IoTsArrayRecursiveUnionImplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsObjectHierarchical } from "../../../structures/io-ts/IoTsObjectHierarchical";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsObjectHierarchical);
createAssertErrorIoTsBenchmarkProgram(IoTsObjectHierarchical);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsObjectRecursive } from "../../../structures/io-ts/IoTsObjectRecursive";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsObjectRecursive);
createAssertErrorIoTsBenchmarkProgram(IoTsObjectRecursive);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsObjectSimple } from "../../../structures/io-ts/IoTsObjectSimple";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsObjectSimple);
createAssertErrorIoTsBenchmarkProgram(IoTsObjectSimple);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsObjectUnionExplicit } from "../../../structures/io-ts/IoTsObjectUnionExplicit";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsObjectUnionExplicit);
createAssertErrorIoTsBenchmarkProgram(IoTsObjectUnionExplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsObjectUnionImplicit } from "../../../structures/io-ts/IoTsObjectUnionImplicit";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsObjectUnionImplicit);
createAssertErrorIoTsBenchmarkProgram(IoTsObjectUnionImplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IoTsUltimateUnion } from "../../../structures/io-ts/IoTsUltimateUnion";

import { createAssertErrorIoTsBenchmarkProgram } from "./createAssertErrorIoTsBenchmarkProgram";

createAssertErrorIoTsBenchmarkProgram(IoTsUltimateUnion);
createAssertErrorIoTsBenchmarkProgram(IoTsUltimateUnion);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxArrayRecursive } from "../../../structures/typebox/TypeboxArrayRecursive";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxArrayRecursive);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxArrayRecursive);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxArrayRecursiveUnionExplicit } from "../../../structures/typebox/TypeboxArrayRecursiveUnionExplicit";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxArrayRecursiveUnionExplicit);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxArrayRecursiveUnionExplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxArrayRecursiveUnionImplicit } from "../../../structures/typebox/TypeboxArrayRecursiveUnionImplicit";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxArrayRecursiveUnionImplicit);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxArrayRecursiveUnionImplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxObjectHierarchical } from "../../../structures/typebox/TypeboxObjectHierarchical";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectHierarchical);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectHierarchical);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxObjectRecursive } from "../../../structures/typebox/TypeboxObjectRecursive";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectRecursive);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectRecursive);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxObjectSimple } from "../../../structures/typebox/TypeboxObjectSimple";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectSimple);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectSimple);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxObjectUnionExplicit } from "../../../structures/typebox/TypeboxObjectUnionExplicit";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectUnionExplicit);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectUnionExplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxObjectUnionImplicit } from "../../../structures/typebox/TypeboxObjectUnionImplicit";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectUnionImplicit);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxObjectUnionImplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { __TypeboxUltimateUnion } from "../../../structures/typebox/TypeboxUltimateUnion";

import { createAssertErrorTypeboxBenchmarkProgram } from "./createAssertErrorTypeboxBenchmarkProgram";

createAssertErrorTypeboxBenchmarkProgram(__TypeboxUltimateUnion);
createAssertErrorTypeboxBenchmarkProgram(__TypeboxUltimateUnion);
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ import typia from "typia";
import { ArrayRecursive } from "../../../../test/structures/ArrayRecursive";
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<ArrayRecursive[]>()
);
createAssertErrorBenchmarkProgram(typia.createAssert<ArrayRecursive[]>());
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import { ArrayRecursiveUnionExplicit } from "../../../../test/structures/ArrayRe
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<ArrayRecursiveUnionExplicit[]>()
);
typia.createAssert<ArrayRecursiveUnionExplicit[]>(),
);
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import { ArrayRecursiveUnionImplicit } from "../../../../test/structures/ArrayRe
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<ArrayRecursiveUnionImplicit[]>()
);
typia.createAssert<ArrayRecursiveUnionImplicit[]>(),
);
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ import typia from "typia";
import { ObjectHierarchical } from "../../../../test/structures/ObjectHierarchical";
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<ObjectHierarchical[]>()
);
createAssertErrorBenchmarkProgram(typia.createAssert<ObjectHierarchical[]>());
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ import typia from "typia";
import { ObjectRecursive } from "../../../../test/structures/ObjectRecursive";
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<ObjectRecursive[]>()
);
createAssertErrorBenchmarkProgram(typia.createAssert<ObjectRecursive[]>());
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ import typia from "typia";
import { ObjectSimple } from "../../../../test/structures/ObjectSimple";
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<ObjectSimple[]>()
);
createAssertErrorBenchmarkProgram(typia.createAssert<ObjectSimple[]>());
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ import typia from "typia";
import { ObjectUnionExplicit } from "../../../../test/structures/ObjectUnionExplicit";
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<ObjectUnionExplicit[]>()
);
createAssertErrorBenchmarkProgram(typia.createAssert<ObjectUnionExplicit[]>());
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ import typia from "typia";
import { ObjectUnionImplicit } from "../../../../test/structures/ObjectUnionImplicit";
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<ObjectUnionImplicit[]>()
);
createAssertErrorBenchmarkProgram(typia.createAssert<ObjectUnionImplicit[]>());
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ import typia from "typia";
import { UltimateUnion } from "../../../../test/structures/UltimateUnion";
import { createAssertErrorBenchmarkProgram } from "../createAssertErrorBenchmarkProgram";

createAssertErrorBenchmarkProgram(
typia.createAssert<UltimateUnion[]>()
);
createAssertErrorBenchmarkProgram(typia.createAssert<UltimateUnion[]>());
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ZodArrayRecursive } from "../../../structures/zod/ZodArrayRecursive";

import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram";

createAssertErrorZodBenchmarkProgram(ZodArrayRecursive);
createAssertErrorZodBenchmarkProgram(ZodArrayRecursive);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ZodArrayRecursiveUnionExplicit } from "../../../structures/zod/ZodArrayRecursiveUnionExplicit";

import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram";

createAssertErrorZodBenchmarkProgram(ZodArrayRecursiveUnionExplicit);
createAssertErrorZodBenchmarkProgram(ZodArrayRecursiveUnionExplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ZodArrayRecursiveUnionImplicit } from "../../../structures/zod/ZodArrayRecursiveUnionImplicit";

import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram";

createAssertErrorZodBenchmarkProgram(ZodArrayRecursiveUnionImplicit);
createAssertErrorZodBenchmarkProgram(ZodArrayRecursiveUnionImplicit);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ZodObjectHierarchical } from "../../../structures/zod/ZodObjectHierarchical";

import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram";

createAssertErrorZodBenchmarkProgram(ZodObjectHierarchical);
createAssertErrorZodBenchmarkProgram(ZodObjectHierarchical);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ZodObjectRecursive } from "../../../structures/zod/ZodObjectRecursive";

import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram";

createAssertErrorZodBenchmarkProgram(ZodObjectRecursive);
createAssertErrorZodBenchmarkProgram(ZodObjectRecursive);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ZodObjectSimple } from "../../../structures/zod/ZodObjectSimple";

import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram";

createAssertErrorZodBenchmarkProgram(ZodObjectSimple);
createAssertErrorZodBenchmarkProgram(ZodObjectSimple);
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { ZodObjectUnionExplicit } from "../../../structures/zod/ZodObjectUnionExplicit";

import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram";

createAssertErrorZodBenchmarkProgram(ZodObjectUnionExplicit);
createAssertErrorZodBenchmarkProgram(ZodObjectUnionExplicit);
Loading