@nestia/sdk 12.0.0-rc.2 → 12.0.0-rc.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.
Files changed (119) hide show
  1. package/LICENSE +21 -21
  2. package/assets/bundle/api/HttpError.ts +1 -1
  3. package/assets/bundle/api/IConnection.ts +1 -1
  4. package/assets/bundle/api/Primitive.ts +1 -1
  5. package/assets/bundle/api/Resolved.ts +1 -1
  6. package/assets/bundle/api/index.ts +4 -4
  7. package/assets/bundle/api/module.ts +6 -6
  8. package/assets/bundle/distribute/README.md +37 -37
  9. package/assets/bundle/distribute/package.json +28 -28
  10. package/assets/bundle/distribute/tsconfig.json +109 -109
  11. package/assets/bundle/e2e/index.ts +42 -42
  12. package/assets/config/nestia.config.ts +97 -97
  13. package/lib/executable/sdk.js +12 -12
  14. package/native/go.mod +35 -52
  15. package/native/go.sum +54 -84
  16. package/native/sdk/register.go +322 -322
  17. package/native/sdk/sdk.go +17 -17
  18. package/native/sdk/sdk_metadata_json.go +327 -327
  19. package/native/sdk/sdk_transform.go +1879 -1879
  20. package/package.json +10 -10
  21. package/src/INestiaConfig.ts +267 -267
  22. package/src/NestiaSwaggerComposer.ts +152 -152
  23. package/src/analyses/AccessorAnalyzer.ts +93 -93
  24. package/src/analyses/ConfigAnalyzer.ts +344 -344
  25. package/src/analyses/ImportAnalyzer.ts +92 -92
  26. package/src/analyses/PathAnalyzer.ts +130 -130
  27. package/src/analyses/ReflectControllerAnalyzer.ts +112 -112
  28. package/src/analyses/ReflectHttpOperationAnalyzer.ts +183 -183
  29. package/src/analyses/ReflectHttpOperationExceptionAnalyzer.ts +90 -90
  30. package/src/analyses/ReflectHttpOperationParameterAnalyzer.ts +350 -350
  31. package/src/analyses/ReflectHttpOperationResponseAnalyzer.ts +163 -163
  32. package/src/analyses/ReflectMcpOperationAnalyzer.ts +124 -124
  33. package/src/analyses/ReflectMetadataAnalyzer.ts +44 -44
  34. package/src/analyses/SecurityAnalyzer.ts +25 -25
  35. package/src/analyses/TypedMcpRouteAnalyzer.ts +34 -34
  36. package/src/decorators/OperationMetadata.ts +29 -29
  37. package/src/executable/internal/CommandParser.ts +15 -15
  38. package/src/executable/internal/NestiaConfigLoader.ts +451 -451
  39. package/src/executable/internal/NestiaSdkCommand.ts +124 -124
  40. package/src/executable/internal/NestiaSdkWatcher.ts +342 -342
  41. package/src/executable/sdk.ts +90 -90
  42. package/src/factories/ExpressionFactory.ts +23 -23
  43. package/src/factories/IdentifierFactory.ts +84 -84
  44. package/src/factories/LiteralFactory.ts +54 -54
  45. package/src/factories/StatementFactory.ts +56 -56
  46. package/src/factories/TypeFactory.ts +27 -27
  47. package/src/generates/CloneGenerator.ts +74 -74
  48. package/src/generates/E2eGenerator.ts +32 -32
  49. package/src/generates/SdkGenerator.ts +176 -176
  50. package/src/generates/SwaggerGenerator.ts +342 -342
  51. package/src/generates/internal/E2eFileProgrammer.ts +246 -246
  52. package/src/generates/internal/FilePrinter.ts +57 -57
  53. package/src/generates/internal/ImportDictionary.ts +207 -207
  54. package/src/generates/internal/SdkAliasCollection.ts +280 -280
  55. package/src/generates/internal/SdkDistributionComposer.ts +123 -123
  56. package/src/generates/internal/SdkFileProgrammer.ts +113 -113
  57. package/src/generates/internal/SdkHttpCloneProgrammer.ts +124 -124
  58. package/src/generates/internal/SdkHttpCloneReferencer.ts +131 -131
  59. package/src/generates/internal/SdkHttpFunctionProgrammer.ts +290 -290
  60. package/src/generates/internal/SdkHttpNamespaceProgrammer.ts +507 -507
  61. package/src/generates/internal/SdkHttpParameterProgrammer.ts +163 -163
  62. package/src/generates/internal/SdkHttpRouteProgrammer.ts +109 -109
  63. package/src/generates/internal/SdkHttpSimulationProgrammer.ts +322 -322
  64. package/src/generates/internal/SdkImportWizard.ts +62 -62
  65. package/src/generates/internal/SdkMcpRouteProgrammer.ts +447 -447
  66. package/src/generates/internal/SdkRouteDirectory.ts +21 -21
  67. package/src/generates/internal/SdkTypeProgrammer.ts +389 -389
  68. package/src/generates/internal/SdkTypeTagProgrammer.ts +110 -110
  69. package/src/generates/internal/SdkWebSocketCloneProgrammer.ts +319 -319
  70. package/src/generates/internal/SdkWebSocketNamespaceProgrammer.ts +383 -383
  71. package/src/generates/internal/SdkWebSocketParameterProgrammer.ts +91 -91
  72. package/src/generates/internal/SdkWebSocketRouteProgrammer.ts +304 -304
  73. package/src/generates/internal/SwaggerDescriptionComposer.ts +64 -64
  74. package/src/generates/internal/SwaggerOperationComposer.ts +119 -119
  75. package/src/generates/internal/SwaggerOperationParameterComposer.ts +175 -175
  76. package/src/generates/internal/SwaggerOperationResponseComposer.ts +115 -115
  77. package/src/generates/internal/SwaggerReadonlyArrayEmender.ts +262 -262
  78. package/src/index.ts +4 -4
  79. package/src/internal/legacy.ts +492 -492
  80. package/src/module.ts +4 -4
  81. package/src/structures/INestiaProject.ts +10 -10
  82. package/src/structures/INestiaSdkInput.ts +27 -27
  83. package/src/structures/IOperationMetadata.ts +41 -41
  84. package/src/structures/IReflectController.ts +18 -18
  85. package/src/structures/IReflectHttpOperation.ts +26 -26
  86. package/src/structures/IReflectHttpOperationException.ts +18 -18
  87. package/src/structures/IReflectHttpOperationParameter.ts +79 -79
  88. package/src/structures/IReflectHttpOperationSuccess.ts +18 -18
  89. package/src/structures/IReflectImport.ts +6 -6
  90. package/src/structures/IReflectMcpOperation.ts +38 -38
  91. package/src/structures/IReflectMcpOperationParameter.ts +27 -27
  92. package/src/structures/IReflectOperationError.ts +26 -26
  93. package/src/structures/IReflectType.ts +4 -4
  94. package/src/structures/IReflectWebSocketOperation.ts +17 -17
  95. package/src/structures/ITypedApplication.ts +12 -12
  96. package/src/structures/ITypedHttpRoute.ts +41 -41
  97. package/src/structures/ITypedHttpRouteException.ts +15 -15
  98. package/src/structures/ITypedHttpRouteParameter.ts +41 -41
  99. package/src/structures/ITypedHttpRouteSuccess.ts +18 -18
  100. package/src/structures/ITypedMcpRoute.ts +33 -33
  101. package/src/structures/ITypedWebSocketRoute.ts +24 -24
  102. package/src/structures/ITypedWebSocketRouteParameter.ts +3 -3
  103. package/src/transform.ts +28 -28
  104. package/src/typings/get-function-location.d.ts +7 -7
  105. package/src/utils/ArrayUtil.ts +26 -26
  106. package/src/utils/EmittedJavaScriptPatcher.ts +88 -88
  107. package/src/utils/FileRetriever.ts +22 -22
  108. package/src/utils/HttpResponseContentTypeUtil.ts +30 -30
  109. package/src/utils/MapUtil.ts +14 -14
  110. package/src/utils/PathUtil.ts +10 -10
  111. package/src/utils/SourceFinder.ts +69 -69
  112. package/src/utils/StringUtil.ts +17 -17
  113. package/src/utils/TsConfigReader.ts +108 -108
  114. package/src/utils/TtscExecutor.ts +68 -68
  115. package/src/utils/VersioningStrategy.ts +28 -28
  116. package/src/validators/HttpHeadersValidator.ts +11 -11
  117. package/src/validators/HttpQueryValidator.ts +11 -11
  118. package/src/validators/TextPlainValidator.ts +17 -17
  119. package/README.md +0 -93
