@jackctaylor/roblox-ts 3.0.0-projectrefs.0

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 (450) hide show
  1. package/CHANGELOG.md +716 -0
  2. package/LICENSE +21 -0
  3. package/README.md +55 -0
  4. package/include/Promise.lua +2068 -0
  5. package/include/RuntimeLib.lua +258 -0
  6. package/out/CLI/cli.d.ts +2 -0
  7. package/out/CLI/cli.js +41 -0
  8. package/out/CLI/commands/build.d.ts +7 -0
  9. package/out/CLI/commands/build.js +438 -0
  10. package/out/CLI/errors/CLIError.d.ts +4 -0
  11. package/out/CLI/errors/CLIError.js +12 -0
  12. package/out/CLI/index.d.ts +3 -0
  13. package/out/CLI/index.js +22 -0
  14. package/out/CLI/test.d.ts +1 -0
  15. package/out/CLI/test.js +82 -0
  16. package/out/CLI/util/patchFs.d.ts +1 -0
  17. package/out/CLI/util/patchFs.js +26 -0
  18. package/out/Project/classes/VirtualFileSystem.d.ts +14 -0
  19. package/out/Project/classes/VirtualFileSystem.js +102 -0
  20. package/out/Project/classes/VirtualProject.d.ts +15 -0
  21. package/out/Project/classes/VirtualProject.js +121 -0
  22. package/out/Project/functions/buildProject.d.ts +18 -0
  23. package/out/Project/functions/buildProject.js +48 -0
  24. package/out/Project/functions/buildProjectReferences.d.ts +3 -0
  25. package/out/Project/functions/buildProjectReferences.js +78 -0
  26. package/out/Project/functions/buildSolution.d.ts +10 -0
  27. package/out/Project/functions/buildSolution.js +97 -0
  28. package/out/Project/functions/checkFileName.d.ts +1 -0
  29. package/out/Project/functions/checkFileName.js +18 -0
  30. package/out/Project/functions/checkRojoConfig.d.ts +4 -0
  31. package/out/Project/functions/checkRojoConfig.js +26 -0
  32. package/out/Project/functions/cleanup.d.ts +2 -0
  33. package/out/Project/functions/cleanup.js +30 -0
  34. package/out/Project/functions/compileFiles.d.ts +4 -0
  35. package/out/Project/functions/compileFiles.js +160 -0
  36. package/out/Project/functions/compileProject.d.ts +14 -0
  37. package/out/Project/functions/compileProject.js +71 -0
  38. package/out/Project/functions/copyFiles.d.ts +3 -0
  39. package/out/Project/functions/copyFiles.js +13 -0
  40. package/out/Project/functions/copyInclude.d.ts +2 -0
  41. package/out/Project/functions/copyInclude.js +17 -0
  42. package/out/Project/functions/copyItem.d.ts +3 -0
  43. package/out/Project/functions/copyItem.js +27 -0
  44. package/out/Project/functions/createNodeModulesPathMapping.d.ts +1 -0
  45. package/out/Project/functions/createNodeModulesPathMapping.js +31 -0
  46. package/out/Project/functions/createPathTranslator.d.ts +4 -0
  47. package/out/Project/functions/createPathTranslator.js +22 -0
  48. package/out/Project/functions/createProgramFactory.d.ts +3 -0
  49. package/out/Project/functions/createProgramFactory.js +31 -0
  50. package/out/Project/functions/createProjectData.d.ts +2 -0
  51. package/out/Project/functions/createProjectData.js +102 -0
  52. package/out/Project/functions/createProjectProgram.d.ts +3 -0
  53. package/out/Project/functions/createProjectProgram.js +11 -0
  54. package/out/Project/functions/getChangedFilePaths.d.ts +2 -0
  55. package/out/Project/functions/getChangedFilePaths.js +47 -0
  56. package/out/Project/functions/getChangedSourceFiles.d.ts +2 -0
  57. package/out/Project/functions/getChangedSourceFiles.js +19 -0
  58. package/out/Project/functions/getParsedCommandLine.d.ts +3 -0
  59. package/out/Project/functions/getParsedCommandLine.js +41 -0
  60. package/out/Project/functions/getProjectReferences.d.ts +2 -0
  61. package/out/Project/functions/getProjectReferences.js +65 -0
  62. package/out/Project/functions/getResolvedProjectReferences.d.ts +3 -0
  63. package/out/Project/functions/getResolvedProjectReferences.js +43 -0
  64. package/out/Project/functions/setupProjectWatchProgram.d.ts +2 -0
  65. package/out/Project/functions/setupProjectWatchProgram.js +352 -0
  66. package/out/Project/functions/setupSolutionWatchProgram.d.ts +2 -0
  67. package/out/Project/functions/setupSolutionWatchProgram.js +355 -0
  68. package/out/Project/functions/tryRemoveOutput.d.ts +2 -0
  69. package/out/Project/functions/tryRemoveOutput.js +30 -0
  70. package/out/Project/functions/validateCompilerOptions.d.ts +2 -0
  71. package/out/Project/functions/validateCompilerOptions.js +87 -0
  72. package/out/Project/index.d.ts +4 -0
  73. package/out/Project/index.js +20 -0
  74. package/out/Project/preEmitDiagnostics/fileUsesCommentDirectives.d.ts +3 -0
  75. package/out/Project/preEmitDiagnostics/fileUsesCommentDirectives.js +28 -0
  76. package/out/Project/transformers/builtin/transformPaths.d.ts +5 -0
  77. package/out/Project/transformers/builtin/transformPaths.js +129 -0
  78. package/out/Project/transformers/builtin/transformTypeReferenceDirectives.d.ts +2 -0
  79. package/out/Project/transformers/builtin/transformTypeReferenceDirectives.js +23 -0
  80. package/out/Project/transformers/createTransformerList.d.ts +4 -0
  81. package/out/Project/transformers/createTransformerList.js +87 -0
  82. package/out/Project/transformers/createTransformerWatcher.d.ts +3 -0
  83. package/out/Project/transformers/createTransformerWatcher.js +59 -0
  84. package/out/Project/transformers/getPluginConfigs.d.ts +2 -0
  85. package/out/Project/transformers/getPluginConfigs.js +34 -0
  86. package/out/Project/util/createReadBuildProgramHost.d.ts +5 -0
  87. package/out/Project/util/createReadBuildProgramHost.js +15 -0
  88. package/out/Project/util/getCustomPreEmitDiagnostics.d.ts +4 -0
  89. package/out/Project/util/getCustomPreEmitDiagnostics.js +13 -0
  90. package/out/Project/util/isCompilableFile.d.ts +1 -0
  91. package/out/Project/util/isCompilableFile.js +18 -0
  92. package/out/Project/util/walkDirectorySync.d.ts +1 -0
  93. package/out/Project/util/walkDirectorySync.js +22 -0
  94. package/out/Shared/classes/Lazy.d.ts +8 -0
  95. package/out/Shared/classes/Lazy.js +22 -0
  96. package/out/Shared/classes/LogService.d.ts +9 -0
  97. package/out/Shared/classes/LogService.js +37 -0
  98. package/out/Shared/constants.d.ts +23 -0
  99. package/out/Shared/constants.js +50 -0
  100. package/out/Shared/diagnostics.d.ts +79 -0
  101. package/out/Shared/diagnostics.js +140 -0
  102. package/out/Shared/errors/DiagnosticError.d.ts +7 -0
  103. package/out/Shared/errors/DiagnosticError.js +16 -0
  104. package/out/Shared/errors/LoggableError.d.ts +5 -0
  105. package/out/Shared/errors/LoggableError.js +14 -0
  106. package/out/Shared/errors/ProjectError.d.ts +4 -0
  107. package/out/Shared/errors/ProjectError.js +12 -0
  108. package/out/Shared/index.d.ts +0 -0
  109. package/out/Shared/index.js +2 -0
  110. package/out/Shared/types.d.ts +50 -0
  111. package/out/Shared/types.js +3 -0
  112. package/out/Shared/util/assert.d.ts +1 -0
  113. package/out/Shared/util/assert.js +12 -0
  114. package/out/Shared/util/benchmark.d.ts +3 -0
  115. package/out/Shared/util/benchmark.js +32 -0
  116. package/out/Shared/util/createDiagnosticWithLocation.d.ts +3 -0
  117. package/out/Shared/util/createDiagnosticWithLocation.js +29 -0
  118. package/out/Shared/util/createGithubLink.d.ts +1 -0
  119. package/out/Shared/util/createGithubLink.js +12 -0
  120. package/out/Shared/util/createTextDiagnostic.d.ts +2 -0
  121. package/out/Shared/util/createTextDiagnostic.js +18 -0
  122. package/out/Shared/util/findAncestorDir.d.ts +1 -0
  123. package/out/Shared/util/findAncestorDir.js +16 -0
  124. package/out/Shared/util/findLastIndex.d.ts +1 -0
  125. package/out/Shared/util/findLastIndex.js +12 -0
  126. package/out/Shared/util/formatDiagnostics.d.ts +2 -0
  127. package/out/Shared/util/formatDiagnostics.js +19 -0
  128. package/out/Shared/util/getCanonicalFileName.d.ts +2 -0
  129. package/out/Shared/util/getCanonicalFileName.js +10 -0
  130. package/out/Shared/util/getOrSetDefault.d.ts +1 -0
  131. package/out/Shared/util/getOrSetDefault.js +12 -0
  132. package/out/Shared/util/getRootDirs.d.ts +2 -0
  133. package/out/Shared/util/getRootDirs.js +10 -0
  134. package/out/Shared/util/hasErrors.d.ts +2 -0
  135. package/out/Shared/util/hasErrors.js +11 -0
  136. package/out/Shared/util/isPathDescendantOf.d.ts +1 -0
  137. package/out/Shared/util/isPathDescendantOf.js +11 -0
  138. package/out/Shared/util/realPathExistsSync.d.ts +1 -0
  139. package/out/Shared/util/realPathExistsSync.js +13 -0
  140. package/out/Shared/warn.d.ts +1 -0
  141. package/out/Shared/warn.js +12 -0
  142. package/out/TSTransformer/classes/DiagnosticService.d.ts +11 -0
  143. package/out/TSTransformer/classes/DiagnosticService.js +37 -0
  144. package/out/TSTransformer/classes/MacroManager.d.ts +46 -0
  145. package/out/TSTransformer/classes/MacroManager.js +178 -0
  146. package/out/TSTransformer/classes/MultiTransformState.d.ts +9 -0
  147. package/out/TSTransformer/classes/MultiTransformState.js +15 -0
  148. package/out/TSTransformer/classes/TransformState.d.ts +73 -0
  149. package/out/TSTransformer/classes/TransformState.js +307 -0
  150. package/out/TSTransformer/index.d.ts +4 -0
  151. package/out/TSTransformer/index.js +23 -0
  152. package/out/TSTransformer/macros/callMacros.d.ts +2 -0
  153. package/out/TSTransformer/macros/callMacros.js +56 -0
  154. package/out/TSTransformer/macros/constructorMacros.d.ts +2 -0
  155. package/out/TSTransformer/macros/constructorMacros.js +97 -0
  156. package/out/TSTransformer/macros/identifierMacros.d.ts +2 -0
  157. package/out/TSTransformer/macros/identifierMacros.js +7 -0
  158. package/out/TSTransformer/macros/propertyCallMacros.d.ts +4 -0
  159. package/out/TSTransformer/macros/propertyCallMacros.js +726 -0
  160. package/out/TSTransformer/macros/types.d.ts +12 -0
  161. package/out/TSTransformer/macros/types.js +3 -0
  162. package/out/TSTransformer/nodes/binding/transformArrayAssignmentPattern.d.ts +4 -0
  163. package/out/TSTransformer/nodes/binding/transformArrayAssignmentPattern.js +78 -0
  164. package/out/TSTransformer/nodes/binding/transformArrayBindingPattern.d.ts +4 -0
  165. package/out/TSTransformer/nodes/binding/transformArrayBindingPattern.js +52 -0
  166. package/out/TSTransformer/nodes/binding/transformBindingName.d.ts +4 -0
  167. package/out/TSTransformer/nodes/binding/transformBindingName.js +30 -0
  168. package/out/TSTransformer/nodes/binding/transformObjectAssignmentPattern.d.ts +4 -0
  169. package/out/TSTransformer/nodes/binding/transformObjectAssignmentPattern.js +97 -0
  170. package/out/TSTransformer/nodes/binding/transformObjectBindingPattern.d.ts +4 -0
  171. package/out/TSTransformer/nodes/binding/transformObjectBindingPattern.js +57 -0
  172. package/out/TSTransformer/nodes/class/transformClassConstructor.d.ts +7 -0
  173. package/out/TSTransformer/nodes/class/transformClassConstructor.js +96 -0
  174. package/out/TSTransformer/nodes/class/transformClassLikeDeclaration.d.ts +7 -0
  175. package/out/TSTransformer/nodes/class/transformClassLikeDeclaration.js +262 -0
  176. package/out/TSTransformer/nodes/class/transformDecorators.d.ts +4 -0
  177. package/out/TSTransformer/nodes/class/transformDecorators.js +179 -0
  178. package/out/TSTransformer/nodes/class/transformPropertyDeclaration.d.ts +4 -0
  179. package/out/TSTransformer/nodes/class/transformPropertyDeclaration.js +33 -0
  180. package/out/TSTransformer/nodes/expressions/transformArrayLiteralExpression.d.ts +4 -0
  181. package/out/TSTransformer/nodes/expressions/transformArrayLiteralExpression.js +79 -0
  182. package/out/TSTransformer/nodes/expressions/transformAwaitExpression.d.ts +4 -0
  183. package/out/TSTransformer/nodes/expressions/transformAwaitExpression.js +13 -0
  184. package/out/TSTransformer/nodes/expressions/transformBinaryExpression.d.ts +4 -0
  185. package/out/TSTransformer/nodes/expressions/transformBinaryExpression.js +199 -0
  186. package/out/TSTransformer/nodes/expressions/transformBooleanLiteral.d.ts +3 -0
  187. package/out/TSTransformer/nodes/expressions/transformBooleanLiteral.js +15 -0
  188. package/out/TSTransformer/nodes/expressions/transformCallExpression.d.ts +7 -0
  189. package/out/TSTransformer/nodes/expressions/transformCallExpression.js +191 -0
  190. package/out/TSTransformer/nodes/expressions/transformClassExpression.d.ts +3 -0
  191. package/out/TSTransformer/nodes/expressions/transformClassExpression.js +10 -0
  192. package/out/TSTransformer/nodes/expressions/transformConditionalExpression.d.ts +4 -0
  193. package/out/TSTransformer/nodes/expressions/transformConditionalExpression.js +55 -0
  194. package/out/TSTransformer/nodes/expressions/transformDeleteExpression.d.ts +4 -0
  195. package/out/TSTransformer/nodes/expressions/transformDeleteExpression.js +14 -0
  196. package/out/TSTransformer/nodes/expressions/transformElementAccessExpression.d.ts +5 -0
  197. package/out/TSTransformer/nodes/expressions/transformElementAccessExpression.js +62 -0
  198. package/out/TSTransformer/nodes/expressions/transformExpression.d.ts +4 -0
  199. package/out/TSTransformer/nodes/expressions/transformExpression.js +107 -0
  200. package/out/TSTransformer/nodes/expressions/transformFunctionExpression.d.ts +4 -0
  201. package/out/TSTransformer/nodes/expressions/transformFunctionExpression.js +46 -0
  202. package/out/TSTransformer/nodes/expressions/transformIdentifier.d.ts +5 -0
  203. package/out/TSTransformer/nodes/expressions/transformIdentifier.js +147 -0
  204. package/out/TSTransformer/nodes/expressions/transformImportExpression.d.ts +4 -0
  205. package/out/TSTransformer/nodes/expressions/transformImportExpression.js +30 -0
  206. package/out/TSTransformer/nodes/expressions/transformJsxElement.d.ts +3 -0
  207. package/out/TSTransformer/nodes/expressions/transformJsxElement.js +8 -0
  208. package/out/TSTransformer/nodes/expressions/transformJsxExpression.d.ts +4 -0
  209. package/out/TSTransformer/nodes/expressions/transformJsxExpression.js +19 -0
  210. package/out/TSTransformer/nodes/expressions/transformJsxFragment.d.ts +4 -0
  211. package/out/TSTransformer/nodes/expressions/transformJsxFragment.js +28 -0
  212. package/out/TSTransformer/nodes/expressions/transformJsxSelfClosingElement.d.ts +3 -0
  213. package/out/TSTransformer/nodes/expressions/transformJsxSelfClosingElement.js +8 -0
  214. package/out/TSTransformer/nodes/expressions/transformNewExpression.d.ts +4 -0
  215. package/out/TSTransformer/nodes/expressions/transformNewExpression.js +26 -0
  216. package/out/TSTransformer/nodes/expressions/transformNoSubstitutionTemplateLiteral.d.ts +4 -0
  217. package/out/TSTransformer/nodes/expressions/transformNoSubstitutionTemplateLiteral.js +14 -0
  218. package/out/TSTransformer/nodes/expressions/transformNumericLiteral.d.ts +4 -0
  219. package/out/TSTransformer/nodes/expressions/transformNumericLiteral.js +13 -0
  220. package/out/TSTransformer/nodes/expressions/transformObjectLiteralExpression.d.ts +4 -0
  221. package/out/TSTransformer/nodes/expressions/transformObjectLiteralExpression.js +98 -0
  222. package/out/TSTransformer/nodes/expressions/transformOmittedExpression.d.ts +2 -0
  223. package/out/TSTransformer/nodes/expressions/transformOmittedExpression.js +11 -0
  224. package/out/TSTransformer/nodes/expressions/transformParenthesizedExpression.d.ts +4 -0
  225. package/out/TSTransformer/nodes/expressions/transformParenthesizedExpression.js +19 -0
  226. package/out/TSTransformer/nodes/expressions/transformPropertyAccessExpression.d.ts +5 -0
  227. package/out/TSTransformer/nodes/expressions/transformPropertyAccessExpression.js +36 -0
  228. package/out/TSTransformer/nodes/expressions/transformSpreadElement.d.ts +4 -0
  229. package/out/TSTransformer/nodes/expressions/transformSpreadElement.js +35 -0
  230. package/out/TSTransformer/nodes/expressions/transformStringLiteral.d.ts +4 -0
  231. package/out/TSTransformer/nodes/expressions/transformStringLiteral.js +12 -0
  232. package/out/TSTransformer/nodes/expressions/transformSuperKeyword.d.ts +2 -0
  233. package/out/TSTransformer/nodes/expressions/transformSuperKeyword.js +11 -0
  234. package/out/TSTransformer/nodes/expressions/transformTaggedTemplateExpression.d.ts +4 -0
  235. package/out/TSTransformer/nodes/expressions/transformTaggedTemplateExpression.js +27 -0
  236. package/out/TSTransformer/nodes/expressions/transformTemplateExpression.d.ts +4 -0
  237. package/out/TSTransformer/nodes/expressions/transformTemplateExpression.js +25 -0
  238. package/out/TSTransformer/nodes/expressions/transformThisExpression.d.ts +4 -0
  239. package/out/TSTransformer/nodes/expressions/transformThisExpression.js +29 -0
  240. package/out/TSTransformer/nodes/expressions/transformTypeExpression.d.ts +3 -0
  241. package/out/TSTransformer/nodes/expressions/transformTypeExpression.js +8 -0
  242. package/out/TSTransformer/nodes/expressions/transformUnaryExpression.d.ts +5 -0
  243. package/out/TSTransformer/nodes/expressions/transformUnaryExpression.js +68 -0
  244. package/out/TSTransformer/nodes/expressions/transformVoidExpression.d.ts +4 -0
  245. package/out/TSTransformer/nodes/expressions/transformVoidExpression.js +14 -0
  246. package/out/TSTransformer/nodes/expressions/transformYieldExpression.d.ts +4 -0
  247. package/out/TSTransformer/nodes/expressions/transformYieldExpression.js +46 -0
  248. package/out/TSTransformer/nodes/jsx/transformJsx.d.ts +4 -0
  249. package/out/TSTransformer/nodes/jsx/transformJsx.js +36 -0
  250. package/out/TSTransformer/nodes/jsx/transformJsxAttributes.d.ts +4 -0
  251. package/out/TSTransformer/nodes/jsx/transformJsxAttributes.js +83 -0
  252. package/out/TSTransformer/nodes/jsx/transformJsxChildren.d.ts +4 -0
  253. package/out/TSTransformer/nodes/jsx/transformJsxChildren.js +34 -0
  254. package/out/TSTransformer/nodes/jsx/transformJsxTagName.d.ts +4 -0
  255. package/out/TSTransformer/nodes/jsx/transformJsxTagName.js +42 -0
  256. package/out/TSTransformer/nodes/statements/transformBlock.d.ts +4 -0
  257. package/out/TSTransformer/nodes/statements/transformBlock.js +14 -0
  258. package/out/TSTransformer/nodes/statements/transformBreakStatement.d.ts +4 -0
  259. package/out/TSTransformer/nodes/statements/transformBreakStatement.js +24 -0
  260. package/out/TSTransformer/nodes/statements/transformClassDeclaration.d.ts +3 -0
  261. package/out/TSTransformer/nodes/statements/transformClassDeclaration.js +8 -0
  262. package/out/TSTransformer/nodes/statements/transformContinueStatement.d.ts +4 -0
  263. package/out/TSTransformer/nodes/statements/transformContinueStatement.js +24 -0
  264. package/out/TSTransformer/nodes/statements/transformDoStatement.d.ts +4 -0
  265. package/out/TSTransformer/nodes/statements/transformDoStatement.js +31 -0
  266. package/out/TSTransformer/nodes/statements/transformEnumDeclaration.d.ts +4 -0
  267. package/out/TSTransformer/nodes/statements/transformEnumDeclaration.js +97 -0
  268. package/out/TSTransformer/nodes/statements/transformExportAssignment.d.ts +4 -0
  269. package/out/TSTransformer/nodes/statements/transformExportAssignment.js +53 -0
  270. package/out/TSTransformer/nodes/statements/transformExportDeclaration.d.ts +4 -0
  271. package/out/TSTransformer/nodes/statements/transformExportDeclaration.js +109 -0
  272. package/out/TSTransformer/nodes/statements/transformExpressionStatement.d.ts +5 -0
  273. package/out/TSTransformer/nodes/statements/transformExpressionStatement.js +62 -0
  274. package/out/TSTransformer/nodes/statements/transformForOfStatement.d.ts +5 -0
  275. package/out/TSTransformer/nodes/statements/transformForOfStatement.js +375 -0
  276. package/out/TSTransformer/nodes/statements/transformForStatement.d.ts +4 -0
  277. package/out/TSTransformer/nodes/statements/transformForStatement.js +371 -0
  278. package/out/TSTransformer/nodes/statements/transformFunctionDeclaration.d.ts +4 -0
  279. package/out/TSTransformer/nodes/statements/transformFunctionDeclaration.js +68 -0
  280. package/out/TSTransformer/nodes/statements/transformIfStatement.d.ts +5 -0
  281. package/out/TSTransformer/nodes/statements/transformIfStatement.js +46 -0
  282. package/out/TSTransformer/nodes/statements/transformImportDeclaration.d.ts +4 -0
  283. package/out/TSTransformer/nodes/statements/transformImportDeclaration.js +98 -0
  284. package/out/TSTransformer/nodes/statements/transformImportEqualsDeclaration.d.ts +4 -0
  285. package/out/TSTransformer/nodes/statements/transformImportEqualsDeclaration.js +36 -0
  286. package/out/TSTransformer/nodes/statements/transformModuleDeclaration.d.ts +4 -0
  287. package/out/TSTransformer/nodes/statements/transformModuleDeclaration.js +122 -0
  288. package/out/TSTransformer/nodes/statements/transformReturnStatement.d.ts +5 -0
  289. package/out/TSTransformer/nodes/statements/transformReturnStatement.js +74 -0
  290. package/out/TSTransformer/nodes/statements/transformStatement.d.ts +4 -0
  291. package/out/TSTransformer/nodes/statements/transformStatement.js +83 -0
  292. package/out/TSTransformer/nodes/statements/transformSwitchStatement.d.ts +4 -0
  293. package/out/TSTransformer/nodes/statements/transformSwitchStatement.js +105 -0
  294. package/out/TSTransformer/nodes/statements/transformThrowStatement.d.ts +4 -0
  295. package/out/TSTransformer/nodes/statements/transformThrowStatement.js +18 -0
  296. package/out/TSTransformer/nodes/statements/transformTryStatement.d.ts +4 -0
  297. package/out/TSTransformer/nodes/statements/transformTryStatement.js +148 -0
  298. package/out/TSTransformer/nodes/statements/transformVariableStatement.d.ts +8 -0
  299. package/out/TSTransformer/nodes/statements/transformVariableStatement.js +155 -0
  300. package/out/TSTransformer/nodes/statements/transformWhileStatement.d.ts +4 -0
  301. package/out/TSTransformer/nodes/statements/transformWhileStatement.js +30 -0
  302. package/out/TSTransformer/nodes/transformEntityName.d.ts +4 -0
  303. package/out/TSTransformer/nodes/transformEntityName.js +24 -0
  304. package/out/TSTransformer/nodes/transformInitializer.d.ts +4 -0
  305. package/out/TSTransformer/nodes/transformInitializer.js +22 -0
  306. package/out/TSTransformer/nodes/transformInterpolatedStringPart.d.ts +3 -0
  307. package/out/TSTransformer/nodes/transformInterpolatedStringPart.js +12 -0
  308. package/out/TSTransformer/nodes/transformLogical.d.ts +4 -0
  309. package/out/TSTransformer/nodes/transformLogical.js +103 -0
  310. package/out/TSTransformer/nodes/transformLogicalOrCoalescingAssignmentExpression.d.ts +5 -0
  311. package/out/TSTransformer/nodes/transformLogicalOrCoalescingAssignmentExpression.js +91 -0
  312. package/out/TSTransformer/nodes/transformMethodDeclaration.d.ts +5 -0
  313. package/out/TSTransformer/nodes/transformMethodDeclaration.js +82 -0
  314. package/out/TSTransformer/nodes/transformOptionalChain.d.ts +46 -0
  315. package/out/TSTransformer/nodes/transformOptionalChain.js +257 -0
  316. package/out/TSTransformer/nodes/transformParameters.d.ts +8 -0
  317. package/out/TSTransformer/nodes/transformParameters.js +104 -0
  318. package/out/TSTransformer/nodes/transformPropertyName.d.ts +4 -0
  319. package/out/TSTransformer/nodes/transformPropertyName.js +18 -0
  320. package/out/TSTransformer/nodes/transformSourceFile.d.ts +4 -0
  321. package/out/TSTransformer/nodes/transformSourceFile.js +171 -0
  322. package/out/TSTransformer/nodes/transformStatementList.d.ts +7 -0
  323. package/out/TSTransformer/nodes/transformStatementList.js +63 -0
  324. package/out/TSTransformer/nodes/transformWritable.d.ts +9 -0
  325. package/out/TSTransformer/nodes/transformWritable.js +49 -0
  326. package/out/TSTransformer/typeGuards.d.ts +5 -0
  327. package/out/TSTransformer/typeGuards.js +27 -0
  328. package/out/TSTransformer/types.d.ts +9 -0
  329. package/out/TSTransformer/types.js +3 -0
  330. package/out/TSTransformer/util/addIndexDiagnostics.d.ts +3 -0
  331. package/out/TSTransformer/util/addIndexDiagnostics.js +24 -0
  332. package/out/TSTransformer/util/addOneIfArrayType.d.ts +4 -0
  333. package/out/TSTransformer/util/addOneIfArrayType.js +14 -0
  334. package/out/TSTransformer/util/arrayBindingPatternContainsHoists.d.ts +3 -0
  335. package/out/TSTransformer/util/arrayBindingPatternContainsHoists.js +23 -0
  336. package/out/TSTransformer/util/arrayLikeExpressionContainsSpread.d.ts +2 -0
  337. package/out/TSTransformer/util/arrayLikeExpressionContainsSpread.js +17 -0
  338. package/out/TSTransformer/util/assertNever.d.ts +1 -0
  339. package/out/TSTransformer/util/assertNever.js +36 -0
  340. package/out/TSTransformer/util/assignment.d.ts +7 -0
  341. package/out/TSTransformer/util/assignment.js +48 -0
  342. package/out/TSTransformer/util/binding/getAccessorForBindingType.d.ts +6 -0
  343. package/out/TSTransformer/util/binding/getAccessorForBindingType.js +141 -0
  344. package/out/TSTransformer/util/binding/getTargetIdForBindingPattern.d.ts +4 -0
  345. package/out/TSTransformer/util/binding/getTargetIdForBindingPattern.js +15 -0
  346. package/out/TSTransformer/util/binding/objectAccessor.d.ts +4 -0
  347. package/out/TSTransformer/util/binding/objectAccessor.js +39 -0
  348. package/out/TSTransformer/util/bitwise.d.ts +6 -0
  349. package/out/TSTransformer/util/bitwise.js +67 -0
  350. package/out/TSTransformer/util/checkVariableHoist.d.ts +3 -0
  351. package/out/TSTransformer/util/checkVariableHoist.js +33 -0
  352. package/out/TSTransformer/util/cleanModuleName.d.ts +1 -0
  353. package/out/TSTransformer/util/cleanModuleName.js +7 -0
  354. package/out/TSTransformer/util/convertToIndexableExpression.d.ts +3 -0
  355. package/out/TSTransformer/util/convertToIndexableExpression.js +14 -0
  356. package/out/TSTransformer/util/createBinaryFromOperator.d.ts +4 -0
  357. package/out/TSTransformer/util/createBinaryFromOperator.js +54 -0
  358. package/out/TSTransformer/util/createGetService.d.ts +2 -0
  359. package/out/TSTransformer/util/createGetService.js +15 -0
  360. package/out/TSTransformer/util/createHoistDeclaration.d.ts +4 -0
  361. package/out/TSTransformer/util/createHoistDeclaration.js +20 -0
  362. package/out/TSTransformer/util/createImportExpression.d.ts +5 -0
  363. package/out/TSTransformer/util/createImportExpression.js +181 -0
  364. package/out/TSTransformer/util/createStringFromLiteral.d.ts +2 -0
  365. package/out/TSTransformer/util/createStringFromLiteral.js +27 -0
  366. package/out/TSTransformer/util/createTransformServices.d.ts +3 -0
  367. package/out/TSTransformer/util/createTransformServices.js +9 -0
  368. package/out/TSTransformer/util/createTruthinessChecks.d.ts +5 -0
  369. package/out/TSTransformer/util/createTruthinessChecks.js +50 -0
  370. package/out/TSTransformer/util/createTypeCheck.d.ts +2 -0
  371. package/out/TSTransformer/util/createTypeCheck.js +11 -0
  372. package/out/TSTransformer/util/ensureTransformOrder.d.ts +5 -0
  373. package/out/TSTransformer/util/ensureTransformOrder.js +39 -0
  374. package/out/TSTransformer/util/expressionChain.d.ts +3 -0
  375. package/out/TSTransformer/util/expressionChain.js +16 -0
  376. package/out/TSTransformer/util/expressionMightMutate.d.ts +4 -0
  377. package/out/TSTransformer/util/expressionMightMutate.js +57 -0
  378. package/out/TSTransformer/util/findConstructor.d.ts +4 -0
  379. package/out/TSTransformer/util/findConstructor.js +11 -0
  380. package/out/TSTransformer/util/fixupWhitespaceAndDecodeEntities.d.ts +1 -0
  381. package/out/TSTransformer/util/fixupWhitespaceAndDecodeEntities.js +306 -0
  382. package/out/TSTransformer/util/getAddIterableToArrayBuilder.d.ts +6 -0
  383. package/out/TSTransformer/util/getAddIterableToArrayBuilder.js +253 -0
  384. package/out/TSTransformer/util/getAssignableValue.d.ts +3 -0
  385. package/out/TSTransformer/util/getAssignableValue.js +15 -0
  386. package/out/TSTransformer/util/getConstantValueLiteral.d.ts +4 -0
  387. package/out/TSTransformer/util/getConstantValueLiteral.js +19 -0
  388. package/out/TSTransformer/util/getDeclaredVariables.d.ts +2 -0
  389. package/out/TSTransformer/util/getDeclaredVariables.js +37 -0
  390. package/out/TSTransformer/util/getExtendsNode.d.ts +2 -0
  391. package/out/TSTransformer/util/getExtendsNode.js +16 -0
  392. package/out/TSTransformer/util/getFlags.d.ts +1 -0
  393. package/out/TSTransformer/util/getFlags.js +13 -0
  394. package/out/TSTransformer/util/getKindName.d.ts +2 -0
  395. package/out/TSTransformer/util/getKindName.js +61 -0
  396. package/out/TSTransformer/util/getOriginalSymbolOfNode.d.ts +2 -0
  397. package/out/TSTransformer/util/getOriginalSymbolOfNode.js +15 -0
  398. package/out/TSTransformer/util/getSourceFileFromModuleSpecifier.d.ts +3 -0
  399. package/out/TSTransformer/util/getSourceFileFromModuleSpecifier.js +33 -0
  400. package/out/TSTransformer/util/getStatements.d.ts +2 -0
  401. package/out/TSTransformer/util/getStatements.js +11 -0
  402. package/out/TSTransformer/util/hasMultipleDefinitions.d.ts +2 -0
  403. package/out/TSTransformer/util/hasMultipleDefinitions.js +17 -0
  404. package/out/TSTransformer/util/isBlockedByTryStatement.d.ts +3 -0
  405. package/out/TSTransformer/util/isBlockedByTryStatement.js +17 -0
  406. package/out/TSTransformer/util/isMethod.d.ts +4 -0
  407. package/out/TSTransformer/util/isMethod.js +90 -0
  408. package/out/TSTransformer/util/isSymbolMutable.d.ts +3 -0
  409. package/out/TSTransformer/util/isSymbolMutable.js +24 -0
  410. package/out/TSTransformer/util/isSymbolOfValue.d.ts +2 -0
  411. package/out/TSTransformer/util/isSymbolOfValue.js +11 -0
  412. package/out/TSTransformer/util/isUsedAsStatement.d.ts +2 -0
  413. package/out/TSTransformer/util/isUsedAsStatement.js +23 -0
  414. package/out/TSTransformer/util/isValidMethodIndexWithoutCall.d.ts +3 -0
  415. package/out/TSTransformer/util/isValidMethodIndexWithoutCall.js +31 -0
  416. package/out/TSTransformer/util/offset.d.ts +2 -0
  417. package/out/TSTransformer/util/offset.js +44 -0
  418. package/out/TSTransformer/util/pointer.d.ts +13 -0
  419. package/out/TSTransformer/util/pointer.js +46 -0
  420. package/out/TSTransformer/util/spreadDestructuring/index.d.ts +9 -0
  421. package/out/TSTransformer/util/spreadDestructuring/index.js +45 -0
  422. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureArray.d.ts +3 -0
  423. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureArray.js +17 -0
  424. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureGenerator.d.ts +3 -0
  425. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureGenerator.js +33 -0
  426. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureMap.d.ts +3 -0
  427. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureMap.js +34 -0
  428. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureObject.d.ts +3 -0
  429. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureObject.js +41 -0
  430. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureSet.d.ts +3 -0
  431. package/out/TSTransformer/util/spreadDestructuring/spreadDestructureSet.js +28 -0
  432. package/out/TSTransformer/util/traversal.d.ts +7 -0
  433. package/out/TSTransformer/util/traversal.js +57 -0
  434. package/out/TSTransformer/util/types.d.ts +31 -0
  435. package/out/TSTransformer/util/types.js +259 -0
  436. package/out/TSTransformer/util/validateIdentifier.d.ts +3 -0
  437. package/out/TSTransformer/util/validateIdentifier.js +18 -0
  438. package/out/TSTransformer/util/validateMethodAssignment.d.ts +3 -0
  439. package/out/TSTransformer/util/validateMethodAssignment.js +81 -0
  440. package/out/TSTransformer/util/validateNotAny.d.ts +3 -0
  441. package/out/TSTransformer/util/validateNotAny.js +37 -0
  442. package/out/TSTransformer/util/valueToIdStr.d.ts +2 -0
  443. package/out/TSTransformer/util/valueToIdStr.js +29 -0
  444. package/out/TSTransformer/util/wrapExpressionStatement.d.ts +2 -0
  445. package/out/TSTransformer/util/wrapExpressionStatement.js +22 -0
  446. package/out/TSTransformer/util/wrapReturnIfLuaTuple.d.ts +4 -0
  447. package/out/TSTransformer/util/wrapReturnIfLuaTuple.js +56 -0
  448. package/out/TSTransformer/util/wrapStatementsAsGenerator.d.ts +4 -0
  449. package/out/TSTransformer/util/wrapStatementsAsGenerator.js +19 -0
  450. package/package.json +72 -0
