@idlizer/arktscgen 2.1.10-arktscgen-4 → 2.1.10-arktscgen-6

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 (287) hide show
  1. package/build/libarkts-copy/generator/options.json5 +24 -47
  2. package/build/libarkts-copy/native/meson.build +26 -10
  3. package/build/libarkts-copy/native/meson_options.txt +9 -3
  4. package/build/libarkts-copy/native/mingw.cross +2 -0
  5. package/build/libarkts-copy/native/src/bridges.cc +55 -159
  6. package/build/libarkts-copy/native/src/common.cc +316 -97
  7. package/build/libarkts-copy/native/src/common.h +22 -22
  8. package/build/libarkts-copy/native/src/memoryTracker.cc +5 -5
  9. package/build/libarkts-copy/native/src/memoryTracker.h +5 -5
  10. package/build/libarkts-copy/package.json +31 -25
  11. package/build/libarkts-copy/src/Es2pandaNativeModule.ts +139 -116
  12. package/build/libarkts-copy/src/InteropNativeModule.ts +18 -15
  13. package/build/libarkts-copy/src/arkts-api/AbstractVisitor.ts +24 -19
  14. package/build/libarkts-copy/src/arkts-api/ImportStorage.ts +30 -31
  15. package/build/libarkts-copy/src/arkts-api/ProgramProvider.ts +30 -18
  16. package/build/libarkts-copy/src/arkts-api/class-by-peer.ts +30 -12
  17. package/build/libarkts-copy/src/arkts-api/factory/nodeFactory.ts +38 -29
  18. package/build/libarkts-copy/src/arkts-api/index.ts +23 -24
  19. package/build/libarkts-copy/src/arkts-api/node-cache.ts +22 -13
  20. package/build/libarkts-copy/src/arkts-api/node-utilities/ArkTsConfig.ts +8 -8
  21. package/build/libarkts-copy/src/arkts-api/node-utilities/ArrayExpression.ts +9 -21
  22. package/build/libarkts-copy/src/arkts-api/node-utilities/AssignmentExpression.ts +12 -14
  23. package/build/libarkts-copy/src/arkts-api/node-utilities/BlockStatement.ts +5 -5
  24. package/build/libarkts-copy/src/arkts-api/node-utilities/CallExpression.ts +26 -24
  25. package/build/libarkts-copy/src/arkts-api/node-utilities/ClassDefinition.ts +62 -32
  26. package/build/libarkts-copy/src/arkts-api/node-utilities/ClassProperty.ts +14 -13
  27. package/build/libarkts-copy/src/arkts-api/node-utilities/ETSFunctionType.ts +24 -21
  28. package/build/libarkts-copy/src/arkts-api/node-utilities/ETSImportDeclaration.ts +10 -12
  29. package/build/libarkts-copy/src/arkts-api/node-utilities/ETSModule.ts +14 -18
  30. package/build/libarkts-copy/src/arkts-api/node-utilities/ETSParameterExpression.ts +15 -16
  31. package/build/libarkts-copy/src/arkts-api/node-utilities/ETSStructDeclaration.ts +5 -8
  32. package/build/libarkts-copy/src/arkts-api/node-utilities/ETSTuple.ts +6 -12
  33. package/build/libarkts-copy/src/arkts-api/node-utilities/MemberExpression.ts +12 -11
  34. package/build/libarkts-copy/src/arkts-api/node-utilities/MethodDefinition.ts +14 -33
  35. package/build/libarkts-copy/src/arkts-api/node-utilities/NumberLiteral.ts +12 -23
  36. package/build/libarkts-copy/src/arkts-api/node-utilities/ObjectExpression.ts +17 -21
  37. package/build/libarkts-copy/src/arkts-api/node-utilities/OpaqueTypeNode.ts +9 -8
  38. package/build/libarkts-copy/src/arkts-api/node-utilities/Program.ts +21 -16
  39. package/build/libarkts-copy/src/arkts-api/node-utilities/ScriptFunction.ts +52 -53
  40. package/build/libarkts-copy/src/arkts-api/node-utilities/TSInterfaceDeclaration.ts +22 -32
  41. package/build/libarkts-copy/src/arkts-api/node-utilities/TSTypeParameter.ts +12 -14
  42. package/build/libarkts-copy/src/arkts-api/node-utilities/TSTypeReferencePart.ts +10 -12
  43. package/build/libarkts-copy/src/arkts-api/node-utilities/TryStatement.ts +10 -9
  44. package/build/libarkts-copy/src/arkts-api/node-utilities/VariableDeclarator.ts +10 -12
  45. package/build/libarkts-copy/src/arkts-api/peers/ArktsObject.ts +8 -8
  46. package/build/libarkts-copy/src/arkts-api/peers/AstNode.ts +53 -65
  47. package/build/libarkts-copy/src/arkts-api/peers/Config.ts +18 -25
  48. package/build/libarkts-copy/src/arkts-api/peers/Context.ts +35 -42
  49. package/build/libarkts-copy/src/arkts-api/peers/ExternalSource.ts +9 -9
  50. package/build/libarkts-copy/src/arkts-api/peers/ImportPathManager.ts +6 -8
  51. package/build/libarkts-copy/src/arkts-api/peers/Options.ts +8 -8
  52. package/build/libarkts-copy/src/arkts-api/plugins.ts +205 -32
  53. package/build/libarkts-copy/src/arkts-api/static/global.ts +35 -36
  54. package/build/libarkts-copy/src/arkts-api/static/globalUtils.ts +5 -5
  55. package/build/libarkts-copy/src/arkts-api/static/profiler.ts +107 -91
  56. package/build/libarkts-copy/src/arkts-api/utilities/extensions.ts +54 -37
  57. package/build/libarkts-copy/src/arkts-api/utilities/nativePtrDecoder.ts +86 -69
  58. package/build/libarkts-copy/src/arkts-api/utilities/performance.ts +41 -24
  59. package/build/libarkts-copy/src/arkts-api/utilities/private.ts +69 -62
  60. package/build/libarkts-copy/src/arkts-api/utilities/public.ts +254 -175
  61. package/build/libarkts-copy/src/arkts-api/visitor.ts +599 -756
  62. package/build/libarkts-copy/src/arkts-api/wrapper-compat.ts +8 -8
  63. package/build/libarkts-copy/src/checkSdk.ts +15 -18
  64. package/build/libarkts-copy/src/index.ts +29 -29
  65. package/build/libarkts-copy/src/memo-node-cache.ts +143 -0
  66. package/build/libarkts-copy/src/plugin-utils.ts +64 -45
  67. package/build/libarkts-copy/src/reexport-for-generated.ts +13 -10
  68. package/build/libarkts-copy/src/tracer.ts +76 -70
  69. package/build/libarkts-copy/src/ts-api/factory/nodeFactory.ts +134 -274
  70. package/build/libarkts-copy/src/ts-api/factory/nodeTests.ts +23 -23
  71. package/build/libarkts-copy/src/ts-api/index.ts +27 -35
  72. package/build/libarkts-copy/src/ts-api/static/enums.ts +3 -3
  73. package/build/libarkts-copy/src/ts-api/types.ts +535 -395
  74. package/build/libarkts-copy/src/ts-api/utilities/private.ts +116 -113
  75. package/build/libarkts-copy/src/ts-api/utilities/public.ts +18 -18
  76. package/build/libarkts-copy/src/ts-api/visitor/visitor.ts +33 -49
  77. package/build/libarkts-copy/src/utils.ts +103 -80
  78. package/build/libarkts-copy/tsconfig.json +3 -2
  79. package/lib/index.js +2713 -7729
  80. package/package.json +53 -52
  81. package/templates/Es2pandaNativeModule.ts +1 -0
  82. package/templates/peer.ts +1 -0
  83. package/build/libarkts-copy/native/src/generated/bridges.cc +0 -16375
  84. package/build/libarkts-copy/src/arkts-api/peers/DiagnosticKind.ts +0 -24
  85. package/build/libarkts-copy/src/generated/Es2pandaEnums.ts +0 -1344
  86. package/build/libarkts-copy/src/generated/Es2pandaNativeModule.ts +0 -5192
  87. package/build/libarkts-copy/src/generated/factory.ts +0 -1285
  88. package/build/libarkts-copy/src/generated/index.ts +0 -222
  89. package/build/libarkts-copy/src/generated/peers/AnnotatedAstNode.ts +0 -44
  90. package/build/libarkts-copy/src/generated/peers/AnnotatedExpression.ts +0 -54
  91. package/build/libarkts-copy/src/generated/peers/AnnotatedStatement.ts +0 -45
  92. package/build/libarkts-copy/src/generated/peers/AnnotationDeclaration.ts +0 -165
  93. package/build/libarkts-copy/src/generated/peers/AnnotationUsage.ts +0 -84
  94. package/build/libarkts-copy/src/generated/peers/ArkTsConfig.ts +0 -73
  95. package/build/libarkts-copy/src/generated/peers/ArrayExpression.ts +0 -109
  96. package/build/libarkts-copy/src/generated/peers/ArrowFunctionExpression.ts +0 -119
  97. package/build/libarkts-copy/src/generated/peers/AssertStatement.ts +0 -65
  98. package/build/libarkts-copy/src/generated/peers/AssignmentExpression.ts +0 -111
  99. package/build/libarkts-copy/src/generated/peers/AstDumper.ts +0 -49
  100. package/build/libarkts-copy/src/generated/peers/AstVerifier.ts +0 -40
  101. package/build/libarkts-copy/src/generated/peers/AstVisitor.ts +0 -40
  102. package/build/libarkts-copy/src/generated/peers/AwaitExpression.ts +0 -61
  103. package/build/libarkts-copy/src/generated/peers/BigIntLiteral.ts +0 -61
  104. package/build/libarkts-copy/src/generated/peers/BinaryExpression.ts +0 -110
  105. package/build/libarkts-copy/src/generated/peers/BindingProps.ts +0 -40
  106. package/build/libarkts-copy/src/generated/peers/BlockExpression.ts +0 -72
  107. package/build/libarkts-copy/src/generated/peers/BlockStatement.ts +0 -94
  108. package/build/libarkts-copy/src/generated/peers/BooleanLiteral.ts +0 -61
  109. package/build/libarkts-copy/src/generated/peers/BreakStatement.ts +0 -78
  110. package/build/libarkts-copy/src/generated/peers/CallExpression.ts +0 -129
  111. package/build/libarkts-copy/src/generated/peers/CatchClause.ts +0 -74
  112. package/build/libarkts-copy/src/generated/peers/ChainExpression.ts +0 -68
  113. package/build/libarkts-copy/src/generated/peers/CharLiteral.ts +0 -58
  114. package/build/libarkts-copy/src/generated/peers/ClassDeclaration.ts +0 -76
  115. package/build/libarkts-copy/src/generated/peers/ClassDefinition.ts +0 -365
  116. package/build/libarkts-copy/src/generated/peers/ClassElement.ts +0 -76
  117. package/build/libarkts-copy/src/generated/peers/ClassExpression.ts +0 -62
  118. package/build/libarkts-copy/src/generated/peers/ClassProperty.ts +0 -137
  119. package/build/libarkts-copy/src/generated/peers/ClassStaticBlock.ts +0 -66
  120. package/build/libarkts-copy/src/generated/peers/CodeGen.ts +0 -40
  121. package/build/libarkts-copy/src/generated/peers/ConditionalExpression.ts +0 -82
  122. package/build/libarkts-copy/src/generated/peers/ContinueStatement.ts +0 -78
  123. package/build/libarkts-copy/src/generated/peers/DebuggerStatement.ts +0 -58
  124. package/build/libarkts-copy/src/generated/peers/Declaration.ts +0 -40
  125. package/build/libarkts-copy/src/generated/peers/Decorator.ts +0 -62
  126. package/build/libarkts-copy/src/generated/peers/DiagnosticInfo.ts +0 -40
  127. package/build/libarkts-copy/src/generated/peers/DirectEvalExpression.ts +0 -60
  128. package/build/libarkts-copy/src/generated/peers/DoWhileStatement.ts +0 -66
  129. package/build/libarkts-copy/src/generated/peers/DynamicImportData.ts +0 -40
  130. package/build/libarkts-copy/src/generated/peers/ETSClassLiteral.ts +0 -62
  131. package/build/libarkts-copy/src/generated/peers/ETSFunctionType.ts +0 -102
  132. package/build/libarkts-copy/src/generated/peers/ETSImportDeclaration.ts +0 -90
  133. package/build/libarkts-copy/src/generated/peers/ETSIntrinsicNode.ts +0 -69
  134. package/build/libarkts-copy/src/generated/peers/ETSKeyofType.ts +0 -61
  135. package/build/libarkts-copy/src/generated/peers/ETSModule.ts +0 -129
  136. package/build/libarkts-copy/src/generated/peers/ETSNewArrayInstanceExpression.ts +0 -75
  137. package/build/libarkts-copy/src/generated/peers/ETSNewClassInstanceExpression.ts +0 -79
  138. package/build/libarkts-copy/src/generated/peers/ETSNewMultiDimArrayInstanceExpression.ts +0 -75
  139. package/build/libarkts-copy/src/generated/peers/ETSNullType.ts +0 -58
  140. package/build/libarkts-copy/src/generated/peers/ETSPackageDeclaration.ts +0 -59
  141. package/build/libarkts-copy/src/generated/peers/ETSParameterExpression.ts +0 -189
  142. package/build/libarkts-copy/src/generated/peers/ETSPrimitiveType.ts +0 -62
  143. package/build/libarkts-copy/src/generated/peers/ETSReExportDeclaration.ts +0 -55
  144. package/build/libarkts-copy/src/generated/peers/ETSStringLiteralType.ts +0 -58
  145. package/build/libarkts-copy/src/generated/peers/ETSStructDeclaration.ts +0 -59
  146. package/build/libarkts-copy/src/generated/peers/ETSTuple.ts +0 -89
  147. package/build/libarkts-copy/src/generated/peers/ETSTypeReference.ts +0 -66
  148. package/build/libarkts-copy/src/generated/peers/ETSTypeReferencePart.ts +0 -78
  149. package/build/libarkts-copy/src/generated/peers/ETSUndefinedType.ts +0 -58
  150. package/build/libarkts-copy/src/generated/peers/ETSUnionType.ts +0 -75
  151. package/build/libarkts-copy/src/generated/peers/ETSWildcardType.ts +0 -63
  152. package/build/libarkts-copy/src/generated/peers/EmptyStatement.ts +0 -66
  153. package/build/libarkts-copy/src/generated/peers/ErrorLogger.ts +0 -40
  154. package/build/libarkts-copy/src/generated/peers/ExportAllDeclaration.ts +0 -66
  155. package/build/libarkts-copy/src/generated/peers/ExportDefaultDeclaration.ts +0 -64
  156. package/build/libarkts-copy/src/generated/peers/ExportNamedDeclaration.ts +0 -94
  157. package/build/libarkts-copy/src/generated/peers/ExportSpecifier.ts +0 -82
  158. package/build/libarkts-copy/src/generated/peers/Expression.ts +0 -84
  159. package/build/libarkts-copy/src/generated/peers/ExpressionStatement.ts +0 -67
  160. package/build/libarkts-copy/src/generated/peers/ForInStatement.ts +0 -69
  161. package/build/libarkts-copy/src/generated/peers/ForOfStatement.ts +0 -72
  162. package/build/libarkts-copy/src/generated/peers/ForUpdateStatement.ts +0 -67
  163. package/build/libarkts-copy/src/generated/peers/FunctionDeclaration.ts +0 -106
  164. package/build/libarkts-copy/src/generated/peers/FunctionExpression.ts +0 -74
  165. package/build/libarkts-copy/src/generated/peers/FunctionSignature.ts +0 -70
  166. package/build/libarkts-copy/src/generated/peers/IRNode.ts +0 -40
  167. package/build/libarkts-copy/src/generated/peers/Identifier.ts +0 -162
  168. package/build/libarkts-copy/src/generated/peers/IfStatement.ts +0 -78
  169. package/build/libarkts-copy/src/generated/peers/ImportDeclaration.ts +0 -87
  170. package/build/libarkts-copy/src/generated/peers/ImportDefaultSpecifier.ts +0 -62
  171. package/build/libarkts-copy/src/generated/peers/ImportExpression.ts +0 -61
  172. package/build/libarkts-copy/src/generated/peers/ImportNamespaceSpecifier.ts +0 -62
  173. package/build/libarkts-copy/src/generated/peers/ImportSource.ts +0 -40
  174. package/build/libarkts-copy/src/generated/peers/ImportSpecifier.ts +0 -73
  175. package/build/libarkts-copy/src/generated/peers/IndexInfo.ts +0 -40
  176. package/build/libarkts-copy/src/generated/peers/LabelPair.ts +0 -40
  177. package/build/libarkts-copy/src/generated/peers/LabelledStatement.ts +0 -68
  178. package/build/libarkts-copy/src/generated/peers/Literal.ts +0 -53
  179. package/build/libarkts-copy/src/generated/peers/LoopStatement.ts +0 -45
  180. package/build/libarkts-copy/src/generated/peers/MaybeOptionalExpression.ts +0 -53
  181. package/build/libarkts-copy/src/generated/peers/MemberExpression.ts +0 -115
  182. package/build/libarkts-copy/src/generated/peers/MetaProperty.ts +0 -62
  183. package/build/libarkts-copy/src/generated/peers/MethodDefinition.ts +0 -152
  184. package/build/libarkts-copy/src/generated/peers/NamedType.ts +0 -84
  185. package/build/libarkts-copy/src/generated/peers/NewExpression.ts +0 -64
  186. package/build/libarkts-copy/src/generated/peers/NullLiteral.ts +0 -58
  187. package/build/libarkts-copy/src/generated/peers/NumberLiteral.ts +0 -78
  188. package/build/libarkts-copy/src/generated/peers/ObjectDescriptor.ts +0 -40
  189. package/build/libarkts-copy/src/generated/peers/ObjectExpression.ts +0 -94
  190. package/build/libarkts-copy/src/generated/peers/OmittedExpression.ts +0 -58
  191. package/build/libarkts-copy/src/generated/peers/OpaqueTypeNode.ts +0 -58
  192. package/build/libarkts-copy/src/generated/peers/OverloadDeclaration.ts +0 -101
  193. package/build/libarkts-copy/src/generated/peers/PrefixAssertionExpression.ts +0 -65
  194. package/build/libarkts-copy/src/generated/peers/Program.ts +0 -206
  195. package/build/libarkts-copy/src/generated/peers/Property.ts +0 -92
  196. package/build/libarkts-copy/src/generated/peers/RegExpLiteral.ts +0 -65
  197. package/build/libarkts-copy/src/generated/peers/ReturnStatement.ts +0 -75
  198. package/build/libarkts-copy/src/generated/peers/ScopeFindResult.ts +0 -40
  199. package/build/libarkts-copy/src/generated/peers/ScriptFunction.ts +0 -310
  200. package/build/libarkts-copy/src/generated/peers/ScriptFunctionData.ts +0 -40
  201. package/build/libarkts-copy/src/generated/peers/SequenceExpression.ts +0 -61
  202. package/build/libarkts-copy/src/generated/peers/SignatureInfo.ts +0 -40
  203. package/build/libarkts-copy/src/generated/peers/SourcePosition.ts +0 -48
  204. package/build/libarkts-copy/src/generated/peers/SourceRange.ts +0 -40
  205. package/build/libarkts-copy/src/generated/peers/SpreadElement.ts +0 -83
  206. package/build/libarkts-copy/src/generated/peers/SrcDumper.ts +0 -120
  207. package/build/libarkts-copy/src/generated/peers/Statement.ts +0 -44
  208. package/build/libarkts-copy/src/generated/peers/StringLiteral.ts +0 -66
  209. package/build/libarkts-copy/src/generated/peers/SuggestionInfo.ts +0 -40
  210. package/build/libarkts-copy/src/generated/peers/SuperExpression.ts +0 -58
  211. package/build/libarkts-copy/src/generated/peers/SwitchCaseStatement.ts +0 -70
  212. package/build/libarkts-copy/src/generated/peers/SwitchStatement.ts +0 -71
  213. package/build/libarkts-copy/src/generated/peers/TSAnyKeyword.ts +0 -58
  214. package/build/libarkts-copy/src/generated/peers/TSArrayType.ts +0 -61
  215. package/build/libarkts-copy/src/generated/peers/TSAsExpression.ts +0 -84
  216. package/build/libarkts-copy/src/generated/peers/TSBigintKeyword.ts +0 -58
  217. package/build/libarkts-copy/src/generated/peers/TSBooleanKeyword.ts +0 -58
  218. package/build/libarkts-copy/src/generated/peers/TSClassImplements.ts +0 -70
  219. package/build/libarkts-copy/src/generated/peers/TSConditionalType.ts +0 -71
  220. package/build/libarkts-copy/src/generated/peers/TSConstructorType.ts +0 -73
  221. package/build/libarkts-copy/src/generated/peers/TSEnumDeclaration.ts +0 -112
  222. package/build/libarkts-copy/src/generated/peers/TSEnumMember.ts +0 -76
  223. package/build/libarkts-copy/src/generated/peers/TSExternalModuleReference.ts +0 -61
  224. package/build/libarkts-copy/src/generated/peers/TSFunctionType.ts +0 -75
  225. package/build/libarkts-copy/src/generated/peers/TSImportEqualsDeclaration.ts +0 -69
  226. package/build/libarkts-copy/src/generated/peers/TSImportType.ts +0 -72
  227. package/build/libarkts-copy/src/generated/peers/TSIndexSignature.ts +0 -73
  228. package/build/libarkts-copy/src/generated/peers/TSIndexedAccessType.ts +0 -64
  229. package/build/libarkts-copy/src/generated/peers/TSInferType.ts +0 -62
  230. package/build/libarkts-copy/src/generated/peers/TSInterfaceBody.ts +0 -61
  231. package/build/libarkts-copy/src/generated/peers/TSInterfaceDeclaration.ts +0 -160
  232. package/build/libarkts-copy/src/generated/peers/TSInterfaceHeritage.ts +0 -62
  233. package/build/libarkts-copy/src/generated/peers/TSIntersectionType.ts +0 -62
  234. package/build/libarkts-copy/src/generated/peers/TSLiteralType.ts +0 -62
  235. package/build/libarkts-copy/src/generated/peers/TSMappedType.ts +0 -72
  236. package/build/libarkts-copy/src/generated/peers/TSMethodSignature.ts +0 -79
  237. package/build/libarkts-copy/src/generated/peers/TSModuleBlock.ts +0 -61
  238. package/build/libarkts-copy/src/generated/peers/TSModuleDeclaration.ts +0 -71
  239. package/build/libarkts-copy/src/generated/peers/TSNamedTupleMember.ts +0 -68
  240. package/build/libarkts-copy/src/generated/peers/TSNeverKeyword.ts +0 -58
  241. package/build/libarkts-copy/src/generated/peers/TSNonNullExpression.ts +0 -66
  242. package/build/libarkts-copy/src/generated/peers/TSNullKeyword.ts +0 -58
  243. package/build/libarkts-copy/src/generated/peers/TSNumberKeyword.ts +0 -58
  244. package/build/libarkts-copy/src/generated/peers/TSObjectKeyword.ts +0 -58
  245. package/build/libarkts-copy/src/generated/peers/TSParameterProperty.ts +0 -74
  246. package/build/libarkts-copy/src/generated/peers/TSParenthesizedType.ts +0 -62
  247. package/build/libarkts-copy/src/generated/peers/TSPropertySignature.ts +0 -80
  248. package/build/libarkts-copy/src/generated/peers/TSQualifiedName.ts +0 -71
  249. package/build/libarkts-copy/src/generated/peers/TSSignatureDeclaration.ts +0 -75
  250. package/build/libarkts-copy/src/generated/peers/TSStringKeyword.ts +0 -58
  251. package/build/libarkts-copy/src/generated/peers/TSThisType.ts +0 -58
  252. package/build/libarkts-copy/src/generated/peers/TSTupleType.ts +0 -61
  253. package/build/libarkts-copy/src/generated/peers/TSTypeAliasDeclaration.ts +0 -151
  254. package/build/libarkts-copy/src/generated/peers/TSTypeAssertion.ts +0 -71
  255. package/build/libarkts-copy/src/generated/peers/TSTypeLiteral.ts +0 -61
  256. package/build/libarkts-copy/src/generated/peers/TSTypeOperator.ts +0 -71
  257. package/build/libarkts-copy/src/generated/peers/TSTypeParameter.ts +0 -121
  258. package/build/libarkts-copy/src/generated/peers/TSTypeParameterDeclaration.ts +0 -75
  259. package/build/libarkts-copy/src/generated/peers/TSTypeParameterInstantiation.ts +0 -62
  260. package/build/libarkts-copy/src/generated/peers/TSTypePredicate.ts +0 -68
  261. package/build/libarkts-copy/src/generated/peers/TSTypeQuery.ts +0 -62
  262. package/build/libarkts-copy/src/generated/peers/TSTypeReference.ts +0 -70
  263. package/build/libarkts-copy/src/generated/peers/TSUndefinedKeyword.ts +0 -58
  264. package/build/libarkts-copy/src/generated/peers/TSUnionType.ts +0 -61
  265. package/build/libarkts-copy/src/generated/peers/TSUnknownKeyword.ts +0 -58
  266. package/build/libarkts-copy/src/generated/peers/TSVoidKeyword.ts +0 -58
  267. package/build/libarkts-copy/src/generated/peers/TaggedTemplateExpression.ts +0 -69
  268. package/build/libarkts-copy/src/generated/peers/TemplateElement.ts +0 -69
  269. package/build/libarkts-copy/src/generated/peers/TemplateLiteral.ts +0 -68
  270. package/build/libarkts-copy/src/generated/peers/ThisExpression.ts +0 -58
  271. package/build/libarkts-copy/src/generated/peers/ThrowStatement.ts +0 -62
  272. package/build/libarkts-copy/src/generated/peers/TryStatement.ts +0 -89
  273. package/build/libarkts-copy/src/generated/peers/TypeNode.ts +0 -81
  274. package/build/libarkts-copy/src/generated/peers/TypedAstNode.ts +0 -44
  275. package/build/libarkts-copy/src/generated/peers/TypedStatement.ts +0 -45
  276. package/build/libarkts-copy/src/generated/peers/TypeofExpression.ts +0 -61
  277. package/build/libarkts-copy/src/generated/peers/UnaryExpression.ts +0 -70
  278. package/build/libarkts-copy/src/generated/peers/UndefinedLiteral.ts +0 -58
  279. package/build/libarkts-copy/src/generated/peers/UpdateExpression.ts +0 -68
  280. package/build/libarkts-copy/src/generated/peers/VReg.ts +0 -40
  281. package/build/libarkts-copy/src/generated/peers/ValidationInfo.ts +0 -50
  282. package/build/libarkts-copy/src/generated/peers/VariableDeclaration.ts +0 -113
  283. package/build/libarkts-copy/src/generated/peers/VariableDeclarator.ts +0 -79
  284. package/build/libarkts-copy/src/generated/peers/VerificationContext.ts +0 -40
  285. package/build/libarkts-copy/src/generated/peers/VerifierMessage.ts +0 -40
  286. package/build/libarkts-copy/src/generated/peers/WhileStatement.ts +0 -71
  287. package/build/libarkts-copy/src/generated/peers/YieldExpression.ts +0 -64
