-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exact comment tracing on interface type.
TypeScript v5.2 supports a new function `getJSDocCommentsAndTags()` that listing up every JsDoc comments and tags at once. Therefore, evolved `typia` to use `Symbol.getDocumentationComment()` in legavy TypeScript version, and adapted the `getJSDocCommentsAndTags()` function in the latest version.
- Loading branch information
Showing
620 changed files
with
1,531 additions
and
1,623 deletions.
There are no files selected for viewing
3 changes: 1 addition & 2 deletions
3
...ams/assert-error/class-validator/benchmark-assert-error-class-validator-ArrayRecursive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
5 changes: 3 additions & 2 deletions
5
...ror/class-validator/benchmark-assert-error-class-validator-ArrayRecursiveUnionExplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
); |
5 changes: 3 additions & 2 deletions
5
...ror/class-validator/benchmark-assert-error-class-validator-ArrayRecursiveUnionImplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
); |
5 changes: 3 additions & 2 deletions
5
...assert-error/class-validator/benchmark-assert-error-class-validator-ObjectHierarchical.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
); |
3 changes: 1 addition & 2 deletions
3
...ms/assert-error/class-validator/benchmark-assert-error-class-validator-ObjectRecursive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...grams/assert-error/class-validator/benchmark-assert-error-class-validator-ObjectSimple.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
5 changes: 3 additions & 2 deletions
5
...ssert-error/class-validator/benchmark-assert-error-class-validator-ObjectUnionExplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
); |
5 changes: 3 additions & 2 deletions
5
...ssert-error/class-validator/benchmark-assert-error-class-validator-ObjectUnionImplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/io-ts/benchmark-assert-error-io-ts-ArrayRecursive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...k/programs/assert-error/io-ts/benchmark-assert-error-io-ts-ArrayRecursiveUnionExplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...k/programs/assert-error/io-ts/benchmark-assert-error-io-ts-ArrayRecursiveUnionImplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/io-ts/benchmark-assert-error-io-ts-ObjectHierarchical.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/io-ts/benchmark-assert-error-io-ts-ObjectRecursive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/io-ts/benchmark-assert-error-io-ts-ObjectSimple.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/io-ts/benchmark-assert-error-io-ts-ObjectUnionExplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/io-ts/benchmark-assert-error-io-ts-ObjectUnionImplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/io-ts/benchmark-assert-error-io-ts-UltimateUnion.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/typebox/benchmark-assert-error-typebox-ArrayRecursive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...ograms/assert-error/typebox/benchmark-assert-error-typebox-ArrayRecursiveUnionExplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...ograms/assert-error/typebox/benchmark-assert-error-typebox-ArrayRecursiveUnionImplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/typebox/benchmark-assert-error-typebox-ObjectHierarchical.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/typebox/benchmark-assert-error-typebox-ObjectRecursive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/typebox/benchmark-assert-error-typebox-ObjectSimple.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...hmark/programs/assert-error/typebox/benchmark-assert-error-typebox-ObjectUnionExplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...hmark/programs/assert-error/typebox/benchmark-assert-error-typebox-ObjectUnionImplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/typebox/benchmark-assert-error-typebox-UltimateUnion.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/zod/benchmark-assert-error-zod-ArrayRecursive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...hmark/programs/assert-error/zod/benchmark-assert-error-zod-ArrayRecursiveUnionExplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
...hmark/programs/assert-error/zod/benchmark-assert-error-zod-ArrayRecursiveUnionImplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/zod/benchmark-assert-error-zod-ObjectHierarchical.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/zod/benchmark-assert-error-zod-ObjectRecursive.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/zod/benchmark-assert-error-zod-ObjectSimple.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/zod/benchmark-assert-error-zod-ObjectUnionExplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/zod/benchmark-assert-error-zod-ObjectUnionImplicit.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import { ZodObjectUnionImplicit } from "../../../structures/zod/ZodObjectUnionImplicit"; | ||
|
||
import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram"; | ||
|
||
createAssertErrorZodBenchmarkProgram(ZodObjectUnionImplicit); | ||
createAssertErrorZodBenchmarkProgram(ZodObjectUnionImplicit); |
3 changes: 1 addition & 2 deletions
3
benchmark/programs/assert-error/zod/benchmark-assert-error-zod-UltimateUnion.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import { ZodUltimateUnion } from "../../../structures/zod/ZodUltimateUnion"; | ||
|
||
import { createAssertErrorZodBenchmarkProgram } from "./createAssertErrorZodBenchmarkProgram"; | ||
|
||
createAssertErrorZodBenchmarkProgram(ZodUltimateUnion); | ||
createAssertErrorZodBenchmarkProgram(ZodUltimateUnion); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.