@@ -0,0 +1,306 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.fixupWhitespaceAndDecodeEntities = fixupWhitespaceAndDecodeEntities;
7
+ const typescript_1 = __importDefault(require("typescript"));
8
+ function fixupWhitespaceAndDecodeEntities(text) {
9
+ let acc;
10
+ let firstNonWhitespace = 0;
11
+ let lastNonWhitespace = -1;
12
+ for (let i = 0; i < text.length; i++) {
13
+ const c = text.charCodeAt(i);
14
+ if (typescript_1.default.isLineBreak(c)) {
15
+ if (firstNonWhitespace !== -1 && lastNonWhitespace !== -1) {
16
+ acc = addLineOfJsxText(acc, text.substr(firstNonWhitespace, lastNonWhitespace - firstNonWhitespace + 1));
17
+ }
18
+ firstNonWhitespace = -1;
19
+ }
20
+ else if (!typescript_1.default.isWhiteSpaceSingleLine(c)) {
21
+ lastNonWhitespace = i;
22
+ if (firstNonWhitespace === -1) {
23
+ firstNonWhitespace = i;
24
+ }
25
+ }
26
+ }
27
+ return firstNonWhitespace !== -1
28
+ ?
29
+ addLineOfJsxText(acc, text.substr(firstNonWhitespace))
30
+ :
31
+ acc;
32
+ }
33
+ function addLineOfJsxText(acc, trimmedLine) {
34
+ const decoded = decodeEntities(trimmedLine);
35
+ return acc === undefined ? decoded : acc + " " + decoded;
36
+ }
37
+ function decodeEntities(text) {
38
+ return text.replace(/&((#((\d+)|x([\da-fA-F]+)))|(\w+));/g, (match, _all, _number, _digits, decimal, hex, word) => {
39
+ if (decimal) {
40
+ return typescript_1.default.utf16EncodeAsString(parseInt(decimal, 10));
41
+ }
42
+ else if (hex) {
43
+ return typescript_1.default.utf16EncodeAsString(parseInt(hex, 16));
44
+ }
45
+ else {
46
+ const ch = entities.get(word);
47
+ return ch ? typescript_1.default.utf16EncodeAsString(ch) : match;
48
+ }
49
+ });
50
+ }
51
+ const entities = new Map(Object.entries({
52
+ quot: 0x0022,
53
+ amp: 0x0026,
54
+ apos: 0x0027,
55
+ lt: 0x003c,
56
+ gt: 0x003e,
57
+ nbsp: 0x00a0,
58
+ iexcl: 0x00a1,
59
+ cent: 0x00a2,
60
+ pound: 0x00a3,
61
+ curren: 0x00a4,
62
+ yen: 0x00a5,
63
+ brvbar: 0x00a6,
64
+ sect: 0x00a7,
65
+ uml: 0x00a8,
66
+ copy: 0x00a9,
67
+ ordf: 0x00aa,
68
+ laquo: 0x00ab,
69
+ not: 0x00ac,
70
+ shy: 0x00ad,
71
+ reg: 0x00ae,
72
+ macr: 0x00af,
73
+ deg: 0x00b0,
74
+ plusmn: 0x00b1,
75
+ sup2: 0x00b2,
76
+ sup3: 0x00b3,
77
+ acute: 0x00b4,
78
+ micro: 0x00b5,
79
+ para: 0x00b6,
80
+ middot: 0x00b7,
81
+ cedil: 0x00b8,
82
+ sup1: 0x00b9,
83
+ ordm: 0x00ba,
84
+ raquo: 0x00bb,
85
+ frac14: 0x00bc,
86
+ frac12: 0x00bd,
87
+ frac34: 0x00be,
88
+ iquest: 0x00bf,
89
+ Agrave: 0x00c0,
90
+ Aacute: 0x00c1,
91
+ Acirc: 0x00c2,
92
+ Atilde: 0x00c3,
93
+ Auml: 0x00c4,
94
+ Aring: 0x00c5,
95
+ AElig: 0x00c6,
96
+ Ccedil: 0x00c7,
97
+ Egrave: 0x00c8,
98
+ Eacute: 0x00c9,
99
+ Ecirc: 0x00ca,
100
+ Euml: 0x00cb,
101
+ Igrave: 0x00cc,
102
+ Iacute: 0x00cd,
103
+ Icirc: 0x00ce,
104
+ Iuml: 0x00cf,
105
+ ETH: 0x00d0,
106
+ Ntilde: 0x00d1,
107
+ Ograve: 0x00d2,
108
+ Oacute: 0x00d3,
109
+ Ocirc: 0x00d4,
110
+ Otilde: 0x00d5,
111
+ Ouml: 0x00d6,
112
+ times: 0x00d7,
113
+ Oslash: 0x00d8,
114
+ Ugrave: 0x00d9,
115
+ Uacute: 0x00da,
116
+ Ucirc: 0x00db,
117
+ Uuml: 0x00dc,
118
+ Yacute: 0x00dd,
119
+ THORN: 0x00de,
120
+ szlig: 0x00df,
121
+ agrave: 0x00e0,
122
+ aacute: 0x00e1,
123
+ acirc: 0x00e2,
124
+ atilde: 0x00e3,
125
+ auml: 0x00e4,
126
+ aring: 0x00e5,
127
+ aelig: 0x00e6,
128
+ ccedil: 0x00e7,
129
+ egrave: 0x00e8,
130
+ eacute: 0x00e9,
131
+ ecirc: 0x00ea,
132
+ euml: 0x00eb,
133
+ igrave: 0x00ec,
134
+ iacute: 0x00ed,
135
+ icirc: 0x00ee,
136
+ iuml: 0x00ef,
137
+ eth: 0x00f0,
138
+ ntilde: 0x00f1,
139
+ ograve: 0x00f2,
140
+ oacute: 0x00f3,
141
+ ocirc: 0x00f4,
142
+ otilde: 0x00f5,
143
+ ouml: 0x00f6,
144
+ divide: 0x00f7,
145
+ oslash: 0x00f8,
146
+ ugrave: 0x00f9,
147
+ uacute: 0x00fa,
148
+ ucirc: 0x00fb,
149
+ uuml: 0x00fc,
150
+ yacute: 0x00fd,
151
+ thorn: 0x00fe,
152
+ yuml: 0x00ff,
153
+ OElig: 0x0152,
154
+ oelig: 0x0153,
155
+ Scaron: 0x0160,
156
+ scaron: 0x0161,
157
+ Yuml: 0x0178,
158
+ fnof: 0x0192,
159
+ circ: 0x02c6,
160
+ tilde: 0x02dc,
161
+ Alpha: 0x0391,
162
+ Beta: 0x0392,
163
+ Gamma: 0x0393,
164
+ Delta: 0x0394,
165
+ Epsilon: 0x0395,
166
+ Zeta: 0x0396,
167
+ Eta: 0x0397,
168
+ Theta: 0x0398,
169
+ Iota: 0x0399,
170
+ Kappa: 0x039a,
171
+ Lambda: 0x039b,
172
+ Mu: 0x039c,
173
+ Nu: 0x039d,
174
+ Xi: 0x039e,
175
+ Omicron: 0x039f,
176
+ Pi: 0x03a0,
177
+ Rho: 0x03a1,
178
+ Sigma: 0x03a3,
179
+ Tau: 0x03a4,
180
+ Upsilon: 0x03a5,
181
+ Phi: 0x03a6,
182
+ Chi: 0x03a7,
183
+ Psi: 0x03a8,
184
+ Omega: 0x03a9,
185
+ alpha: 0x03b1,
186
+ beta: 0x03b2,
187
+ gamma: 0x03b3,
188
+ delta: 0x03b4,
189
+ epsilon: 0x03b5,
190
+ zeta: 0x03b6,
191
+ eta: 0x03b7,
192
+ theta: 0x03b8,
193
+ iota: 0x03b9,
194
+ kappa: 0x03ba,
195
+ lambda: 0x03bb,
196
+ mu: 0x03bc,
197
+ nu: 0x03bd,
198
+ xi: 0x03be,
199
+ omicron: 0x03bf,
200
+ pi: 0x03c0,
201
+ rho: 0x03c1,
202
+ sigmaf: 0x03c2,
203
+ sigma: 0x03c3,
204
+ tau: 0x03c4,
205
+ upsilon: 0x03c5,
206
+ phi: 0x03c6,
207
+ chi: 0x03c7,
208
+ psi: 0x03c8,
209
+ omega: 0x03c9,
210
+ thetasym: 0x03d1,
211
+ upsih: 0x03d2,
212
+ piv: 0x03d6,
213
+ ensp: 0x2002,
214
+ emsp: 0x2003,
215
+ thinsp: 0x2009,
216
+ zwnj: 0x200c,
217
+ zwj: 0x200d,
218
+ lrm: 0x200e,
219
+ rlm: 0x200f,
220
+ ndash: 0x2013,
221
+ mdash: 0x2014,
222
+ lsquo: 0x2018,
223
+ rsquo: 0x2019,
224
+ sbquo: 0x201a,
225
+ ldquo: 0x201c,
226
+ rdquo: 0x201d,
227
+ bdquo: 0x201e,
228
+ dagger: 0x2020,
229
+ Dagger: 0x2021,
230
+ bull: 0x2022,
231
+ hellip: 0x2026,
232
+ permil: 0x2030,
233
+ prime: 0x2032,
234
+ Prime: 0x2033,
235
+ lsaquo: 0x2039,
236
+ rsaquo: 0x203a,
237
+ oline: 0x203e,
238
+ frasl: 0x2044,
239
+ euro: 0x20ac,
240
+ image: 0x2111,
241
+ weierp: 0x2118,
242
+ real: 0x211c,
243
+ trade: 0x2122,
244
+ alefsym: 0x2135,
245
+ larr: 0x2190,
246
+ uarr: 0x2191,
247
+ rarr: 0x2192,
248
+ darr: 0x2193,
249
+ harr: 0x2194,
250
+ crarr: 0x21b5,
251
+ lArr: 0x21d0,
252
+ uArr: 0x21d1,
253
+ rArr: 0x21d2,
254
+ dArr: 0x21d3,
255
+ hArr: 0x21d4,
256
+ forall: 0x2200,
257
+ part: 0x2202,
258
+ exist: 0x2203,
259
+ empty: 0x2205,
260
+ nabla: 0x2207,
261
+ isin: 0x2208,
262
+ notin: 0x2209,
263
+ ni: 0x220b,
264
+ prod: 0x220f,
265
+ sum: 0x2211,
266
+ minus: 0x2212,
267
+ lowast: 0x2217,
268
+ radic: 0x221a,
269
+ prop: 0x221d,
270
+ infin: 0x221e,
271
+ ang: 0x2220,
272
+ and: 0x2227,
273
+ or: 0x2228,
274
+ cap: 0x2229,
275
+ cup: 0x222a,
276
+ int: 0x222b,
277
+ there4: 0x2234,
278
+ sim: 0x223c,
279
+ cong: 0x2245,
280
+ asymp: 0x2248,
281
+ ne: 0x2260,
282
+ equiv: 0x2261,
283
+ le: 0x2264,
284
+ ge: 0x2265,
285
+ sub: 0x2282,
286
+ sup: 0x2283,
287
+ nsub: 0x2284,
288
+ sube: 0x2286,
289
+ supe: 0x2287,
290
+ oplus: 0x2295,
291
+ otimes: 0x2297,
292
+ perp: 0x22a5,
293
+ sdot: 0x22c5,
294
+ lceil: 0x2308,
295
+ rceil: 0x2309,
296
+ lfloor: 0x230a,
297
+ rfloor: 0x230b,
298
+ lang: 0x2329,
299
+ rang: 0x232a,
300
+ loz: 0x25ca,
301
+ spades: 0x2660,
302
+ clubs: 0x2663,
303
+ hearts: 0x2665,
304
+ diams: 0x2666,
305
+ }));
306
+ //# sourceMappingURL=fixupWhitespaceAndDecodeEntities.js.map
@@ -0,0 +1,6 @@
1
+ import luau from "@roblox-ts/luau-ast";
2
+ import { TransformState } from "..";
3
+ import ts from "typescript";
4
+ type AddIterableToArrayBuilder = (state: TransformState, expression: luau.Expression, arrayId: luau.AnyIdentifier, lengthId: luau.AnyIdentifier, amtElementsSinceUpdate: number, shouldUpdateLengthId: boolean) => luau.List<luau.Statement>;
5
+ export declare function getAddIterableToArrayBuilder(state: TransformState, node: ts.Node, type: ts.Type): AddIterableToArrayBuilder;
6
+ export {};
@@ -0,0 +1,253 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getAddIterableToArrayBuilder = getAddIterableToArrayBuilder;
7
+ const luau_ast_1 = __importDefault(require("@roblox-ts/luau-ast"));
8
+ const diagnostics_1 = require("../../Shared/diagnostics");
9
+ const assert_1 = require("../../Shared/util/assert");
10
+ const DiagnosticService_1 = require("../classes/DiagnosticService");
11
+ const convertToIndexableExpression_1 = require("./convertToIndexableExpression");
12
+ const types_1 = require("./types");
13
+ const valueToIdStr_1 = require("./valueToIdStr");
14
+ const addArray = (state, expression, arrayId, lengthId, amtElementsSinceUpdate, shouldUpdateLengthId) => {
15
+ const result = luau_ast_1.default.list.make();
16
+ const inputArray = state.pushToVarIfNonId(expression, "array");
17
+ let inputLength = luau_ast_1.default.unary("#", inputArray);
18
+ if (shouldUpdateLengthId) {
19
+ inputLength = state.pushToVar(inputLength, (0, valueToIdStr_1.valueToIdStr)(inputArray) + "Length");
20
+ }
21
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.CallStatement, {
22
+ expression: luau_ast_1.default.call(luau_ast_1.default.globals.table.move, [
23
+ inputArray,
24
+ luau_ast_1.default.number(1),
25
+ inputLength,
26
+ luau_ast_1.default.binary(lengthId, "+", luau_ast_1.default.number(amtElementsSinceUpdate + 1)),
27
+ arrayId,
28
+ ]),
29
+ }));
30
+ if (shouldUpdateLengthId) {
31
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
32
+ left: lengthId,
33
+ operator: "+=",
34
+ right: inputLength,
35
+ }));
36
+ }
37
+ return result;
38
+ };
39
+ const addString = (state, expression, arrayId, lengthId, amtElementsSinceUpdate) => {
40
+ const result = luau_ast_1.default.list.make();
41
+ if (amtElementsSinceUpdate > 0) {
42
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
43
+ left: lengthId,
44
+ operator: "+=",
45
+ right: luau_ast_1.default.number(amtElementsSinceUpdate),
46
+ }));
47
+ }
48
+ const valueId = luau_ast_1.default.tempId("char");
49
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ForStatement, {
50
+ ids: luau_ast_1.default.list.make(valueId),
51
+ expression: luau_ast_1.default.call(luau_ast_1.default.globals.string.gmatch, [expression, luau_ast_1.default.globals.utf8.charpattern]),
52
+ statements: luau_ast_1.default.list.make(luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
53
+ left: lengthId,
54
+ operator: "+=",
55
+ right: luau_ast_1.default.number(1),
56
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
57
+ left: luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ComputedIndexExpression, {
58
+ expression: arrayId,
59
+ index: lengthId,
60
+ }),
61
+ operator: "=",
62
+ right: valueId,
63
+ })),
64
+ }));
65
+ return result;
66
+ };
67
+ const addSet = (state, expression, arrayId, lengthId, amtElementsSinceUpdate) => {
68
+ const result = luau_ast_1.default.list.make();
69
+ if (amtElementsSinceUpdate > 0) {
70
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
71
+ left: lengthId,
72
+ operator: "+=",
73
+ right: luau_ast_1.default.number(amtElementsSinceUpdate),
74
+ }));
75
+ }
76
+ const valueId = luau_ast_1.default.tempId("v");
77
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ForStatement, {
78
+ ids: luau_ast_1.default.list.make(valueId),
79
+ expression,
80
+ statements: luau_ast_1.default.list.make(luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
81
+ left: lengthId,
82
+ operator: "+=",
83
+ right: luau_ast_1.default.number(1),
84
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
85
+ left: luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ComputedIndexExpression, {
86
+ expression: arrayId,
87
+ index: lengthId,
88
+ }),
89
+ operator: "=",
90
+ right: valueId,
91
+ })),
92
+ }));
93
+ return result;
94
+ };
95
+ const addMap = (state, expression, arrayId, lengthId, amtElementsSinceUpdate) => {
96
+ const result = luau_ast_1.default.list.make();
97
+ if (amtElementsSinceUpdate > 0) {
98
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
99
+ left: lengthId,
100
+ operator: "+=",
101
+ right: luau_ast_1.default.number(amtElementsSinceUpdate),
102
+ }));
103
+ }
104
+ const keyId = luau_ast_1.default.tempId("k");
105
+ const valueId = luau_ast_1.default.tempId("v");
106
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ForStatement, {
107
+ ids: luau_ast_1.default.list.make(keyId, valueId),
108
+ expression,
109
+ statements: luau_ast_1.default.list.make(luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
110
+ left: lengthId,
111
+ operator: "+=",
112
+ right: luau_ast_1.default.number(1),
113
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
114
+ left: luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ComputedIndexExpression, {
115
+ expression: arrayId,
116
+ index: lengthId,
117
+ }),
118
+ operator: "=",
119
+ right: luau_ast_1.default.array([keyId, valueId]),
120
+ })),
121
+ }));
122
+ return result;
123
+ };
124
+ const addIterableFunction = (state, expression, arrayId, lengthId, amtElementsSinceUpdate) => {
125
+ const result = luau_ast_1.default.list.make();
126
+ if (amtElementsSinceUpdate > 0) {
127
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
128
+ left: lengthId,
129
+ operator: "+=",
130
+ right: luau_ast_1.default.number(amtElementsSinceUpdate),
131
+ }));
132
+ }
133
+ const valueId = luau_ast_1.default.tempId("result");
134
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ForStatement, {
135
+ ids: luau_ast_1.default.list.make(valueId),
136
+ expression,
137
+ statements: luau_ast_1.default.list.make(luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
138
+ left: lengthId,
139
+ operator: "+=",
140
+ right: luau_ast_1.default.number(1),
141
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
142
+ left: luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ComputedIndexExpression, {
143
+ expression: arrayId,
144
+ index: lengthId,
145
+ }),
146
+ operator: "=",
147
+ right: valueId,
148
+ })),
149
+ }));
150
+ return result;
151
+ };
152
+ const addIterableFunctionLuaTuple = (state, expression, arrayId, lengthId, amtElementsSinceUpdate) => {
153
+ const result = luau_ast_1.default.list.make();
154
+ if (amtElementsSinceUpdate > 0) {
155
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
156
+ left: lengthId,
157
+ operator: "+=",
158
+ right: luau_ast_1.default.number(amtElementsSinceUpdate),
159
+ }));
160
+ }
161
+ const iterFuncId = state.pushToVar(expression, "iterFunc");
162
+ const valueId = luau_ast_1.default.tempId("results");
163
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.WhileStatement, {
164
+ condition: luau_ast_1.default.bool(true),
165
+ statements: luau_ast_1.default.list.make(luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.VariableDeclaration, {
166
+ left: valueId,
167
+ right: luau_ast_1.default.array([luau_ast_1.default.call(iterFuncId)]),
168
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.IfStatement, {
169
+ condition: luau_ast_1.default.binary(luau_ast_1.default.unary("#", valueId), "==", luau_ast_1.default.number(0)),
170
+ statements: luau_ast_1.default.list.make(luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.BreakStatement, {})),
171
+ elseBody: luau_ast_1.default.list.make(),
172
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
173
+ left: lengthId,
174
+ operator: "+=",
175
+ right: luau_ast_1.default.number(1),
176
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
177
+ left: luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ComputedIndexExpression, {
178
+ expression: arrayId,
179
+ index: lengthId,
180
+ }),
181
+ operator: "=",
182
+ right: valueId,
183
+ })),
184
+ }));
185
+ return result;
186
+ };
187
+ const addGenerator = (state, expression, arrayId, lengthId, amtElementsSinceUpdate) => {
188
+ const result = luau_ast_1.default.list.make();
189
+ if (amtElementsSinceUpdate > 0) {
190
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
191
+ left: lengthId,
192
+ operator: "+=",
193
+ right: luau_ast_1.default.number(amtElementsSinceUpdate),
194
+ }));
195
+ }
196
+ const iterId = luau_ast_1.default.tempId("result");
197
+ luau_ast_1.default.list.push(result, luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ForStatement, {
198
+ ids: luau_ast_1.default.list.make(iterId),
199
+ expression: luau_ast_1.default.property((0, convertToIndexableExpression_1.convertToIndexableExpression)(expression), "next"),
200
+ statements: luau_ast_1.default.list.make(luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.IfStatement, {
201
+ condition: luau_ast_1.default.property(iterId, "done"),
202
+ statements: luau_ast_1.default.list.make(luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.BreakStatement, {})),
203
+ elseBody: luau_ast_1.default.list.make(),
204
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
205
+ left: lengthId,
206
+ operator: "+=",
207
+ right: luau_ast_1.default.number(1),
208
+ }), luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.Assignment, {
209
+ left: luau_ast_1.default.create(luau_ast_1.default.SyntaxKind.ComputedIndexExpression, {
210
+ expression: arrayId,
211
+ index: lengthId,
212
+ }),
213
+ operator: "=",
214
+ right: luau_ast_1.default.property(iterId, "value"),
215
+ })),
216
+ }));
217
+ return result;
218
+ };
219
+ function getAddIterableToArrayBuilder(state, node, type) {
220
+ if ((0, types_1.isDefinitelyType)(type, (0, types_1.isArrayType)(state))) {
221
+ return addArray;
222
+ }
223
+ else if ((0, types_1.isDefinitelyType)(type, types_1.isStringType)) {
224
+ return addString;
225
+ }
226
+ else if ((0, types_1.isDefinitelyType)(type, (0, types_1.isSetType)(state))) {
227
+ return addSet;
228
+ }
229
+ else if ((0, types_1.isDefinitelyType)(type, (0, types_1.isMapType)(state)) || (0, types_1.isDefinitelyType)(type, (0, types_1.isSharedTableType)(state))) {
230
+ return addMap;
231
+ }
232
+ else if ((0, types_1.isDefinitelyType)(type, (0, types_1.isIterableFunctionLuaTupleType)(state))) {
233
+ return addIterableFunctionLuaTuple;
234
+ }
235
+ else if ((0, types_1.isDefinitelyType)(type, (0, types_1.isIterableFunctionType)(state))) {
236
+ return addIterableFunction;
237
+ }
238
+ else if ((0, types_1.isDefinitelyType)(type, (0, types_1.isGeneratorType)(state))) {
239
+ return addGenerator;
240
+ }
241
+ else if ((0, types_1.isDefinitelyType)(type, (0, types_1.isIterableType)(state))) {
242
+ DiagnosticService_1.DiagnosticService.addDiagnostic(diagnostics_1.errors.noIterableIteration(node));
243
+ return () => luau_ast_1.default.list.make();
244
+ }
245
+ else if (type.isUnion()) {
246
+ DiagnosticService_1.DiagnosticService.addDiagnostic(diagnostics_1.errors.noMacroUnion(node));
247
+ return () => luau_ast_1.default.list.make();
248
+ }
249
+ else {
250
+ (0, assert_1.assert)(false, `Iteration type not implemented: ${state.typeChecker.typeToString(type)}`);
251
+ }
252
+ }
253
+ //# sourceMappingURL=getAddIterableToArrayBuilder.js.map
@@ -0,0 +1,3 @@
1
+ import luau from "@roblox-ts/luau-ast";
2
+ import ts from "typescript";
3
+ export declare function getAssignableValue(operator: luau.AssignmentOperator, value: luau.Expression, valueType: ts.Type): luau.Expression<luau.SyntaxKind>;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getAssignableValue = getAssignableValue;
7
+ const luau_ast_1 = __importDefault(require("@roblox-ts/luau-ast"));
8
+ const types_1 = require("./types");
9
+ function getAssignableValue(operator, value, valueType) {
10
+ if (operator === "..=" && !(0, types_1.isDefinitelyType)(valueType, types_1.isStringType)) {
11
+ return luau_ast_1.default.call(luau_ast_1.default.globals.tostring, [value]);
12
+ }
13
+ return value;
14
+ }
15
+ //# sourceMappingURL=getAssignableValue.js.map
@@ -0,0 +1,4 @@
1
+ import luau from "@roblox-ts/luau-ast";
2
+ import { TransformState } from "..";
3
+ import ts from "typescript";
4
+ export declare function getConstantValueLiteral(state: TransformState, node: ts.EnumMember | ts.PropertyAccessExpression | ts.ElementAccessExpression): luau.Expression<luau.SyntaxKind> | undefined;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getConstantValueLiteral = getConstantValueLiteral;
7
+ const luau_ast_1 = __importDefault(require("@roblox-ts/luau-ast"));
8
+ function getConstantValueLiteral(state, node) {
9
+ const constantValue = state.typeChecker.getConstantValue(node);
10
+ if (constantValue !== undefined) {
11
+ if (typeof constantValue === "string") {
12
+ return luau_ast_1.default.string(constantValue);
13
+ }
14
+ else {
15
+ return luau_ast_1.default.number(constantValue);
16
+ }
17
+ }
18
+ }
19
+ //# sourceMappingURL=getConstantValueLiteral.js.map
@@ -0,0 +1,2 @@
1
+ import ts from "typescript";
2
+ export declare function getDeclaredVariables(node: ts.VariableDeclarationList | ts.VariableDeclaration): ts.Identifier[];
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getDeclaredVariables = getDeclaredVariables;
7
+ const typescript_1 = __importDefault(require("typescript"));
8
+ function getDeclaredVariablesFromBindingName(node, list) {
9
+ if (typescript_1.default.isIdentifier(node)) {
10
+ list.push(node);
11
+ }
12
+ else if (typescript_1.default.isObjectBindingPattern(node)) {
13
+ for (const element of node.elements) {
14
+ getDeclaredVariablesFromBindingName(element.name, list);
15
+ }
16
+ }
17
+ else if (typescript_1.default.isArrayBindingPattern(node)) {
18
+ for (const element of node.elements) {
19
+ if (!typescript_1.default.isOmittedExpression(element)) {
20
+ getDeclaredVariablesFromBindingName(element.name, list);
21
+ }
22
+ }
23
+ }
24
+ }
25
+ function getDeclaredVariables(node) {
26
+ const list = new Array();
27
+ if (typescript_1.default.isVariableDeclarationList(node)) {
28
+ for (const declaration of node.declarations) {
29
+ getDeclaredVariablesFromBindingName(declaration.name, list);
30
+ }
31
+ }
32
+ else {
33
+ getDeclaredVariablesFromBindingName(node.name, list);
34
+ }
35
+ return list;
36
+ }
37
+ //# sourceMappingURL=getDeclaredVariables.js.map
@@ -0,0 +1,2 @@
1
+ import ts from "typescript";
2
+ export declare function getExtendsNode(node: ts.ClassLikeDeclaration): ts.ExpressionWithTypeArguments | undefined;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getExtendsNode = getExtendsNode;
7
+ const typescript_1 = __importDefault(require("typescript"));
8
+ function getExtendsNode(node) {
9
+ var _a;
10
+ for (const clause of (_a = node.heritageClauses) !== null && _a !== void 0 ? _a : []) {
11
+ if (clause.token === typescript_1.default.SyntaxKind.ExtendsKeyword) {
12
+ return clause.types[0];
13
+ }
14
+ }
15
+ }
16
+ //# sourceMappingURL=getExtendsNode.js.map
@@ -0,0 +1 @@
1
+ export declare function getFlags<T extends number>(flags: T, from: Record<string | number, string | number>): string[];
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getFlags = getFlags;
4
+ function getFlags(flags, from) {
5
+ const results = new Array();
6
+ for (const [flagName, flagValue] of Object.entries(from)) {
7
+ if (typeof flagValue === "number" && !!(flags & flagValue)) {
8
+ results.push(flagName);
9
+ }
10
+ }
11
+ return results;
12
+ }
13
+ //# sourceMappingURL=getFlags.js.map