typia 5.2.2 → 5.2.3
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.
- package/lib/Primitive.d.ts +1 -1
- package/lib/executable/setup/CommandExecutor.js +2 -2
- package/lib/executable/setup/CommandExecutor.js.map +1 -1
- package/package.json +1 -2
- package/src/CamelCase.ts +116 -116
- package/src/PascalCase.ts +116 -116
- package/src/Primitive.ts +135 -135
- package/src/Resolved.ts +116 -116
- package/src/SnakeCase.ts +156 -156
- package/src/executable/TypiaSetupWizard.ts +142 -142
- package/src/executable/setup/CommandExecutor.ts +2 -2
- package/src/factories/JsonMetadataFactory.ts +50 -50
- package/src/factories/MetadataCollection.ts +282 -282
- package/src/functional/$convention.ts +40 -40
- package/src/functional/Namespace.ts +164 -164
- package/src/module.ts +662 -662
- package/src/notations.ts +855 -855
- package/src/programmers/helpers/AtomicPredicator.ts +31 -31
- package/src/programmers/helpers/NotationJoiner.ts +146 -146
- package/src/programmers/misc/MiscCloneProgrammer.ts +790 -790
- package/src/programmers/misc/MiscPruneProgrammer.ts +552 -552
- package/src/programmers/notations/NotationAssertGeneralProgrammer.ts +72 -72
- package/src/programmers/notations/NotationGeneralProgrammer.ts +720 -720
- package/src/programmers/notations/NotationIsGeneralProgrammer.ts +79 -79
- package/src/programmers/notations/NotationValidateGeneralProgrammer.ts +88 -88
- package/src/transformers/CallExpressionTransformer.ts +380 -380
- package/src/transformers/features/json/JsonAssertParseTransformer.ts +10 -10
- package/src/transformers/features/json/JsonAssertStringifyTransformer.ts +10 -10
- package/src/transformers/features/json/JsonCreateAssertParseTransformer.ts +12 -12
- package/src/transformers/features/json/JsonCreateAssertStringifyTransformer.ts +12 -12
- package/src/transformers/features/json/JsonCreateIsParseTransformer.ts +9 -9
- package/src/transformers/features/json/JsonCreateIsStringifyTransformer.ts +12 -12
- package/src/transformers/features/json/JsonCreateStringifyTransformer.ts +9 -9
- package/src/transformers/features/json/JsonCreateValidateParseTransformer.ts +12 -12
- package/src/transformers/features/json/JsonCreateValidateStringifyProgrammer.ts +12 -12
- package/src/transformers/features/json/JsonIsParseTransformer.ts +9 -9
- package/src/transformers/features/json/JsonIsStringifyTransformer.ts +10 -10
- package/src/transformers/features/json/JsonStringifyTransformer.ts +9 -9
- package/src/transformers/features/json/JsonValidateParseTransformer.ts +10 -10
- package/src/transformers/features/json/JsonValidateStringifyTransformer.ts +10 -10
- package/src/transformers/features/misc/MiscAssertCloneTransformer.ts +10 -10
- package/src/transformers/features/misc/MiscAssertPruneTransformer.ts +10 -10
- package/src/transformers/features/misc/MiscCloneTransformer.ts +9 -9
- package/src/transformers/features/misc/MiscCreateAssertCloneTransformer.ts +12 -12
- package/src/transformers/features/misc/MiscCreateAssertPruneTransformer.ts +12 -12
- package/src/transformers/features/misc/MiscCreateCloneTransformer.ts +9 -9
- package/src/transformers/features/misc/MiscCreateIsCloneTransformer.ts +9 -9
- package/src/transformers/features/misc/MiscCreateIsPruneTransformer.ts +9 -9
- package/src/transformers/features/misc/MiscCreatePruneTransformer.ts +9 -9
- package/src/transformers/features/misc/MiscCreateValidateCloneTransformer.ts +12 -12
- package/src/transformers/features/misc/MiscCreateValidatePruneTransformer.ts +12 -12
- package/src/transformers/features/misc/MiscIsCloneTransformer.ts +9 -9
- package/src/transformers/features/misc/MiscIsPruneTransformer.ts +9 -9
- package/src/transformers/features/misc/MiscPruneTransformer.ts +9 -9
- package/src/transformers/features/misc/MiscValidateCloneTransformer.ts +10 -10
- package/src/transformers/features/misc/MiscValidatePruneTransformer.ts +10 -10
- package/src/transformers/features/notations/NotationAssertGeneralTransformer.ts +15 -15
- package/src/transformers/features/notations/NotationCreateAssertGeneralTransformer.ts +15 -15
- package/src/transformers/features/notations/NotationCreateGeneralTransformer.ts +15 -15
- package/src/transformers/features/notations/NotationCreateIsGeneralTransformer.ts +15 -15
- package/src/transformers/features/notations/NotationCreateValidateGeneralTransformer.ts +17 -17
- package/src/transformers/features/notations/NotationGeneralTransformer.ts +11 -11
- package/src/transformers/features/notations/NotationIsGeneralTransformer.ts +15 -15
- package/src/transformers/features/notations/NotationValidateGeneralTransformer.ts +17 -17
- package/src/transformers/features/protobuf/ProtobufCreateAssertDecodeTransformer.ts +12 -12
- package/src/transformers/features/protobuf/ProtobufCreateAssertEncodeTransformer.ts +12 -12
- package/src/transformers/features/protobuf/ProtobufCreateDecodeTransformer.ts +9 -9
- package/src/transformers/features/protobuf/ProtobufCreateEncodeTransformer.ts +9 -9
- package/src/transformers/features/protobuf/ProtobufCreateIsDecodeTransformer.ts +12 -12
- package/src/transformers/features/protobuf/ProtobufCreateIsEncodeTransformer.ts +12 -12
- package/src/transformers/features/protobuf/ProtobufCreateValidateDecodeTransformer.ts +12 -12
- package/src/transformers/features/protobuf/ProtobufCreateValidateEncodeTransformer.ts +12 -12
- package/src/utils/NamingConvention.ts +91 -91
- package/src/utils/StringUtil.ts +4 -4
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { MiscValidateCloneProgrammer } from "../../../programmers/misc/MiscValidateCloneProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace MiscValidateCloneTransformer {
|
|
6
|
-
export const transform = GenericTransformer.scalar("misc.validatClone")(
|
|
7
|
-
(project) => (modulo) =>
|
|
8
|
-
MiscValidateCloneProgrammer.write(project)(modulo),
|
|
9
|
-
);
|
|
10
|
-
}
|
|
1
|
+
import { MiscValidateCloneProgrammer } from "../../../programmers/misc/MiscValidateCloneProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace MiscValidateCloneTransformer {
|
|
6
|
+
export const transform = GenericTransformer.scalar("misc.validatClone")(
|
|
7
|
+
(project) => (modulo) =>
|
|
8
|
+
MiscValidateCloneProgrammer.write(project)(modulo),
|
|
9
|
+
);
|
|
10
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { MiscValidatePruneProgrammer } from "../../../programmers/misc/MiscValidatePruneProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace MiscValidatePruneTransformer {
|
|
6
|
-
export const transform = GenericTransformer.scalar("misc.validatPrune")(
|
|
7
|
-
(project) => (modulo) =>
|
|
8
|
-
MiscValidatePruneProgrammer.write(project)(modulo),
|
|
9
|
-
);
|
|
10
|
-
}
|
|
1
|
+
import { MiscValidatePruneProgrammer } from "../../../programmers/misc/MiscValidatePruneProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace MiscValidatePruneTransformer {
|
|
6
|
+
export const transform = GenericTransformer.scalar("misc.validatPrune")(
|
|
7
|
+
(project) => (modulo) =>
|
|
8
|
+
MiscValidatePruneProgrammer.write(project)(modulo),
|
|
9
|
+
);
|
|
10
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { NotationAssertGeneralProgrammer } from "../../../programmers/notations/NotationAssertGeneralProgrammer";
|
|
2
|
-
|
|
3
|
-
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
-
|
|
5
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
-
|
|
7
|
-
export namespace NotationAssertGeneralTransformer {
|
|
8
|
-
export const transform = (rename: (str: string) => string) =>
|
|
9
|
-
GenericTransformer.scalar(
|
|
10
|
-
`notations.assert${StringUtil.capitalize(rename.name)}`,
|
|
11
|
-
)(
|
|
12
|
-
(project) => (modulo) =>
|
|
13
|
-
NotationAssertGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
-
);
|
|
15
|
-
}
|
|
1
|
+
import { NotationAssertGeneralProgrammer } from "../../../programmers/notations/NotationAssertGeneralProgrammer";
|
|
2
|
+
|
|
3
|
+
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
+
|
|
5
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
+
|
|
7
|
+
export namespace NotationAssertGeneralTransformer {
|
|
8
|
+
export const transform = (rename: (str: string) => string) =>
|
|
9
|
+
GenericTransformer.scalar(
|
|
10
|
+
`notations.assert${StringUtil.capitalize(rename.name)}`,
|
|
11
|
+
)(
|
|
12
|
+
(project) => (modulo) =>
|
|
13
|
+
NotationAssertGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
+
);
|
|
15
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { NotationAssertGeneralProgrammer } from "../../../programmers/notations/NotationAssertGeneralProgrammer";
|
|
2
|
-
|
|
3
|
-
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
-
|
|
5
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
-
|
|
7
|
-
export namespace NotationCreateAssertGeneralTransformer {
|
|
8
|
-
export const transform = (rename: (str: string) => string) =>
|
|
9
|
-
GenericTransformer.factory(
|
|
10
|
-
`notations.createAssert${StringUtil.capitalize(rename.name)}`,
|
|
11
|
-
)(
|
|
12
|
-
(project) => (modulo) =>
|
|
13
|
-
NotationAssertGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
-
);
|
|
15
|
-
}
|
|
1
|
+
import { NotationAssertGeneralProgrammer } from "../../../programmers/notations/NotationAssertGeneralProgrammer";
|
|
2
|
+
|
|
3
|
+
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
+
|
|
5
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
+
|
|
7
|
+
export namespace NotationCreateAssertGeneralTransformer {
|
|
8
|
+
export const transform = (rename: (str: string) => string) =>
|
|
9
|
+
GenericTransformer.factory(
|
|
10
|
+
`notations.createAssert${StringUtil.capitalize(rename.name)}`,
|
|
11
|
+
)(
|
|
12
|
+
(project) => (modulo) =>
|
|
13
|
+
NotationAssertGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
+
);
|
|
15
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { NotationGeneralProgrammer } from "../../../programmers/notations/NotationGeneralProgrammer";
|
|
2
|
-
|
|
3
|
-
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
-
|
|
5
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
-
|
|
7
|
-
export namespace NotationCreateGeneralTransformer {
|
|
8
|
-
export const transform = (rename: (str: string) => string) =>
|
|
9
|
-
GenericTransformer.factory(
|
|
10
|
-
`notations.create${StringUtil.capitalize(rename.name)}`,
|
|
11
|
-
)(
|
|
12
|
-
(project) => (modulo) =>
|
|
13
|
-
NotationGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
-
);
|
|
15
|
-
}
|
|
1
|
+
import { NotationGeneralProgrammer } from "../../../programmers/notations/NotationGeneralProgrammer";
|
|
2
|
+
|
|
3
|
+
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
+
|
|
5
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
+
|
|
7
|
+
export namespace NotationCreateGeneralTransformer {
|
|
8
|
+
export const transform = (rename: (str: string) => string) =>
|
|
9
|
+
GenericTransformer.factory(
|
|
10
|
+
`notations.create${StringUtil.capitalize(rename.name)}`,
|
|
11
|
+
)(
|
|
12
|
+
(project) => (modulo) =>
|
|
13
|
+
NotationGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
+
);
|
|
15
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { NotationIsGeneralProgrammer } from "../../../programmers/notations/NotationIsGeneralProgrammer";
|
|
2
|
-
|
|
3
|
-
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
-
|
|
5
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
-
|
|
7
|
-
export namespace NotationCreateIsGeneralTransformer {
|
|
8
|
-
export const transform = (rename: (str: string) => string) =>
|
|
9
|
-
GenericTransformer.factory(
|
|
10
|
-
`notations.createIs${StringUtil.capitalize(rename.name)}`,
|
|
11
|
-
)(
|
|
12
|
-
(project) => (modulo) =>
|
|
13
|
-
NotationIsGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
-
);
|
|
15
|
-
}
|
|
1
|
+
import { NotationIsGeneralProgrammer } from "../../../programmers/notations/NotationIsGeneralProgrammer";
|
|
2
|
+
|
|
3
|
+
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
+
|
|
5
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
+
|
|
7
|
+
export namespace NotationCreateIsGeneralTransformer {
|
|
8
|
+
export const transform = (rename: (str: string) => string) =>
|
|
9
|
+
GenericTransformer.factory(
|
|
10
|
+
`notations.createIs${StringUtil.capitalize(rename.name)}`,
|
|
11
|
+
)(
|
|
12
|
+
(project) => (modulo) =>
|
|
13
|
+
NotationIsGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
+
);
|
|
15
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { NotationValidateGeneralProgrammer } from "../../../programmers/notations/NotationValidateGeneralProgrammer";
|
|
2
|
-
|
|
3
|
-
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
-
|
|
5
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
-
|
|
7
|
-
export namespace NotationCreateValidateGeneralTransformer {
|
|
8
|
-
export const transform = (rename: (str: string) => string) =>
|
|
9
|
-
GenericTransformer.factory(
|
|
10
|
-
`notations.createValidate${StringUtil.capitalize(rename.name)}`,
|
|
11
|
-
)(
|
|
12
|
-
(project) => (modulo) =>
|
|
13
|
-
NotationValidateGeneralProgrammer.write(rename)(project)(
|
|
14
|
-
modulo,
|
|
15
|
-
),
|
|
16
|
-
);
|
|
17
|
-
}
|
|
1
|
+
import { NotationValidateGeneralProgrammer } from "../../../programmers/notations/NotationValidateGeneralProgrammer";
|
|
2
|
+
|
|
3
|
+
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
+
|
|
5
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
+
|
|
7
|
+
export namespace NotationCreateValidateGeneralTransformer {
|
|
8
|
+
export const transform = (rename: (str: string) => string) =>
|
|
9
|
+
GenericTransformer.factory(
|
|
10
|
+
`notations.createValidate${StringUtil.capitalize(rename.name)}`,
|
|
11
|
+
)(
|
|
12
|
+
(project) => (modulo) =>
|
|
13
|
+
NotationValidateGeneralProgrammer.write(rename)(project)(
|
|
14
|
+
modulo,
|
|
15
|
+
),
|
|
16
|
+
);
|
|
17
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { NotationGeneralProgrammer } from "../../../programmers/notations/NotationGeneralProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace NotationGeneralTransformer {
|
|
6
|
-
export const transform = (rename: (str: string) => string) =>
|
|
7
|
-
GenericTransformer.scalar(`notations.${rename.name}`)(
|
|
8
|
-
(project) => (modulo) =>
|
|
9
|
-
NotationGeneralProgrammer.write(rename)(project)(modulo),
|
|
10
|
-
);
|
|
11
|
-
}
|
|
1
|
+
import { NotationGeneralProgrammer } from "../../../programmers/notations/NotationGeneralProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace NotationGeneralTransformer {
|
|
6
|
+
export const transform = (rename: (str: string) => string) =>
|
|
7
|
+
GenericTransformer.scalar(`notations.${rename.name}`)(
|
|
8
|
+
(project) => (modulo) =>
|
|
9
|
+
NotationGeneralProgrammer.write(rename)(project)(modulo),
|
|
10
|
+
);
|
|
11
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { NotationIsGeneralProgrammer } from "../../../programmers/notations/NotationIsGeneralProgrammer";
|
|
2
|
-
|
|
3
|
-
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
-
|
|
5
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
-
|
|
7
|
-
export namespace NotationIsGeneralTransformer {
|
|
8
|
-
export const transform = (rename: (str: string) => string) =>
|
|
9
|
-
GenericTransformer.scalar(
|
|
10
|
-
`notations.is${StringUtil.capitalize(rename.name)}`,
|
|
11
|
-
)(
|
|
12
|
-
(project) => (modulo) =>
|
|
13
|
-
NotationIsGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
-
);
|
|
15
|
-
}
|
|
1
|
+
import { NotationIsGeneralProgrammer } from "../../../programmers/notations/NotationIsGeneralProgrammer";
|
|
2
|
+
|
|
3
|
+
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
+
|
|
5
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
+
|
|
7
|
+
export namespace NotationIsGeneralTransformer {
|
|
8
|
+
export const transform = (rename: (str: string) => string) =>
|
|
9
|
+
GenericTransformer.scalar(
|
|
10
|
+
`notations.is${StringUtil.capitalize(rename.name)}`,
|
|
11
|
+
)(
|
|
12
|
+
(project) => (modulo) =>
|
|
13
|
+
NotationIsGeneralProgrammer.write(rename)(project)(modulo),
|
|
14
|
+
);
|
|
15
|
+
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { NotationValidateGeneralProgrammer } from "../../../programmers/notations/NotationValidateGeneralProgrammer";
|
|
2
|
-
|
|
3
|
-
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
-
|
|
5
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
-
|
|
7
|
-
export namespace NotationValidateGeneralTransformer {
|
|
8
|
-
export const transform = (rename: (str: string) => string) =>
|
|
9
|
-
GenericTransformer.scalar(
|
|
10
|
-
`notations.validate${StringUtil.capitalize(rename.name)}`,
|
|
11
|
-
)(
|
|
12
|
-
(project) => (modulo) =>
|
|
13
|
-
NotationValidateGeneralProgrammer.write(rename)(project)(
|
|
14
|
-
modulo,
|
|
15
|
-
),
|
|
16
|
-
);
|
|
17
|
-
}
|
|
1
|
+
import { NotationValidateGeneralProgrammer } from "../../../programmers/notations/NotationValidateGeneralProgrammer";
|
|
2
|
+
|
|
3
|
+
import { StringUtil } from "../../../utils/StringUtil";
|
|
4
|
+
|
|
5
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
6
|
+
|
|
7
|
+
export namespace NotationValidateGeneralTransformer {
|
|
8
|
+
export const transform = (rename: (str: string) => string) =>
|
|
9
|
+
GenericTransformer.scalar(
|
|
10
|
+
`notations.validate${StringUtil.capitalize(rename.name)}`,
|
|
11
|
+
)(
|
|
12
|
+
(project) => (modulo) =>
|
|
13
|
+
NotationValidateGeneralProgrammer.write(rename)(project)(
|
|
14
|
+
modulo,
|
|
15
|
+
),
|
|
16
|
+
);
|
|
17
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ProtobufAssertDecodeProgrammer } from "../../../programmers/protobuf/ProtobufAssertDecodeProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace ProtobufCreateAssertDecodeTransformer {
|
|
6
|
-
export const transform = GenericTransformer.factory(
|
|
7
|
-
"protobuf.createAssertDecode",
|
|
8
|
-
)(
|
|
9
|
-
(project) => (modulo) =>
|
|
10
|
-
ProtobufAssertDecodeProgrammer.write(project)(modulo),
|
|
11
|
-
);
|
|
12
|
-
}
|
|
1
|
+
import { ProtobufAssertDecodeProgrammer } from "../../../programmers/protobuf/ProtobufAssertDecodeProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace ProtobufCreateAssertDecodeTransformer {
|
|
6
|
+
export const transform = GenericTransformer.factory(
|
|
7
|
+
"protobuf.createAssertDecode",
|
|
8
|
+
)(
|
|
9
|
+
(project) => (modulo) =>
|
|
10
|
+
ProtobufAssertDecodeProgrammer.write(project)(modulo),
|
|
11
|
+
);
|
|
12
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ProtobufAssertEncodeProgrammer } from "../../../programmers/protobuf/ProtobufAssertEncodeProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace ProtobufCreateAssertEncodeTransformer {
|
|
6
|
-
export const transform = GenericTransformer.factory(
|
|
7
|
-
"protobuf.createAssertEncode",
|
|
8
|
-
)(
|
|
9
|
-
(project) => (modulo) =>
|
|
10
|
-
ProtobufAssertEncodeProgrammer.write(project)(modulo),
|
|
11
|
-
);
|
|
12
|
-
}
|
|
1
|
+
import { ProtobufAssertEncodeProgrammer } from "../../../programmers/protobuf/ProtobufAssertEncodeProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace ProtobufCreateAssertEncodeTransformer {
|
|
6
|
+
export const transform = GenericTransformer.factory(
|
|
7
|
+
"protobuf.createAssertEncode",
|
|
8
|
+
)(
|
|
9
|
+
(project) => (modulo) =>
|
|
10
|
+
ProtobufAssertEncodeProgrammer.write(project)(modulo),
|
|
11
|
+
);
|
|
12
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ProtobufDecodeProgrammer } from "../../../programmers/protobuf/ProtobufDecodeProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace ProtobufCreateDecodeTransformer {
|
|
6
|
-
export const transform = GenericTransformer.factory(
|
|
7
|
-
"protobuf.createDecode",
|
|
8
|
-
)((project) => (modulo) => ProtobufDecodeProgrammer.write(project)(modulo));
|
|
9
|
-
}
|
|
1
|
+
import { ProtobufDecodeProgrammer } from "../../../programmers/protobuf/ProtobufDecodeProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace ProtobufCreateDecodeTransformer {
|
|
6
|
+
export const transform = GenericTransformer.factory(
|
|
7
|
+
"protobuf.createDecode",
|
|
8
|
+
)((project) => (modulo) => ProtobufDecodeProgrammer.write(project)(modulo));
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ProtobufEncodeProgrammer } from "../../../programmers/protobuf/ProtobufEncodeProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace ProtobufCreateEncodeTransformer {
|
|
6
|
-
export const transform = GenericTransformer.factory(
|
|
7
|
-
"protobuf.createEncode",
|
|
8
|
-
)((project) => (modulo) => ProtobufEncodeProgrammer.write(project)(modulo));
|
|
9
|
-
}
|
|
1
|
+
import { ProtobufEncodeProgrammer } from "../../../programmers/protobuf/ProtobufEncodeProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace ProtobufCreateEncodeTransformer {
|
|
6
|
+
export const transform = GenericTransformer.factory(
|
|
7
|
+
"protobuf.createEncode",
|
|
8
|
+
)((project) => (modulo) => ProtobufEncodeProgrammer.write(project)(modulo));
|
|
9
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ProtobufIsDecodeProgrammer } from "../../../programmers/protobuf/ProtobufIsDecodeProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace ProtobufCreateIsDecodeTransformer {
|
|
6
|
-
export const transform = GenericTransformer.factory(
|
|
7
|
-
"protobuf.createIsDecode",
|
|
8
|
-
)(
|
|
9
|
-
(project) => (modulo) =>
|
|
10
|
-
ProtobufIsDecodeProgrammer.write(project)(modulo),
|
|
11
|
-
);
|
|
12
|
-
}
|
|
1
|
+
import { ProtobufIsDecodeProgrammer } from "../../../programmers/protobuf/ProtobufIsDecodeProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace ProtobufCreateIsDecodeTransformer {
|
|
6
|
+
export const transform = GenericTransformer.factory(
|
|
7
|
+
"protobuf.createIsDecode",
|
|
8
|
+
)(
|
|
9
|
+
(project) => (modulo) =>
|
|
10
|
+
ProtobufIsDecodeProgrammer.write(project)(modulo),
|
|
11
|
+
);
|
|
12
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ProtobufIsEncodeProgrammer } from "../../../programmers/protobuf/ProtobufIsEncodeProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace ProtobufCreateIsEncodeTransformer {
|
|
6
|
-
export const transform = GenericTransformer.factory(
|
|
7
|
-
"protobuf.createIsEncode",
|
|
8
|
-
)(
|
|
9
|
-
(project) => (modulo) =>
|
|
10
|
-
ProtobufIsEncodeProgrammer.write(project)(modulo),
|
|
11
|
-
);
|
|
12
|
-
}
|
|
1
|
+
import { ProtobufIsEncodeProgrammer } from "../../../programmers/protobuf/ProtobufIsEncodeProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace ProtobufCreateIsEncodeTransformer {
|
|
6
|
+
export const transform = GenericTransformer.factory(
|
|
7
|
+
"protobuf.createIsEncode",
|
|
8
|
+
)(
|
|
9
|
+
(project) => (modulo) =>
|
|
10
|
+
ProtobufIsEncodeProgrammer.write(project)(modulo),
|
|
11
|
+
);
|
|
12
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ProtobufValidateDecodeProgrammer } from "../../../programmers/protobuf/ProtobufValidateDecodeProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace ProtobufCreateValidateDecodeTransformer {
|
|
6
|
-
export const transform = GenericTransformer.factory(
|
|
7
|
-
"protobuf.createValidateDecode",
|
|
8
|
-
)(
|
|
9
|
-
(project) => (modulo) =>
|
|
10
|
-
ProtobufValidateDecodeProgrammer.write(project)(modulo),
|
|
11
|
-
);
|
|
12
|
-
}
|
|
1
|
+
import { ProtobufValidateDecodeProgrammer } from "../../../programmers/protobuf/ProtobufValidateDecodeProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace ProtobufCreateValidateDecodeTransformer {
|
|
6
|
+
export const transform = GenericTransformer.factory(
|
|
7
|
+
"protobuf.createValidateDecode",
|
|
8
|
+
)(
|
|
9
|
+
(project) => (modulo) =>
|
|
10
|
+
ProtobufValidateDecodeProgrammer.write(project)(modulo),
|
|
11
|
+
);
|
|
12
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ProtobufValidateEncodeProgrammer } from "../../../programmers/protobuf/ProtobufValidateEncodeProgrammer";
|
|
2
|
-
|
|
3
|
-
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
-
|
|
5
|
-
export namespace ProtobufCreateValidateEncodeTransformer {
|
|
6
|
-
export const transform = GenericTransformer.factory(
|
|
7
|
-
"protobuf.createValidateEncode",
|
|
8
|
-
)(
|
|
9
|
-
(project) => (modulo) =>
|
|
10
|
-
ProtobufValidateEncodeProgrammer.write(project)(modulo),
|
|
11
|
-
);
|
|
12
|
-
}
|
|
1
|
+
import { ProtobufValidateEncodeProgrammer } from "../../../programmers/protobuf/ProtobufValidateEncodeProgrammer";
|
|
2
|
+
|
|
3
|
+
import { GenericTransformer } from "../../internal/GenericTransformer";
|
|
4
|
+
|
|
5
|
+
export namespace ProtobufCreateValidateEncodeTransformer {
|
|
6
|
+
export const transform = GenericTransformer.factory(
|
|
7
|
+
"protobuf.createValidateEncode",
|
|
8
|
+
)(
|
|
9
|
+
(project) => (modulo) =>
|
|
10
|
+
ProtobufValidateEncodeProgrammer.write(project)(modulo),
|
|
11
|
+
);
|
|
12
|
+
}
|