@@ -13,58 +13,231 @@
13
13
  * limitations under the License.
14
14
  */
15
15
 
16
- import { Es2pandaContextState } from "../generated/Es2pandaEnums"
17
- import { Program } from "../generated"
18
- import { ExternalSource } from "./peers/ExternalSource"
19
- import { KNativePointer } from "@koalaui/interop"
20
- import { global } from "./static/global"
21
- import { RunTransformerHooks } from "../plugin-utils"
16
+ import { Es2pandaContextState } from '../../generated/Es2pandaEnums';
17
+ import { ETSModule, Program } from '../../generated';
18
+ import { ExternalSource } from './peers/ExternalSource';
19
+ import { KNativePointer, nullptr } from '@koalaui/interop';
20
+ import { global } from './static/global';
21
+ import { RunTransformerHooks } from '../plugin-utils';
22
+ import { Context } from './peers/Context';
22
23
 
23
24
  export interface CompilationOptions {
24
- readonly isProgramForCodegeneration: boolean,
25
- readonly state: Es2pandaContextState,
25
+ readonly isProgramForCodegeneration: boolean;
26
+ readonly state: Es2pandaContextState;
26
27
  }
27
28
 
28
- export interface PluginContext {
29
- setParameter<V>(name: string, value: V): void
30
- parameter<V>(name: string) : V | undefined
29
+ export interface DependentModuleConfig {
30
+ packageName: string;
31
+ moduleName: string;
32
+ moduleType: string;
33
+ modulePath: string;
34
+ sourceRoots: string[];
35
+ entryFile: string;
36
+ language: string;
37
+ declFilesPath?: string;
38
+ dependencies?: string[];
31
39
  }
32
40
 
33
- export class PluginContextImpl implements PluginContext {
34
- map = new Map<String, Object|undefined>()
35
- parameter<V>(name: string): V|undefined {
36
- return this.map.get(name) as (V|undefined)
41
+ export interface ProjectConfig {
42
+ bundleName: string;
43
+ moduleName: string;
44
+ cachePath: string;
45
+ dependentModuleList: DependentModuleConfig[];
46
+ appResource: string;
47
+ rawFileResource: string;
48
+ buildLoaderJson: string;
49
+ hspResourcesMap: boolean;
50
+ compileHar: boolean;
51
+ byteCodeHar: boolean;
52
+ uiTransformOptimization: boolean;
53
+ resetBundleName: boolean;
54
+ allowEmptyBundleName: boolean;
55
+ moduleType: string;
56
+ moduleRootPath: string;
57
+ aceModuleJsonPath: string;
58
+ ignoreError: boolean;
59
+ projectPath: string;
60
+ projectRootPath: string;
61
+ integratedHsp: boolean;
62
+ frameworkMode?: string;
63
+ isUi2abc?: boolean;
64
+ }
65
+
66
+ export interface PluginContextBase {
67
+ setParameter<V>(name: string, value: V): void;
68
+ parameter<V>(name: string): V | undefined;
69
+ }
70
+
71
+ export interface PluginContext extends PluginContextBase {
72
+ /**
73
+ * @deprecated
74
+ */
75
+ setArkTSProgram(program: Program): void
76
+
77
+ /**
78
+ * @deprecated
79
+ */
80
+ getArkTSProgram(): Program | undefined
81
+
82
+ setCodingFilePath(codingFilePath: string): void
83
+
84
+ getCodingFilePath(): string | undefined
85
+
86
+ isCoding(): boolean
87
+ }
88
+
89
+
90
+ export class PluginContextBaseImpl implements PluginContextBase {
91
+ map = new Map<string, object | undefined>();
92
+
93
+ parameter<V>(name: string): V | undefined {
94
+ return this.map.get(name) as V | undefined;
37
95
  }
38
- setParameter<V>(name: string, value: V) {
39
- this.map.set(name, value as Object)
96
+ setParameter<V>(name: string, value: V): void {
97
+ this.map.set(name, value as object);
40
98
  }
41
99
  }
42
100
 
43
- export type ProgramTransformer = (program: Program, compilationOptions: CompilationOptions, context: PluginContext) => void
101
+ // Temporary hack to use plugin context's parameters when compiling with driver
102
+ export function extendPluginContext(context: PluginContextImpl) {
103
+ if (typeof context.setParameter == "function") {
104
+ return
105
+ }
106
+ const pluginContextBaseImpl = new PluginContextBaseImpl()
107
+ context.map = pluginContextBaseImpl.map
108
+ context.setParameter = pluginContextBaseImpl.setParameter
109
+ context.parameter = pluginContextBaseImpl.parameter
110
+ }
111
+
112
+ export class PluginContextImpl extends PluginContextBaseImpl implements PluginContext {
113
+ private ast: ETSModule | undefined;
114
+ private projectConfig: ProjectConfig | undefined;
115
+
116
+ private program: Program | undefined;
117
+ private codingFilePath: string | undefined;
118
+
119
+ setContextPtr(ptr: KNativePointer): void {
120
+ if (!global.compilerContext) {
121
+ global.compilerContext = new Context(ptr);
122
+ } else {
123
+ global.compilerContext.peer = ptr;
124
+ }
125
+ }
126
+
127
+ getContextPtr(): KNativePointer {
128
+ return global.compilerContext?.peer ?? nullptr;
129
+ }
130
+
131
+ public setProjectConfig(projectConfig: ProjectConfig): void {
132
+ this.projectConfig = projectConfig;
133
+ }
134
+
135
+ public getProjectConfig(): ProjectConfig | undefined {
136
+ return this.projectConfig;
137
+ }
138
+ /**
139
+ * @deprecated
140
+ */
141
+ public setArkTSAst(ast: ETSModule): void {
142
+ this.ast = ast;
143
+ }
144
+
145
+ /**
146
+ * @deprecated
147
+ */
148
+ public getArkTSAst(): ETSModule | undefined {
149
+ return this.ast;
150
+ }
151
+
152
+ /**
153
+ * @deprecated
154
+ */
155
+ public setArkTSProgram(program: Program): void {
156
+ this.program = program;
157
+ }
158
+
159
+ /**ProjectConfig
160
+ * @deprecated
161
+ */
162
+ public getArkTSProgram(): Program | undefined {
163
+ return this.program;
164
+ }
165
+
166
+ public setCodingFilePath(codingFilePath: string): void {
167
+ this.codingFilePath = codingFilePath;
168
+ }
169
+
170
+ public getCodingFilePath(): string | undefined {
171
+ return this.codingFilePath;
172
+ }
173
+
174
+ public isCoding(): boolean {
175
+ return this.codingFilePath !== undefined;
176
+ }
177
+ }
178
+
179
+ export type PluginHandlerFunction = () => void;
180
+
181
+ export type PluginHandlerObject = {
182
+ order: 'pre' | 'post' | undefined;
183
+ handler: PluginHandlerFunction;
184
+ };
185
+
186
+ export type PluginHandler = PluginHandlerFunction | PluginHandlerObject;
187
+
188
+ export type ProgramTransformer = (
189
+ program: Program,
190
+ compilationOptions: CompilationOptions,
191
+ context: PluginContext
192
+ ) => void;
193
+
194
+ export interface Plugins {
195
+ name: string;
196
+ afterNew?: PluginHandler;
197
+ parsed?: PluginHandler;
198
+ scopeInited?: PluginHandler;
199
+ checked?: PluginHandler;
200
+ lowered?: PluginHandler;
201
+ asmGenerated?: PluginHandler;
202
+ binGenerated?: PluginHandler;
203
+ clean?: PluginHandler;
204
+ }
205
+
206
+ export type PluginState = keyof Omit<Plugins, 'name'>;
207
+
208
+ export type PluginExecutor = {
209
+ name: string;
210
+ handler: PluginHandlerFunction;
211
+ };
212
+
213
+ export interface BuildConfig {
214
+ compileFiles: string[];
215
+ }
216
+
44
217
 
45
- export function defaultFilter(name: string) {
46
- if (name.startsWith("std.")) return false
47
- if (name.startsWith("escompat")) return false
48
- return true
218
+ export function defaultFilter(name: string): boolean {
219
+ if (name.startsWith('std.')) return false;
220
+ if (name.startsWith('escompat')) return false;
221
+ return true;
49
222
  }
50
223
 
51
224
  export function listPrograms(program: Program, filter: (name: string) => boolean = defaultFilter): Program[] {
52
225
  return [
53
226
  program,
54
- ...program.getExternalSources().flatMap((it: ExternalSource) => {
227
+ ...program.getExternalSources().flatMap((it: ExternalSource): Program[] => {
55
228
  if (filter(it.getName())) {
56
- return it.programs
229
+ return it.programs;
57
230
  }
58
- return []
59
- })
60
- ]
231
+ return [];
232
+ }),
233
+ ];
61
234
  }
62
235
 
63
236
  export interface PluginEntry {
64
- name?: string
65
- parsed?: (hooks?: RunTransformerHooks) => void
66
- checked?: (hooks?: RunTransformerHooks) => void
67
- clean?: (hooks?: RunTransformerHooks) => void
237
+ name?: string;
238
+ parsed?: (hooks?: RunTransformerHooks) => void;
239
+ checked?: (hooks?: RunTransformerHooks) => void;
240
+ clean?: (hooks?: RunTransformerHooks) => void;
68
241
  }
69
242
 
70
- export type PluginInitializer = (parsedJson?: Object, checkedJson?: Object) => PluginEntry
243
+ export type PluginInitializer = (parsedJson?: object, checkedJson?: object) => PluginEntry;
@@ -13,95 +13,94 @@
13
13
  * limitations under the License.
14
14
  */
15
15
 
16
- import { throwError } from "../../utils"
17
- import { KNativePointer, nullptr } from "@koalaui/interop"
18
- import { initEs2panda, Es2pandaNativeModule, initGeneratedEs2panda } from "../../Es2pandaNativeModule"
19
- import { Es2pandaNativeModule as GeneratedEs2pandaNativeModule } from "../../generated/Es2pandaNativeModule"
20
- import { initInterop, InteropNativeModule } from "../../InteropNativeModule"
21
- import { Context } from "../peers/Context"
22
- import { Profiler } from "./profiler"
23
- import { ArkTsConfig } from "../../generated"
16
+ import { throwError } from '../../utils';
17
+ import { KNativePointer, nullptr } from '@koalaui/interop';
18
+ import { initEs2panda, Es2pandaNativeModule, initGeneratedEs2panda } from '../../Es2pandaNativeModule';
19
+ import { Es2pandaNativeModule as GeneratedEs2pandaNativeModule } from '../../../generated/Es2pandaNativeModule';
20
+ import { initInterop, InteropNativeModule } from '../../InteropNativeModule';
21
+ import { Context } from '../peers/Context';
22
+ import { Profiler } from './profiler';
23
+ import { ArkTsConfig } from '../../../generated';
24
24
  import { Config } from '../peers/Config';
25
25
 
26
26
  export class UpdateTracker {
27
- stack: boolean[] = []
27
+ stack: boolean[] = [];
28
28
 
29
29
  push() {
30
- this.stack.push(false)
30
+ this.stack.push(false);
31
31
  }
32
32
 
33
33
  update() {
34
- this.stack[this.stack.length - 1] = true
34
+ this.stack[this.stack.length - 1] = true;
35
35
  }
36
36
 
37
37
  check() {
38
- return this.stack.pop()
38
+ return this.stack.pop();
39
39
  }
40
40
  }
41
41
 
42
42
  export class global {
43
- public static filePath: string = "./plugins/input/main.ets"
43
+ public static filePath: string = './plugins/input/main.ets';
44
44
 
45
- public static arktsconfig?: ArkTsConfig
45
+ public static arktsconfig?: ArkTsConfig;
46
46
  public static configObj?: Config;
47
47
 
48
- private static _config?: KNativePointer
48
+ private static _config?: KNativePointer;
49
49
  public static set config(config: KNativePointer) {
50
- global._config = config
50
+ global._config = config;
51
51
  global.configObj = new Config(global._config);
52
52
  }
53
53
  public static get config(): KNativePointer {
54
- return global._config ?? throwError('Global.config not initialized')
54
+ return global._config ?? throwError('Global.config not initialized');
55
55
  }
56
56
  public static configIsInitialized(): boolean {
57
- return global._config !== undefined && global._config !== nullptr
57
+ return !!global._config && global._config !== nullptr;
58
58
  }
59
59
  public static resetConfig(): void {
60
- global._config = undefined
60
+ global._config = undefined;
61
61
  global.configObj = undefined;
62
62
  }
63
63
 
64
64
  // Improve: rename to contextPeer
65
65
  public static get context(): KNativePointer {
66
- return global.compilerContext?.peer ?? throwError('Global.context not initialized')
66
+ return global.compilerContext?.peer ?? throwError('Global.context not initialized');
67
67
  }
68
68
 
69
69
  // Improve: rename to context when the pointer valued one is eliminated
70
- public static compilerContext: Context | undefined
71
- public static isContextGenerateAbcForExternalSourceFiles: boolean = false
70
+ public static compilerContext: Context | undefined;
71
+ public static isContextGenerateAbcForExternalSourceFiles: boolean = false;
72
72
 
73
- private static _es2panda: Es2pandaNativeModule | undefined = undefined
73
+ private static _es2panda: Es2pandaNativeModule | undefined = undefined;
74
74
  public static get es2panda(): Es2pandaNativeModule {
75
75
  if (this._es2panda === undefined) {
76
- this._es2panda = initEs2panda()
76
+ this._es2panda = initEs2panda();
77
77
  }
78
- return this._es2panda
78
+ return this._es2panda;
79
79
  }
80
80
 
81
- private static _generatedEs2panda: GeneratedEs2pandaNativeModule | undefined = undefined
81
+ private static _generatedEs2panda: GeneratedEs2pandaNativeModule | undefined = undefined;
82
82
  public static get generatedEs2panda(): GeneratedEs2pandaNativeModule {
83
83
  if (this._generatedEs2panda === undefined) {
84
- this._generatedEs2panda = initGeneratedEs2panda()
84
+ this._generatedEs2panda = initGeneratedEs2panda();
85
85
  }
86
- return this._generatedEs2panda
86
+ return this._generatedEs2panda;
87
87
  }
88
88
 
89
- private static _interop: InteropNativeModule | undefined = undefined
89
+ private static _interop: InteropNativeModule | undefined = undefined;
90
90
  public static get interop(): InteropNativeModule {
91
- if (this._interop === undefined) this._interop = initInterop()
92
- return this._interop
93
-
91
+ if (this._interop === undefined) this._interop = initInterop();
92
+ return this._interop;
94
93
  }
95
94
 
96
- public static profiler = new Profiler()
95
+ public static profiler = new Profiler();
97
96
 
98
97
  // Check node type values during node creation
99
- public static validatePeerTypes = false
98
+ public static validatePeerTypes = false;
100
99
 
101
100
  public static clearContext(): void {
102
- global.compilerContext = undefined
101
+ global.compilerContext = undefined;
103
102
  }
104
103
 
105
104
  // Keep track of update info to optimize performance
106
- public static updateTracker: UpdateTracker = new UpdateTracker()
105
+ public static updateTracker: UpdateTracker = new UpdateTracker();
107
106
  }
@@ -13,10 +13,10 @@
13
13
  * limitations under the License.
14
14
  */
15
15
 
16
- import { KNativePointer } from "@koalaui/interop";
17
- import { Context } from "../peers/Context";
18
- import { global } from "./global";
19
- import { NodeCache } from "../node-cache"
16
+ import { KNativePointer } from '@koalaui/interop';
17
+ import { Context } from '../peers/Context';
18
+ import { global } from './global';
19
+ import { NodeCache } from '../node-cache';
20
20
 
21
21
  export function getOrUpdateGlobalContext(peer: KNativePointer): Context {
22
22
  if (!global.compilerContext || global.context !== peer) {
@@ -24,4 +24,4 @@ export function getOrUpdateGlobalContext(peer: KNativePointer): Context {
24
24
  global.compilerContext = new Context(peer);
25
25
  }
26
26
  return global.compilerContext;
27
- }
27
+ }