@@ -1,97 +1,97 @@
1
- import { INestiaConfig } from "@nestia/sdk";
2
- import { Module } from "@nestjs/common";
3
- import { NestFactory } from "@nestjs/core";
4
-
5
- // import { FastifyAdapter } from "@nestjs/platform-fastify";
6
-
7
- export const NESTIA_CONFIG: INestiaConfig = {
8
- /**
9
- * Accessor of controller classes.
10
- *
11
- * You can specify it within two ways.
12
- *
13
- * - Asynchronous function returning `INestApplication` instance
14
- * - Specify the path or directory of controller class files
15
- */
16
- // input: "src/controllers",
17
- // input: "src/**/*.controller.ts",
18
- input: async () => {
19
- // change this to your own module
20
- @Module({
21
- controllers: [],
22
- })
23
- class MyModule {}
24
- const app = await NestFactory.create(MyModule);
25
- // const app = await NestFactory.create(YourModule, new FastifyAdapter());
26
- // app.setGlobalPrefix("api");
27
- // app.enableVersioning({
28
- // type: VersioningType.URI,
29
- // prefix: "v",
30
- // })
31
- return app;
32
- },
33
-
34
- /**
35
- * Building `swagger.json` is also possible.
36
- *
37
- * If not specified, you can't build the `swagger.json`.
38
- */
39
- swagger: {
40
- /**
41
- * Output path of the `swagger.json`.
42
- *
43
- * If you've configured only directory, the file name would be the `swagger.json`.
44
- * Otherwise you've configured the full path with file name and extension, the
45
- * `swagger.json` file would be renamed to it.
46
- */
47
- output: "dist/swagger.json",
48
- },
49
-
50
- /**
51
- * Output directory that SDK would be placed in.
52
- *
53
- * If not configured, you can't build the SDK library.
54
- */
55
- output: "src/api",
56
-
57
- /**
58
- * Target directory that SDK distribution files would be placed in.
59
- *
60
- * If you configure this property and runs `npx nestia sdk` command,
61
- * distribution environments for the SDK library would be generated.
62
- *
63
- * After the SDK library generation, move to the `distribute` directory,
64
- * and runs `npm publish` command, then you can share SDK library with
65
- * other client (frontend) developers.
66
- */
67
- // distribute: "packages/api",
68
-
69
- /**
70
- * Whether to use propagation mode or not.
71
- *
72
- * If being configured, interaction functions of the SDK library would
73
- * perform the propagation mode. The propagation mode means that never
74
- * throwing exception even when status code is not 200 (or 201), but just
75
- * returning the {@link IPropagation} typed instance, which can specify its body
76
- * type through discriminated union determined by status code.
77
- *
78
- * @default false
79
- */
80
- // propagate: true,
81
-
82
- /**
83
- * Allow simulation mode.
84
- *
85
- * If you configure this property to be `true`, the SDK library would be contain
86
- * simulation mode. In the simulation mode, the SDK library would not communicate
87
- * with the real backend server, but just returns random mock-up data
88
- * with requestion data validation.
89
- *
90
- * For reference, random mock-up data would be generated by `typia.random<T>()`
91
- * function.
92
- *
93
- * @default false
94
- */
95
- // simulate: true,
96
- };
97
- export default NESTIA_CONFIG;
1
+ import { INestiaConfig } from "@nestia/sdk";
2
+ import { Module } from "@nestjs/common";
3
+ import { NestFactory } from "@nestjs/core";
4
+
5
+ // import { FastifyAdapter } from "@nestjs/platform-fastify";
6
+
7
+ export const NESTIA_CONFIG: INestiaConfig = {
8
+ /**
9
+ * Accessor of controller classes.
10
+ *
11
+ * You can specify it within two ways.
12
+ *
13
+ * - Asynchronous function returning `INestApplication` instance
14
+ * - Specify the path or directory of controller class files
15
+ */
16
+ // input: "src/controllers",
17
+ // input: "src/**/*.controller.ts",
18
+ input: async () => {
19
+ // change this to your own module
20
+ @Module({
21
+ controllers: [],
22
+ })
23
+ class MyModule {}
24
+ const app = await NestFactory.create(MyModule);
25
+ // const app = await NestFactory.create(YourModule, new FastifyAdapter());
26
+ // app.setGlobalPrefix("api");
27
+ // app.enableVersioning({
28
+ // type: VersioningType.URI,
29
+ // prefix: "v",
30
+ // })
31
+ return app;
32
+ },
33
+
34
+ /**
35
+ * Building `swagger.json` is also possible.
36
+ *
37
+ * If not specified, you can't build the `swagger.json`.
38
+ */
39
+ swagger: {
40
+ /**
41
+ * Output path of the `swagger.json`.
42
+ *
43
+ * If you've configured only directory, the file name would be the `swagger.json`.
44
+ * Otherwise you've configured the full path with file name and extension, the
45
+ * `swagger.json` file would be renamed to it.
46
+ */
47
+ output: "dist/swagger.json",
48
+ },
49
+
50
+ /**
51
+ * Output directory that SDK would be placed in.
52
+ *
53
+ * If not configured, you can't build the SDK library.
54
+ */
55
+ output: "src/api",
56
+
57
+ /**
58
+ * Target directory that SDK distribution files would be placed in.
59
+ *
60
+ * If you configure this property and runs `npx nestia sdk` command,
61
+ * distribution environments for the SDK library would be generated.
62
+ *
63
+ * After the SDK library generation, move to the `distribute` directory,
64
+ * and runs `npm publish` command, then you can share SDK library with
65
+ * other client (frontend) developers.
66
+ */
67
+ // distribute: "packages/api",
68
+
69
+ /**
70
+ * Whether to use propagation mode or not.
71
+ *
72
+ * If being configured, interaction functions of the SDK library would
73
+ * perform the propagation mode. The propagation mode means that never
74
+ * throwing exception even when status code is not 200 (or 201), but just
75
+ * returning the {@link IPropagation} typed instance, which can specify its body
76
+ * type through discriminated union determined by status code.
77
+ *
78
+ * @default false
79
+ */
80
+ // propagate: true,
81
+
82
+ /**
83
+ * Allow simulation mode.
84
+ *
85
+ * If you configure this property to be `true`, the SDK library would be contain
86
+ * simulation mode. In the simulation mode, the SDK library would not communicate
87
+ * with the real backend server, but just returns random mock-up data
88
+ * with requestion data validation.
89
+ *
90
+ * For reference, random mock-up data would be generated by `typia.random<T>()`
91
+ * function.
92
+ *
93
+ * @default false
94
+ */
95
+ // simulate: true,
96
+ };
97
+ export default NESTIA_CONFIG;
@@ -50,18 +50,18 @@ const child_process_1 = __importDefault(require("child_process"));
50
50
  const fs_1 = __importDefault(require("fs"));
51
51
  const process_1 = __importDefault(require("process"));
52
52
  const CommandParser_1 = require("./internal/CommandParser");
53
- const USAGE = `Wrong command has been detected. Use like below:
54
-
55
- npx @nestia/sdk [command] [options?]
56
-
57
- 1. npx @nestia/sdk dependencies --manager (npm|pnpm|yarn)
58
- - npx @nestia/sdk dependencies
59
- - npx @nestia/sdk dependencies --manager pnpm
60
- 2. npx @nestia/sdk init
61
- 3. npx @nestia/sdk sdk --config? [config file] --project? [project file]
62
- 4. npx @nestia/sdk swagger --watch? --config? [config file] --project? [project file]
63
- 5. npx @nestia/sdk e2e --config? [config file] --project? [project file]
64
- 6. npx @nestia/sdk all --config? [config file] --project? [project file]
53
+ const USAGE = `Wrong command has been detected. Use like below:
54
+
55
+ npx @nestia/sdk [command] [options?]
56
+
57
+ 1. npx @nestia/sdk dependencies --manager (npm|pnpm|yarn)
58
+ - npx @nestia/sdk dependencies
59
+ - npx @nestia/sdk dependencies --manager pnpm
60
+ 2. npx @nestia/sdk init
61
+ 3. npx @nestia/sdk sdk --config? [config file] --project? [project file]
62
+ 4. npx @nestia/sdk swagger --watch? --config? [config file] --project? [project file]
63
+ 5. npx @nestia/sdk e2e --config? [config file] --project? [project file]
64
+ 6. npx @nestia/sdk all --config? [config file] --project? [project file]
65
65
  `;
66
66
  function halt(desc) {
67
67
  console.error(desc);
package/native/go.mod CHANGED
@@ -1,52 +1,35 @@
1
- module github.com/samchon/nestia/packages/sdk/native
2
-
3
- go 1.26
4
-
5
- require (
6
- github.com/microsoft/typescript-go/shim/ast v0.0.0
7
- github.com/microsoft/typescript-go/shim/checker v0.0.0
8
- github.com/microsoft/typescript-go/shim/printer v0.0.0
9
- github.com/microsoft/typescript-go/shim/scanner v0.0.0
10
- github.com/samchon/nestia/packages/core/native v0.0.0
11
- github.com/samchon/ttsc/packages/ttsc v0.0.0
12
- github.com/samchon/typia/packages/typia/native v0.0.0-20260605060028-1dfa7ca6193e
13
- )
14
-
15
- require (
16
- github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
17
- github.com/klauspost/cpuid/v2 v2.2.10 // indirect
18
- github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 // indirect
19
- github.com/microsoft/typescript-go/shim/bundled v0.0.0 // indirect
20
- github.com/microsoft/typescript-go/shim/compiler v0.0.0 // indirect
21
- github.com/microsoft/typescript-go/shim/core v0.0.0 // indirect
22
- github.com/microsoft/typescript-go/shim/diagnosticwriter v0.0.0 // indirect
23
- github.com/microsoft/typescript-go/shim/parser v0.0.0 // indirect
24
- github.com/microsoft/typescript-go/shim/tsoptions v0.0.0 // indirect
25
- github.com/microsoft/typescript-go/shim/tspath v0.0.0 // indirect
26
- github.com/microsoft/typescript-go/shim/vfs v0.0.0 // indirect
27
- github.com/microsoft/typescript-go/shim/vfs/cachedvfs v0.0.0 // indirect
28
- github.com/microsoft/typescript-go/shim/vfs/osvfs v0.0.0 // indirect
29
- github.com/zeebo/xxh3 v1.1.0 // indirect
30
- golang.org/x/sync v0.20.0 // indirect
31
- golang.org/x/sys v0.43.0 // indirect
32
- golang.org/x/text v0.36.0 // indirect
33
- )
34
-
35
- replace (
36
- github.com/microsoft/typescript-go/shim/ast => github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260605102019-02361f943e18
37
- github.com/microsoft/typescript-go/shim/bundled => github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260605102019-02361f943e18
38
- github.com/microsoft/typescript-go/shim/checker => github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260605102019-02361f943e18
39
- github.com/microsoft/typescript-go/shim/compiler => github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260605102019-02361f943e18
40
- github.com/microsoft/typescript-go/shim/core => github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260605102019-02361f943e18
41
- github.com/microsoft/typescript-go/shim/diagnosticwriter => github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260605102019-02361f943e18
42
- github.com/microsoft/typescript-go/shim/parser => github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260605102019-02361f943e18
43
- github.com/microsoft/typescript-go/shim/printer => github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260605102019-02361f943e18
44
- github.com/microsoft/typescript-go/shim/scanner => github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260605102019-02361f943e18
45
- github.com/microsoft/typescript-go/shim/tsoptions => github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260605102019-02361f943e18
46
- github.com/microsoft/typescript-go/shim/tspath => github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260605102019-02361f943e18
47
- github.com/microsoft/typescript-go/shim/vfs => github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260605102019-02361f943e18
48
- github.com/microsoft/typescript-go/shim/vfs/cachedvfs => github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260605102019-02361f943e18
49
- github.com/microsoft/typescript-go/shim/vfs/osvfs => github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260605102019-02361f943e18
50
- github.com/samchon/nestia/packages/core/native => ../../core/native
51
- github.com/samchon/ttsc/packages/ttsc v0.0.0 => github.com/samchon/ttsc/packages/ttsc v0.0.0-20260605102019-02361f943e18
52
- )
1
+ module github.com/samchon/nestia/packages/sdk/native
2
+
3
+ go 1.26
4
+
5
+ require (
6
+ github.com/microsoft/typescript-go/shim/ast v0.0.0
7
+ github.com/microsoft/typescript-go/shim/checker v0.0.0
8
+ github.com/microsoft/typescript-go/shim/printer v0.0.0
9
+ github.com/microsoft/typescript-go/shim/scanner v0.0.0
10
+ github.com/samchon/nestia/packages/core/native v0.0.0
11
+ github.com/samchon/ttsc/packages/ttsc v0.0.0
12
+ github.com/samchon/typia/packages/typia/native v0.0.0-20260709031533-27f105ae8e56
13
+ )
14
+
15
+ require (
16
+ github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 // indirect
17
+ github.com/klauspost/cpuid/v2 v2.2.10 // indirect
18
+ github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 // indirect
19
+ github.com/microsoft/typescript-go/shim/bundled v0.0.0 // indirect
20
+ github.com/microsoft/typescript-go/shim/compiler v0.0.0 // indirect
21
+ github.com/microsoft/typescript-go/shim/core v0.0.0 // indirect
22
+ github.com/microsoft/typescript-go/shim/diagnosticwriter v0.0.0 // indirect
23
+ github.com/microsoft/typescript-go/shim/parser v0.0.0 // indirect
24
+ github.com/microsoft/typescript-go/shim/tsoptions v0.0.0 // indirect
25
+ github.com/microsoft/typescript-go/shim/tspath v0.0.0 // indirect
26
+ github.com/microsoft/typescript-go/shim/vfs v0.0.0 // indirect
27
+ github.com/microsoft/typescript-go/shim/vfs/cachedvfs v0.0.0 // indirect
28
+ github.com/microsoft/typescript-go/shim/vfs/osvfs v0.0.0 // indirect
29
+ github.com/zeebo/xxh3 v1.1.0 // indirect
30
+ golang.org/x/sync v0.20.0 // indirect
31
+ golang.org/x/sys v0.43.0 // indirect
32
+ golang.org/x/text v0.36.0 // indirect
33
+ )
34
+
35
+ replace github.com/samchon/nestia/packages/core/native => ../../core/native
package/native/go.sum CHANGED
@@ -1,84 +1,54 @@
1
- github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 h1:vymEbVwYFP/L05h5TKQxvkXoKxNvTpjxYKdF1Nlwuao=
2
- github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg=
3
- github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
4
- github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
5
- github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
6
- github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
7
- github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 h1:llOMPhKDiQ+UEJiAaQuuWaJOTg5V7tNNTEf9JPWoYSY=
8
- github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157/go.mod h1:m8YA0PMC7ti0GW0RI05D6fEcjQeu98XVS+FWF+VDW2k=
9
- github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
10
- github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
11
- github.com/samchon/ttsc/packages/ttsc v0.0.0-20260519112110-ec1cdf69c509 h1:9XOcQrnIVJ9ZSS2COtZhVgRyMgNojuWV1x/775QXdYk=
12
- github.com/samchon/ttsc/packages/ttsc v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:V3pedIezHwCYObKxD174holEgc0yyMcGx+4eCI+dgRw=
13
- github.com/samchon/ttsc/packages/ttsc v0.0.0-20260605102019-02361f943e18 h1:s7kvBiLEdAs6ZIAymFdhEThDPogRhTe0JCEcfvL0kHI=
14
- github.com/samchon/ttsc/packages/ttsc v0.0.0-20260605102019-02361f943e18/go.mod h1:w1lJWUKJ3tMV+vAG2S8aj4c5E5m+OzA66tLh8a0dlUY=
15
- github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260519112110-ec1cdf69c509 h1:dPku/IntYFpiKuKpsM78WwwxyIdl1QeCRm5hYah7998=
16
- github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:BCVAEArtMC+X1laJmDwxlsRROIQIYvHeT7Dl0gNjT0A=
17
- github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260605102019-02361f943e18 h1:3uzwQ6xZJtuZq8TSM142oN1xSXxju3NimTwljFUI2vM=
18
- github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260605102019-02361f943e18/go.mod h1:BCVAEArtMC+X1laJmDwxlsRROIQIYvHeT7Dl0gNjT0A=
19
- github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260519112110-ec1cdf69c509 h1:xo5hPei0KG1R0duQhs3R8ty3NeB/+uNKo8PfcRej/bI=
20
- github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:0tz+Y8szXmEpXWHWVrLrv11ga1z6tQJQErkUyIWJ9RQ=
21
- github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260605102019-02361f943e18 h1:9Mh7qKdmOiwc8nSI1xKYfEz4C1az2gH/w+zxS3Xd8GA=
22
- github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260605102019-02361f943e18/go.mod h1:0tz+Y8szXmEpXWHWVrLrv11ga1z6tQJQErkUyIWJ9RQ=
23
- github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260519112110-ec1cdf69c509 h1:NsY7Sx27yCLEiHAMQW/FZ9K08AeyfqCFfARbv3YW58Y=
24
- github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:4xfafgG/qosSp8f0tCf83assFoUKRdGHhvPD1EI9LKg=
25
- github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260605102019-02361f943e18 h1:a63O6m24fjVERrjxYsEW1+MFunURl2aStDduflpvwa4=
26
- github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260605102019-02361f943e18/go.mod h1:4xfafgG/qosSp8f0tCf83assFoUKRdGHhvPD1EI9LKg=
27
- github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260519112110-ec1cdf69c509 h1:P0842cLEeKSbUEcr02bojbFeejJNymsoybBvSQImpGc=
28
- github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:e9awlg1eXjc1Hzx9waw6UEV/2qYJbgo8zFPwQ0mpzig=
29
- github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260605102019-02361f943e18 h1:bGTh5T3kPUUVsfwg3HD5z+hkSIrx65Ah39nhYRwExrE=
30
- github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260605102019-02361f943e18/go.mod h1:s12vcy3pf6RYDxXcyiK7448DiK+Ol9qx3cjiInd1uxw=
31
- github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260519112110-ec1cdf69c509 h1:CVP3DmC77r5Dei7YziDmwlb7h+h4Z7tUAi3sdHY3PQ0=
32
- github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:DUewcVNEdXyDveQholE4GAsiqqA3C2+SJYqia3nCf00=
33
- github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260605102019-02361f943e18 h1:nz//JEvG75JFPTMHQYB1RHIc6DznLcL6vzdQtaf5rgA=
34
- github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260605102019-02361f943e18/go.mod h1:DUewcVNEdXyDveQholE4GAsiqqA3C2+SJYqia3nCf00=
35
- github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260519112110-ec1cdf69c509 h1:pSweRJg4DabeOefKJks+adGJ6lvDfCS0GtaKEzUdOl8=
36
- github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:v86GtrD7qALo6Xkgz1MDomPMSV2D9NdniQWB5t8eY6k=
37
- github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260605102019-02361f943e18 h1:FTRUqPUpRheMr768KjZX1hUL9DFbw7msrX4JhVgoChc=
38
- github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260605102019-02361f943e18/go.mod h1:v86GtrD7qALo6Xkgz1MDomPMSV2D9NdniQWB5t8eY6k=
39
- github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260519112110-ec1cdf69c509 h1:+rhP0a1sNPduYsK1EbL88XFvfAEH3xwNPz04Bz50QGk=
40
- github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:inUjC/bNlCkO0zIzHZRXlHR/WgLcK0vi2KLc7tpQ1ek=
41
- github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260605102019-02361f943e18 h1:pijrqWfb3+hh3mQ2u6dm+bgHfjSh23i0c92V8ZE0O4Q=
42
- github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260605102019-02361f943e18/go.mod h1:inUjC/bNlCkO0zIzHZRXlHR/WgLcK0vi2KLc7tpQ1ek=
43
- github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260519112110-ec1cdf69c509 h1:jIEZj4iuDiSFGYQIcBfPTOEOKsw1OiFt1Mii4sDpwu0=
44
- github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:ESjhY+UiPRspef4JcXcUPNgt4ySQQrlVIUCLKaKeyEQ=
45
- github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260605102019-02361f943e18 h1:4Olqu+/s5oELI2ADIrzazyfVFAedStt2iRY2AtFyczw=
46
- github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260605102019-02361f943e18/go.mod h1:Hz8BbCqKCrykLfIX+PburWsGEKR8+bkrBJDe2TMLLS0=
47
- github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260519112110-ec1cdf69c509 h1:ojNRfmIQ6iRGixkd0UN5b9X4BIji7B2tvaC+U9DzezE=
48
- github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:abIC7C28cUA5IQKmLJulsl2qOvmimhkMNOfjJhRm5jM=
49
- github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260605102019-02361f943e18 h1:8N5vpbY6rjSLIP3AX3gQB5ulaMzdiCRVN7ism+zoMSY=
50
- github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260605102019-02361f943e18/go.mod h1:abIC7C28cUA5IQKmLJulsl2qOvmimhkMNOfjJhRm5jM=
51
- github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260519112110-ec1cdf69c509 h1:A82Zh/CGlOrit4/tmWqiibutfI/ymj2q2U29rShOkLU=
52
- github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:EQwrCr3nY0U1SZBNyp6cQSogAiXsjFxTuT8NlMit1lc=
53
- github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260605102019-02361f943e18 h1:MaW8oinC5/Ady0ViaEi9dOJ1CEEMsKTB2lshyUV+nSk=
54
- github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260605102019-02361f943e18/go.mod h1:EQwrCr3nY0U1SZBNyp6cQSogAiXsjFxTuT8NlMit1lc=
55
- github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260519112110-ec1cdf69c509 h1:0GpravTbiWFkotq0V5mCYf719slkFEiqdOJ//00NuGI=
56
- github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:hsE2c1bZquSNlDLIkT3SfLH3MrDmMk1BLzWI/KomT1A=
57
- github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260605102019-02361f943e18 h1:2M5RUDGTHDRLuJiXdv++ED4WKcQ6ffZ5PIDzFPZnS5w=
58
- github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260605102019-02361f943e18/go.mod h1:hsE2c1bZquSNlDLIkT3SfLH3MrDmMk1BLzWI/KomT1A=
59
- github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260519112110-ec1cdf69c509 h1:H7ZPgQ8g8uAQrrzKnnYrpxNgUFV245r5ZiLcT5BCxRc=
60
- github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:HoQcoC0FEG3iMI6zvjg8r6j/ves+RVH6SRn48VSi5H0=
61
- github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260605102019-02361f943e18 h1:iy+nYfhUDPHUHUR+xBO5FPj3J7kA14cKtS+yXmWGpxU=
62
- github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260605102019-02361f943e18/go.mod h1:HoQcoC0FEG3iMI6zvjg8r6j/ves+RVH6SRn48VSi5H0=
63
- github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260519112110-ec1cdf69c509 h1:LpTjuXHHUWskujIXRrbYsuxVWTXHxGG732EheCOVBZ0=
64
- github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:XS3LhXkn5xadyRe3tW+9+suW/7gh7dPdL43Q+s/lUDo=
65
- github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260605102019-02361f943e18 h1:YUFRat3wEzlcqtMi8rYo37W/JLDCtCMI5/KyVyfebbA=
66
- github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260605102019-02361f943e18/go.mod h1:XS3LhXkn5xadyRe3tW+9+suW/7gh7dPdL43Q+s/lUDo=
67
- github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260519112110-ec1cdf69c509 h1:ESHedCnmU7U9bhHD3o5DxWgE5QCOye4FW/TDw6MhXw8=
68
- github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260519112110-ec1cdf69c509/go.mod h1:otX+qw8aZLNCoBmCwMAn53Nw0RQTPzSoId3DxmE67So=
69
- github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260605102019-02361f943e18 h1:ZkdsYuza/vnoilcyB7oUy6joYdnpQGntrfCaKI/24Lw=
70
- github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260605102019-02361f943e18/go.mod h1:otX+qw8aZLNCoBmCwMAn53Nw0RQTPzSoId3DxmE67So=
71
- github.com/samchon/typia/packages/typia/native v0.0.0-20260605060028-1dfa7ca6193e h1:XmQoxB+Hne1B9zDvZhJ42r/b2ZhdpU8PzQKP7qcnP7o=
72
- github.com/samchon/typia/packages/typia/native v0.0.0-20260605060028-1dfa7ca6193e/go.mod h1:SJDrfiCEK5dtObhJeAl0iqelqmmFm/JIjfJ6z0kID60=
73
- github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
74
- github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
75
- github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
76
- github.com/zeebo/xxh3 v1.1.0/go.mod h1:IisAie1LELR4xhVinxWS5+zf1lA4p0MW4T+w+W07F5s=
77
- golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
78
- golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
79
- golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
80
- golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
81
- golang.org/x/text v0.36.0 h1:JfKh3XmcRPqZPKevfXVpI1wXPTqbkE5f7JA92a55Yxg=
82
- golang.org/x/text v0.36.0/go.mod h1:NIdBknypM8iqVmPiuco0Dh6P5Jcdk8lJL0CUebqK164=
83
- gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q=
84
- gotest.tools/v3 v3.5.2/go.mod h1:LtdLGcnqToBH83WByAAi/wiwSFCArdFIUV/xxN4pcjA=
1
+ github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433 h1:vymEbVwYFP/L05h5TKQxvkXoKxNvTpjxYKdF1Nlwuao=
2
+ github.com/go-json-experiment/json v0.0.0-20260214004413-d219187c3433/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg=
3
+ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
4
+ github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
5
+ github.com/klauspost/cpuid/v2 v2.2.10 h1:tBs3QSyvjDyFTq3uoc/9xFpCuOsJQFNPiAhYdw2skhE=
6
+ github.com/klauspost/cpuid/v2 v2.2.10/go.mod h1:hqwkgyIinND0mEev00jJYCxPNVRVXFQeu1XKlok6oO0=
7
+ github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157 h1:llOMPhKDiQ+UEJiAaQuuWaJOTg5V7tNNTEf9JPWoYSY=
8
+ github.com/microsoft/typescript-go v0.0.0-20260429010842-56ab4af42157/go.mod h1:m8YA0PMC7ti0GW0RI05D6fEcjQeu98XVS+FWF+VDW2k=
9
+ github.com/peter-evans/patience v0.3.0 h1:rX0JdJeepqdQl1Sk9c9uvorjYYzL2TfgLX1adqYm9cA=
10
+ github.com/peter-evans/patience v0.3.0/go.mod h1:Kmxu5sY1NmBLFSStvXjX1wS9mIv7wMcP/ubucyMOAu0=
11
+ github.com/samchon/ttsc/packages/ttsc v0.0.0-20260709053824-84bdc4acccb0 h1:j6jDYzWEow5+0KacfIzsi8xV9t0MTcShfNHYiPJk2LA=
12
+ github.com/samchon/ttsc/packages/ttsc v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:w1lJWUKJ3tMV+vAG2S8aj4c5E5m+OzA66tLh8a0dlUY=
13
+ github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260709053824-84bdc4acccb0 h1:v015/xr8MaQMLoYqPQXu5lUrEQmnG1D3V5zzlDUus6U=
14
+ github.com/samchon/ttsc/packages/ttsc/shim/ast v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:BCVAEArtMC+X1laJmDwxlsRROIQIYvHeT7Dl0gNjT0A=
15
+ github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260709053824-84bdc4acccb0 h1:EEeHe7pRKahBDyoUkBwQ8zFpzSswNj0JEhhrKwFpQTg=
16
+ github.com/samchon/ttsc/packages/ttsc/shim/bundled v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:0tz+Y8szXmEpXWHWVrLrv11ga1z6tQJQErkUyIWJ9RQ=
17
+ github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260709053824-84bdc4acccb0 h1:sMwvPvb2gbVJ9JODyPYAmUPObU5YX5XkBihrex9pw7s=
18
+ github.com/samchon/ttsc/packages/ttsc/shim/checker v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:4xfafgG/qosSp8f0tCf83assFoUKRdGHhvPD1EI9LKg=
19
+ github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260709053824-84bdc4acccb0 h1:jmrwyhAcdD56mQSAm96sUZxs2F+5902VnHhNzYTAdhw=
20
+ github.com/samchon/ttsc/packages/ttsc/shim/compiler v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:s12vcy3pf6RYDxXcyiK7448DiK+Ol9qx3cjiInd1uxw=
21
+ github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260709053824-84bdc4acccb0 h1:Y8wMEDosAZu6lELpWWbJf2IyCZNQZBLQQX+K//8nwc8=
22
+ github.com/samchon/ttsc/packages/ttsc/shim/core v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:DUewcVNEdXyDveQholE4GAsiqqA3C2+SJYqia3nCf00=
23
+ github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260709053824-84bdc4acccb0 h1:rpRxTBX5DOVeuzMDojBU0PRfdUZXQ7T/rp+Md0yP2VY=
24
+ github.com/samchon/ttsc/packages/ttsc/shim/diagnosticwriter v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:v86GtrD7qALo6Xkgz1MDomPMSV2D9NdniQWB5t8eY6k=
25
+ github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260709053824-84bdc4acccb0 h1:sWGdmZHFtlgdAI3m4LNKZSTCf7jK1+GMs5sJDGSep+M=
26
+ github.com/samchon/ttsc/packages/ttsc/shim/parser v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:inUjC/bNlCkO0zIzHZRXlHR/WgLcK0vi2KLc7tpQ1ek=
27
+ github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260709053824-84bdc4acccb0 h1:7cxbkCAQ85dKpeuB0uwkAcQr8akOSDcVRNp6RJCiFYg=
28
+ github.com/samchon/ttsc/packages/ttsc/shim/printer v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:Hz8BbCqKCrykLfIX+PburWsGEKR8+bkrBJDe2TMLLS0=
29
+ github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260709053824-84bdc4acccb0 h1:Ua1uEGKXX/SPrbNPFoS5FAoFrBlM56ecX2s+eeHmbQQ=
30
+ github.com/samchon/ttsc/packages/ttsc/shim/scanner v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:abIC7C28cUA5IQKmLJulsl2qOvmimhkMNOfjJhRm5jM=
31
+ github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260709053824-84bdc4acccb0 h1:ySIVZhDxe0u5sb3GtFFQ8leXar69QZjCYgPKGBEkIQA=
32
+ github.com/samchon/ttsc/packages/ttsc/shim/tsoptions v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:EQwrCr3nY0U1SZBNyp6cQSogAiXsjFxTuT8NlMit1lc=
33
+ github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260709053824-84bdc4acccb0 h1:bY1Rdiqs6rc7S7/YbY3gWJoXvTeb7LhXMNYrl6fvp1E=
34
+ github.com/samchon/ttsc/packages/ttsc/shim/tspath v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:hsE2c1bZquSNlDLIkT3SfLH3MrDmMk1BLzWI/KomT1A=
35
+ github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260709053824-84bdc4acccb0 h1:FU0AuiZLsw9kMU4Fy56XvhJ3bD99n5WTkjJh93gB0m0=
36
+ github.com/samchon/ttsc/packages/ttsc/shim/vfs v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:HoQcoC0FEG3iMI6zvjg8r6j/ves+RVH6SRn48VSi5H0=
37
+ github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260709053824-84bdc4acccb0 h1:rOw6pmYXNlaC0KKG9D38HTJEsfNiDI1+u2mBA8QRbZ8=
38
+ github.com/samchon/ttsc/packages/ttsc/shim/vfs/cachedvfs v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:XS3LhXkn5xadyRe3tW+9+suW/7gh7dPdL43Q+s/lUDo=
39
+ github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260709053824-84bdc4acccb0 h1:LXPQxe57qlWiHG5s8pQOKZD4nZRnRkrKIDsdJVfh2ws=
40
+ github.com/samchon/ttsc/packages/ttsc/shim/vfs/osvfs v0.0.0-20260709053824-84bdc4acccb0/go.mod h1:otX+qw8aZLNCoBmCwMAn53Nw0RQTPzSoId3DxmE67So=
41
+ github.com/samchon/typia/packages/typia/native v0.0.0-20260709031533-27f105ae8e56 h1:hT92UI6siGievvAKmhvxLLhgu3llM1mpgQ91/aFdy/s=
42
+ github.com/samchon/typia/packages/typia/native v0.0.0-20260709031533-27f105ae8e56/go.mod h1:SJDrfiCEK5dtObhJeAl0iqelqmmFm/JIjfJ6z0kID60=
43
+ github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
44
+ github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
45
+ github.com/zeebo/xxh3 v1.1.0 h1:s7DLGDK45Dyfg7++yxI0khrfwq9661w9EN78eP/UZVs=
46
+ github.com/zeebo/xxh3 v1.1.0/go.mod h1:IisAie1LELR4xhVinxWS5+zf1lA4p0MW4T+w+W07F5s=
47
+ golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
48
+ golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
49
+ golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
50
+ golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
51
+ golang.org/x/text v0.36.0 h1:JfKh3XmcRPqZPKevfXVpI1wXPTqbkE5f7JA92a55Yxg=
52
+ golang.org/x/text v0.36.0/go.mod h1:NIdBknypM8iqVmPiuco0Dh6P5Jcdk8lJL0CUebqK164=
53
+ gotest.tools/v3 v3.5.2 h1:7koQfIKdy+I8UTetycgUqXWSDwpgv193Ka+qRsmBY8Q=
54
+ gotest.tools/v3 v3.5.2/go.mod h1:LtdLGcnqToBH83WByAAi/wiwSFCArdFIUV/xxN4pcjA=