@harmoniclabs/pebble 0.1.0-dev2 → 0.1.0-dev3

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 (769) hide show
  1. package/dist/IR/IRHash.d.ts +8 -0
  2. package/dist/IR/IRHash.js +78 -0
  3. package/dist/IR/IRNodeKind.d.ts +17 -0
  4. package/dist/IR/IRNodeKind.js +19 -0
  5. package/dist/IR/IRNodes/BaseIRMetadata.d.ts +3 -0
  6. package/dist/IR/IRNodes/BaseIRMetadata.js +1 -0
  7. package/dist/IR/IRNodes/IRApp.d.ts +36 -0
  8. package/dist/IR/IRNodes/IRApp.js +91 -0
  9. package/dist/IR/IRNodes/IRCase.d.ts +32 -0
  10. package/dist/IR/IRNodes/IRCase.js +91 -0
  11. package/dist/IR/IRNodes/IRConst.d.ts +49 -0
  12. package/dist/IR/IRNodes/IRConst.js +273 -0
  13. package/dist/IR/IRNodes/IRConstr.d.ts +30 -0
  14. package/dist/IR/IRNodes/IRConstr.js +87 -0
  15. package/dist/IR/IRNodes/IRDelayed.d.ts +31 -0
  16. package/dist/IR/IRNodes/IRDelayed.js +68 -0
  17. package/dist/IR/IRNodes/IRError.d.ts +32 -0
  18. package/dist/IR/IRNodes/IRError.js +44 -0
  19. package/dist/IR/IRNodes/IRForced.d.ts +31 -0
  20. package/dist/IR/IRNodes/IRForced.js +69 -0
  21. package/dist/IR/IRNodes/IRFunc.d.ts +33 -0
  22. package/dist/IR/IRNodes/IRFunc.js +91 -0
  23. package/dist/IR/IRNodes/IRHoisted.d.ts +55 -0
  24. package/dist/IR/IRNodes/IRHoisted.js +212 -0
  25. package/dist/IR/IRNodes/IRLetted.d.ts +108 -0
  26. package/dist/IR/IRNodes/IRLetted.js +444 -0
  27. package/dist/IR/IRNodes/IRNative/IRNativeTag.d.ts +138 -0
  28. package/dist/IR/IRNodes/IRNative/IRNativeTag.js +204 -0
  29. package/dist/IR/IRNodes/IRNative/index.d.ts +165 -0
  30. package/dist/IR/IRNodes/IRNative/index.js +240 -0
  31. package/dist/IR/IRNodes/IRNative/isForcedNative.d.ts +3 -0
  32. package/dist/IR/IRNodes/IRNative/isForcedNative.js +18 -0
  33. package/dist/IR/IRNodes/IRRecursive.d.ts +29 -0
  34. package/dist/IR/IRNodes/IRRecursive.js +90 -0
  35. package/dist/IR/IRNodes/IRSelfCall.d.ts +46 -0
  36. package/dist/IR/IRNodes/IRSelfCall.js +127 -0
  37. package/dist/IR/IRNodes/IRVar.d.ts +41 -0
  38. package/dist/IR/IRNodes/IRVar.js +93 -0
  39. package/dist/IR/IRNodes/index.d.ts +12 -0
  40. package/dist/IR/IRNodes/index.js +12 -0
  41. package/dist/IR/IRNodes/utils/dependsByDbns.d.ts +5 -0
  42. package/dist/IR/IRNodes/utils/dependsByDbns.js +29 -0
  43. package/dist/IR/IRNodes/utils/isClosedAtDbn.d.ts +2 -0
  44. package/dist/IR/IRNodes/utils/isClosedAtDbn.js +22 -0
  45. package/dist/IR/IRNodes/utils/makeArrayLikeProxy.d.ts +1 -0
  46. package/dist/IR/IRNodes/utils/makeArrayLikeProxy.js +34 -0
  47. package/dist/IR/IRNodes/utils/mapArrayLike.d.ts +1 -0
  48. package/dist/IR/IRNodes/utils/mapArrayLike.js +8 -0
  49. package/dist/IR/IRTerm.d.ts +15 -0
  50. package/dist/IR/IRTerm.js +1 -0
  51. package/dist/IR/index.d.ts +5 -0
  52. package/dist/IR/index.js +5 -0
  53. package/dist/IR/interfaces/IHash.d.ts +6 -0
  54. package/dist/IR/interfaces/IHash.js +1 -0
  55. package/dist/IR/interfaces/IIRParent.d.ts +4 -0
  56. package/dist/IR/interfaces/IIRParent.js +1 -0
  57. package/dist/IR/interfaces/IRMetadata.d.ts +3 -0
  58. package/dist/IR/interfaces/IRMetadata.js +2 -0
  59. package/dist/IR/interfaces/ToIR.d.ts +5 -0
  60. package/dist/IR/interfaces/ToIR.js +1 -0
  61. package/dist/IR/interfaces/index.d.ts +4 -0
  62. package/dist/IR/interfaces/index.js +4 -0
  63. package/dist/IR/toUPLC/CompilerOptions.d.ts +80 -0
  64. package/dist/IR/toUPLC/CompilerOptions.js +98 -0
  65. package/dist/IR/toUPLC/_internal/_addDepth.d.ts +2 -0
  66. package/dist/IR/toUPLC/_internal/_addDepth.js +58 -0
  67. package/dist/IR/toUPLC/_internal/_irToUplc.d.ts +9 -0
  68. package/dist/IR/toUPLC/_internal/_irToUplc.js +156 -0
  69. package/dist/IR/toUPLC/_internal/_makeAllNegativeNativesHoisted.d.ts +2 -0
  70. package/dist/IR/toUPLC/_internal/_makeAllNegativeNativesHoisted.js +12 -0
  71. package/dist/IR/toUPLC/_internal/_modifyChildFromTo.d.ts +10 -0
  72. package/dist/IR/toUPLC/_internal/_modifyChildFromTo.js +141 -0
  73. package/dist/IR/toUPLC/_internal/depth.d.ts +5 -0
  74. package/dist/IR/toUPLC/_internal/depth.js +8 -0
  75. package/dist/IR/toUPLC/_internal/findAll.d.ts +3 -0
  76. package/dist/IR/toUPLC/_internal/findAll.js +99 -0
  77. package/dist/IR/toUPLC/_internal/getDebruijnInTerm.d.ts +2 -0
  78. package/dist/IR/toUPLC/_internal/getDebruijnInTerm.js +51 -0
  79. package/dist/IR/toUPLC/_internal/getDiffDbn.d.ts +2 -0
  80. package/dist/IR/toUPLC/_internal/getDiffDbn.js +55 -0
  81. package/dist/IR/toUPLC/_internal/includesLettedTerms.d.ts +2 -0
  82. package/dist/IR/toUPLC/_internal/includesLettedTerms.js +50 -0
  83. package/dist/IR/toUPLC/_internal/includesNode.d.ts +2 -0
  84. package/dist/IR/toUPLC/_internal/includesNode.js +54 -0
  85. package/dist/IR/toUPLC/_internal/iterTree.d.ts +2 -0
  86. package/dist/IR/toUPLC/_internal/iterTree.js +93 -0
  87. package/dist/IR/toUPLC/_internal/lowestCommonAncestor.d.ts +3 -0
  88. package/dist/IR/toUPLC/_internal/lowestCommonAncestor.js +41 -0
  89. package/dist/IR/toUPLC/compileIRToUPLC.d.ts +4 -0
  90. package/dist/IR/toUPLC/compileIRToUPLC.js +118 -0
  91. package/dist/IR/toUPLC/index.d.ts +2 -0
  92. package/dist/IR/toUPLC/index.js +2 -0
  93. package/dist/IR/toUPLC/subRoutines/handleHoistedAndReturnRoot/index.d.ts +2 -0
  94. package/dist/IR/toUPLC/subRoutines/handleHoistedAndReturnRoot/index.js +161 -0
  95. package/dist/IR/toUPLC/subRoutines/handleLetted/findHighestRecursiveParent.d.ts +5 -0
  96. package/dist/IR/toUPLC/subRoutines/handleLetted/findHighestRecursiveParent.js +14 -0
  97. package/dist/IR/toUPLC/subRoutines/handleLetted/groupByScope.d.ts +20 -0
  98. package/dist/IR/toUPLC/subRoutines/handleLetted/groupByScope.js +107 -0
  99. package/dist/IR/toUPLC/subRoutines/handleLetted/incrementUnboundDbns.d.ts +9 -0
  100. package/dist/IR/toUPLC/subRoutines/handleLetted/incrementUnboundDbns.js +73 -0
  101. package/dist/IR/toUPLC/subRoutines/handleLetted/index.d.ts +2 -0
  102. package/dist/IR/toUPLC/subRoutines/handleLetted/index.js +304 -0
  103. package/dist/IR/toUPLC/subRoutines/handleRecursiveTerms.d.ts +3 -0
  104. package/dist/IR/toUPLC/subRoutines/handleRecursiveTerms.js +32 -0
  105. package/dist/IR/toUPLC/subRoutines/hoistForcedNatives.d.ts +2 -0
  106. package/dist/IR/toUPLC/subRoutines/hoistForcedNatives.js +58 -0
  107. package/dist/IR/toUPLC/subRoutines/inlineSingleUseApplications.d.ts +1 -0
  108. package/dist/IR/toUPLC/subRoutines/inlineSingleUseApplications.js +12 -0
  109. package/dist/IR/toUPLC/subRoutines/markRecursiveHoistsAsForced.d.ts +2 -0
  110. package/dist/IR/toUPLC/subRoutines/markRecursiveHoistsAsForced.js +82 -0
  111. package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/expandFuncsAndReturnRoot.d.ts +4 -0
  112. package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/expandFuncsAndReturnRoot.js +68 -0
  113. package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/index.d.ts +5 -0
  114. package/dist/IR/toUPLC/subRoutines/performUplcOptimizationsAndReturnRoot/index.js +227 -0
  115. package/dist/IR/toUPLC/subRoutines/replaceClosedLettedWithHoisted.d.ts +2 -0
  116. package/dist/IR/toUPLC/subRoutines/replaceClosedLettedWithHoisted.js +13 -0
  117. package/dist/IR/toUPLC/subRoutines/replaceForcedNativesWithHoisted.d.ts +2 -0
  118. package/dist/IR/toUPLC/subRoutines/replaceForcedNativesWithHoisted.js +11 -0
  119. package/dist/IR/toUPLC/subRoutines/replaceHoistedWithLetted.d.ts +2 -0
  120. package/dist/IR/toUPLC/subRoutines/replaceHoistedWithLetted.js +16 -0
  121. package/dist/IR/toUPLC/subRoutines/replaceNatives/index.d.ts +2 -0
  122. package/dist/IR/toUPLC/subRoutines/replaceNatives/index.js +16 -0
  123. package/dist/IR/toUPLC/subRoutines/replaceNatives/nativeToIR.d.ts +3 -0
  124. package/dist/IR/toUPLC/subRoutines/replaceNatives/nativeToIR.js +520 -0
  125. package/dist/IR/toUPLC/subRoutines/sanifyTree.d.ts +5 -0
  126. package/dist/IR/toUPLC/subRoutines/sanifyTree.js +84 -0
  127. package/dist/IR/tree_utils/_ir_apps.d.ts +3 -0
  128. package/dist/IR/tree_utils/_ir_apps.js +8 -0
  129. package/dist/IR/tree_utils/_ir_lazyChooseList.d.ts +3 -0
  130. package/dist/IR/tree_utils/_ir_lazyChooseList.js +5 -0
  131. package/dist/IR/tree_utils/_ir_lazyIfThenElse.d.ts +3 -0
  132. package/dist/IR/tree_utils/_ir_lazyIfThenElse.js +5 -0
  133. package/dist/IR/tree_utils/_ir_let.d.ts +3 -0
  134. package/dist/IR/tree_utils/_ir_let.js +4 -0
  135. package/dist/IR/tree_utils/getChildren.d.ts +2 -0
  136. package/dist/IR/tree_utils/getChildren.js +33 -0
  137. package/dist/IR/tree_utils/getRoot.d.ts +2 -0
  138. package/dist/IR/tree_utils/getRoot.js +6 -0
  139. package/dist/IR/utils/MutArrayLike.d.ts +5 -0
  140. package/dist/IR/utils/MutArrayLike.js +1 -0
  141. package/dist/IR/utils/concatUint8Arr.d.ts +1 -0
  142. package/dist/IR/utils/concatUint8Arr.js +11 -0
  143. package/dist/IR/utils/equalIRTerm.d.ts +12 -0
  144. package/dist/IR/utils/equalIRTerm.js +19 -0
  145. package/dist/IR/utils/index.d.ts +3 -0
  146. package/dist/IR/utils/index.js +3 -0
  147. package/dist/IR/utils/isClosedIRTerm.d.ts +2 -0
  148. package/dist/IR/utils/isClosedIRTerm.js +58 -0
  149. package/dist/IR/utils/isIRParentTerm.d.ts +12 -0
  150. package/dist/IR/utils/isIRParentTerm.js +26 -0
  151. package/dist/IR/utils/isIRTerm.d.ts +2 -0
  152. package/dist/IR/utils/isIRTerm.js +30 -0
  153. package/dist/IR/utils/positiveIntAsBytes.d.ts +5 -0
  154. package/dist/IR/utils/positiveIntAsBytes.js +27 -0
  155. package/dist/IR/utils/showIR.d.ts +43 -0
  156. package/dist/IR/utils/showIR.js +372 -0
  157. package/dist/ast/PebbleAst.d.ts +8 -0
  158. package/dist/ast/PebbleAst.js +15 -0
  159. package/dist/ast/Source/Source.d.ts +47 -0
  160. package/dist/ast/Source/Source.js +89 -0
  161. package/dist/ast/Source/SourceRange.d.ts +16 -0
  162. package/dist/ast/Source/SourceRange.js +49 -0
  163. package/dist/ast/nodes/HasSourceRange.d.ts +5 -0
  164. package/dist/ast/nodes/HasSourceRange.js +6 -0
  165. package/dist/ast/nodes/common/Identifier.d.ts +13 -0
  166. package/dist/ast/nodes/common/Identifier.js +20 -0
  167. package/dist/ast/nodes/expr/CaseExpr.d.ts +22 -0
  168. package/dist/ast/nodes/expr/CaseExpr.js +30 -0
  169. package/dist/ast/nodes/expr/ElemAccessExpr.d.ts +12 -0
  170. package/dist/ast/nodes/expr/ElemAccessExpr.js +13 -0
  171. package/dist/ast/nodes/expr/IsExpr.d.ts +1 -0
  172. package/dist/ast/nodes/expr/IsExpr.js +14 -0
  173. package/dist/ast/nodes/expr/ParentesizedExpr.d.ts +8 -0
  174. package/dist/ast/nodes/expr/ParentesizedExpr.js +8 -0
  175. package/dist/ast/nodes/expr/PebbleExpr.d.ts +18 -0
  176. package/dist/ast/nodes/expr/PebbleExpr.js +31 -0
  177. package/dist/ast/nodes/expr/PropAccessExpr.d.ts +28 -0
  178. package/dist/ast/nodes/expr/PropAccessExpr.js +46 -0
  179. package/dist/ast/nodes/expr/TernaryExpr.d.ts +10 -0
  180. package/dist/ast/nodes/expr/TernaryExpr.js +12 -0
  181. package/dist/ast/nodes/expr/TypeConversionExpr.d.ts +10 -0
  182. package/dist/ast/nodes/expr/TypeConversionExpr.js +11 -0
  183. package/dist/ast/nodes/expr/binary/BinaryExpr.d.ts +133 -0
  184. package/dist/ast/nodes/expr/binary/BinaryExpr.js +253 -0
  185. package/dist/ast/nodes/expr/functions/ArrowKind.d.ts +9 -0
  186. package/dist/ast/nodes/expr/functions/ArrowKind.js +11 -0
  187. package/dist/ast/nodes/expr/functions/CallExpr.d.ts +17 -0
  188. package/dist/ast/nodes/expr/functions/CallExpr.js +16 -0
  189. package/dist/ast/nodes/expr/functions/FuncExpr.d.ts +21 -0
  190. package/dist/ast/nodes/expr/functions/FuncExpr.js +21 -0
  191. package/dist/ast/nodes/expr/litteral/LitArrExpr.d.ts +8 -0
  192. package/dist/ast/nodes/expr/litteral/LitArrExpr.js +8 -0
  193. package/dist/ast/nodes/expr/litteral/LitFalseExpr.d.ts +6 -0
  194. package/dist/ast/nodes/expr/litteral/LitFalseExpr.js +6 -0
  195. package/dist/ast/nodes/expr/litteral/LitHexBytesExpr.d.ts +7 -0
  196. package/dist/ast/nodes/expr/litteral/LitHexBytesExpr.js +8 -0
  197. package/dist/ast/nodes/expr/litteral/LitIntExpr.d.ts +7 -0
  198. package/dist/ast/nodes/expr/litteral/LitIntExpr.js +8 -0
  199. package/dist/ast/nodes/expr/litteral/LitNamedObjExpr.d.ts +12 -0
  200. package/dist/ast/nodes/expr/litteral/LitNamedObjExpr.js +12 -0
  201. package/dist/ast/nodes/expr/litteral/LitObjExpr.d.ts +14 -0
  202. package/dist/ast/nodes/expr/litteral/LitObjExpr.js +10 -0
  203. package/dist/ast/nodes/expr/litteral/LitStrExpr.d.ts +7 -0
  204. package/dist/ast/nodes/expr/litteral/LitStrExpr.js +8 -0
  205. package/dist/ast/nodes/expr/litteral/LitThisExpr.d.ts +6 -0
  206. package/dist/ast/nodes/expr/litteral/LitThisExpr.js +6 -0
  207. package/dist/ast/nodes/expr/litteral/LitTrueExpr.d.ts +6 -0
  208. package/dist/ast/nodes/expr/litteral/LitTrueExpr.js +6 -0
  209. package/dist/ast/nodes/expr/litteral/LitUndefExpr.d.ts +6 -0
  210. package/dist/ast/nodes/expr/litteral/LitUndefExpr.js +6 -0
  211. package/dist/ast/nodes/expr/litteral/LitVoidExpr.d.ts +6 -0
  212. package/dist/ast/nodes/expr/litteral/LitVoidExpr.js +6 -0
  213. package/dist/ast/nodes/expr/litteral/LitteralExpr.d.ts +13 -0
  214. package/dist/ast/nodes/expr/litteral/LitteralExpr.js +24 -0
  215. package/dist/ast/nodes/expr/unary/IUnaryExpression.d.ts +4 -0
  216. package/dist/ast/nodes/expr/unary/IUnaryExpression.js +1 -0
  217. package/dist/ast/nodes/expr/unary/NonNullExpr.d.ts +8 -0
  218. package/dist/ast/nodes/expr/unary/NonNullExpr.js +8 -0
  219. package/dist/ast/nodes/expr/unary/UnaryExclamation.d.ts +9 -0
  220. package/dist/ast/nodes/expr/unary/UnaryExclamation.js +8 -0
  221. package/dist/ast/nodes/expr/unary/UnaryMinus.d.ts +9 -0
  222. package/dist/ast/nodes/expr/unary/UnaryMinus.js +8 -0
  223. package/dist/ast/nodes/expr/unary/UnaryPlus.d.ts +9 -0
  224. package/dist/ast/nodes/expr/unary/UnaryPlus.js +8 -0
  225. package/dist/ast/nodes/expr/unary/UnaryPrefixExpr.d.ts +14 -0
  226. package/dist/ast/nodes/expr/unary/UnaryPrefixExpr.js +27 -0
  227. package/dist/ast/nodes/expr/unary/UnaryTilde.d.ts +9 -0
  228. package/dist/ast/nodes/expr/unary/UnaryTilde.js +8 -0
  229. package/dist/ast/nodes/statements/AssertStmt.d.ts +15 -0
  230. package/dist/ast/nodes/statements/AssertStmt.js +14 -0
  231. package/dist/ast/nodes/statements/AssignmentStmt.d.ts +105 -0
  232. package/dist/ast/nodes/statements/AssignmentStmt.js +211 -0
  233. package/dist/ast/nodes/statements/BlockStmt.d.ts +8 -0
  234. package/dist/ast/nodes/statements/BlockStmt.js +8 -0
  235. package/dist/ast/nodes/statements/BreakStmt.d.ts +6 -0
  236. package/dist/ast/nodes/statements/BreakStmt.js +6 -0
  237. package/dist/ast/nodes/statements/ContinueStmt.d.ts +6 -0
  238. package/dist/ast/nodes/statements/ContinueStmt.js +6 -0
  239. package/dist/ast/nodes/statements/DecrStmt.d.ts +11 -0
  240. package/dist/ast/nodes/statements/DecrStmt.js +11 -0
  241. package/dist/ast/nodes/statements/DoWhileStmt.d.ts +10 -0
  242. package/dist/ast/nodes/statements/DoWhileStmt.js +10 -0
  243. package/dist/ast/nodes/statements/EmptyStmt.d.ts +6 -0
  244. package/dist/ast/nodes/statements/EmptyStmt.js +6 -0
  245. package/dist/ast/nodes/statements/ExportImportStmt.d.ts +15 -0
  246. package/dist/ast/nodes/statements/ExportImportStmt.js +15 -0
  247. package/dist/ast/nodes/statements/ExportStarStmt.d.ts +8 -0
  248. package/dist/ast/nodes/statements/ExportStarStmt.js +8 -0
  249. package/dist/ast/nodes/statements/ExportStmt.d.ts +13 -0
  250. package/dist/ast/nodes/statements/ExportStmt.js +13 -0
  251. package/dist/ast/nodes/statements/ExprStmt.d.ts +8 -0
  252. package/dist/ast/nodes/statements/ExprStmt.js +18 -0
  253. package/dist/ast/nodes/statements/FailStmt.d.ts +11 -0
  254. package/dist/ast/nodes/statements/FailStmt.js +10 -0
  255. package/dist/ast/nodes/statements/ForOfStmt.d.ts +16 -0
  256. package/dist/ast/nodes/statements/ForOfStmt.js +15 -0
  257. package/dist/ast/nodes/statements/ForStmt.d.ts +19 -0
  258. package/dist/ast/nodes/statements/ForStmt.js +19 -0
  259. package/dist/ast/nodes/statements/IfStmt.d.ts +11 -0
  260. package/dist/ast/nodes/statements/IfStmt.js +12 -0
  261. package/dist/ast/nodes/statements/ImportStarStmt.d.ts +15 -0
  262. package/dist/ast/nodes/statements/ImportStarStmt.js +15 -0
  263. package/dist/ast/nodes/statements/ImportStmt.d.ts +21 -0
  264. package/dist/ast/nodes/statements/ImportStmt.js +25 -0
  265. package/dist/ast/nodes/statements/IncrStmt.d.ts +8 -0
  266. package/dist/ast/nodes/statements/IncrStmt.js +8 -0
  267. package/dist/ast/nodes/statements/MatchStmt.d.ts +17 -0
  268. package/dist/ast/nodes/statements/MatchStmt.js +20 -0
  269. package/dist/ast/nodes/statements/PebbleStmt.d.ts +29 -0
  270. package/dist/ast/nodes/statements/PebbleStmt.js +62 -0
  271. package/dist/ast/nodes/statements/ReturnStmt.d.ts +8 -0
  272. package/dist/ast/nodes/statements/ReturnStmt.js +8 -0
  273. package/dist/ast/nodes/statements/TestStmt.d.ts +10 -0
  274. package/dist/ast/nodes/statements/TestStmt.js +10 -0
  275. package/dist/ast/nodes/statements/TypeImplementsStmt.d.ts +21 -0
  276. package/dist/ast/nodes/statements/TypeImplementsStmt.js +26 -0
  277. package/dist/ast/nodes/statements/UsingStmt.d.ts +16 -0
  278. package/dist/ast/nodes/statements/UsingStmt.js +20 -0
  279. package/dist/ast/nodes/statements/VarStmt.d.ts +10 -0
  280. package/dist/ast/nodes/statements/VarStmt.js +11 -0
  281. package/dist/ast/nodes/statements/WhileStmt.d.ts +10 -0
  282. package/dist/ast/nodes/statements/WhileStmt.js +10 -0
  283. package/dist/ast/nodes/statements/declarations/EnumDecl.d.ts +18 -0
  284. package/dist/ast/nodes/statements/declarations/EnumDecl.js +22 -0
  285. package/dist/ast/nodes/statements/declarations/FuncDecl.d.ts +8 -0
  286. package/dist/ast/nodes/statements/declarations/FuncDecl.js +9 -0
  287. package/dist/ast/nodes/statements/declarations/InterfaceDecl.d.ts +19 -0
  288. package/dist/ast/nodes/statements/declarations/InterfaceDecl.js +26 -0
  289. package/dist/ast/nodes/statements/declarations/PebbleTypeDecl.d.ts +5 -0
  290. package/dist/ast/nodes/statements/declarations/PebbleTypeDecl.js +8 -0
  291. package/dist/ast/nodes/statements/declarations/StructDecl.d.ts +25 -0
  292. package/dist/ast/nodes/statements/declarations/StructDecl.js +36 -0
  293. package/dist/ast/nodes/statements/declarations/TypeAliasDecl.d.ts +11 -0
  294. package/dist/ast/nodes/statements/declarations/TypeAliasDecl.js +12 -0
  295. package/dist/ast/nodes/statements/declarations/VarDecl/ArrayLikeDeconstr.d.ts +19 -0
  296. package/dist/ast/nodes/statements/declarations/VarDecl/ArrayLikeDeconstr.js +19 -0
  297. package/dist/ast/nodes/statements/declarations/VarDecl/HasInit.d.ts +5 -0
  298. package/dist/ast/nodes/statements/declarations/VarDecl/HasInit.js +7 -0
  299. package/dist/ast/nodes/statements/declarations/VarDecl/NamedDeconstructVarDecl.d.ts +24 -0
  300. package/dist/ast/nodes/statements/declarations/VarDecl/NamedDeconstructVarDecl.js +30 -0
  301. package/dist/ast/nodes/statements/declarations/VarDecl/SimpleVarDecl.d.ts +17 -0
  302. package/dist/ast/nodes/statements/declarations/VarDecl/SimpleVarDecl.js +21 -0
  303. package/dist/ast/nodes/statements/declarations/VarDecl/SingleDeconstructVarDecl.d.ts +24 -0
  304. package/dist/ast/nodes/statements/declarations/VarDecl/SingleDeconstructVarDecl.js +20 -0
  305. package/dist/ast/nodes/statements/declarations/VarDecl/VarDecl.d.ts +8 -0
  306. package/dist/ast/nodes/statements/declarations/VarDecl/VarDecl.js +13 -0
  307. package/dist/ast/nodes/types/AstNamedTypeExpr.d.ts +14 -0
  308. package/dist/ast/nodes/types/AstNamedTypeExpr.js +14 -0
  309. package/dist/ast/nodes/types/AstNativeTypeExpr.d.ts +52 -0
  310. package/dist/ast/nodes/types/AstNativeTypeExpr.js +82 -0
  311. package/dist/ast/nodes/types/AstTypeExpr.d.ts +4 -0
  312. package/dist/ast/nodes/types/AstTypeExpr.js +7 -0
  313. package/dist/common.d.ts +194 -0
  314. package/dist/common.js +224 -0
  315. package/dist/compiler/AstCompiler/AstCompilationCtx.d.ts +35 -0
  316. package/dist/compiler/AstCompiler/AstCompilationCtx.js +43 -0
  317. package/dist/compiler/AstCompiler/AstCompiler.d.ts +73 -0
  318. package/dist/compiler/AstCompiler/AstCompiler.js +532 -0
  319. package/dist/compiler/AstCompiler/compileAst.d.ts +0 -0
  320. package/dist/compiler/AstCompiler/compileAst.js +0 -0
  321. package/dist/compiler/AstCompiler/index.d.ts +1 -0
  322. package/dist/compiler/AstCompiler/index.js +1 -0
  323. package/dist/compiler/AstCompiler/internal/exprs/_compileBinaryExpr.d.ts +5 -0
  324. package/dist/compiler/AstCompiler/internal/exprs/_compileBinaryExpr.js +66 -0
  325. package/dist/compiler/AstCompiler/internal/exprs/_compileCallExpr.d.ts +5 -0
  326. package/dist/compiler/AstCompiler/internal/exprs/_compileCallExpr.js +36 -0
  327. package/dist/compiler/AstCompiler/internal/exprs/_compileCaseExpr.d.ts +6 -0
  328. package/dist/compiler/AstCompiler/internal/exprs/_compileCaseExpr.js +47 -0
  329. package/dist/compiler/AstCompiler/internal/exprs/_compileElemAccessExpr.d.ts +5 -0
  330. package/dist/compiler/AstCompiler/internal/exprs/_compileElemAccessExpr.js +23 -0
  331. package/dist/compiler/AstCompiler/internal/exprs/_compileExpr.d.ts +22 -0
  332. package/dist/compiler/AstCompiler/internal/exprs/_compileExpr.js +77 -0
  333. package/dist/compiler/AstCompiler/internal/exprs/_compileFuncExpr.d.ts +26 -0
  334. package/dist/compiler/AstCompiler/internal/exprs/_compileFuncExpr.js +163 -0
  335. package/dist/compiler/AstCompiler/internal/exprs/_compileIsExpr.d.ts +1 -0
  336. package/dist/compiler/AstCompiler/internal/exprs/_compileIsExpr.js +43 -0
  337. package/dist/compiler/AstCompiler/internal/exprs/_compileLitteralExpr.d.ts +19 -0
  338. package/dist/compiler/AstCompiler/internal/exprs/_compileLitteralExpr.js +202 -0
  339. package/dist/compiler/AstCompiler/internal/exprs/_compileNonNullExpr.d.ts +5 -0
  340. package/dist/compiler/AstCompiler/internal/exprs/_compileNonNullExpr.js +43 -0
  341. package/dist/compiler/AstCompiler/internal/exprs/_compilePropAccessExpr.d.ts +9 -0
  342. package/dist/compiler/AstCompiler/internal/exprs/_compilePropAccessExpr.js +102 -0
  343. package/dist/compiler/AstCompiler/internal/exprs/_compileTernaryExpr.d.ts +5 -0
  344. package/dist/compiler/AstCompiler/internal/exprs/_compileTernaryExpr.js +22 -0
  345. package/dist/compiler/AstCompiler/internal/exprs/_compileTypeConversionExpr.d.ts +5 -0
  346. package/dist/compiler/AstCompiler/internal/exprs/_compileTypeConversionExpr.js +25 -0
  347. package/dist/compiler/AstCompiler/internal/exprs/_compileUnaryPrefixExpr.d.ts +5 -0
  348. package/dist/compiler/AstCompiler/internal/exprs/_compileUnaryPrefixExpr.js +54 -0
  349. package/dist/compiler/AstCompiler/internal/exprs/_compileVarAccessExpr.d.ts +5 -0
  350. package/dist/compiler/AstCompiler/internal/exprs/_compileVarAccessExpr.js +9 -0
  351. package/dist/compiler/AstCompiler/internal/exprs/_hasDuplicateTypeParams.d.ts +3 -0
  352. package/dist/compiler/AstCompiler/internal/exprs/_hasDuplicateTypeParams.js +13 -0
  353. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileAddExpr.d.ts +5 -0
  354. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileAddExpr.js +20 -0
  355. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileBitwiseAndExpr.d.ts +5 -0
  356. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileBitwiseAndExpr.js +20 -0
  357. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileBitwiseOrExpr.d.ts +5 -0
  358. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileBitwiseOrExpr.js +20 -0
  359. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileBitwiseXorExpr.d.ts +5 -0
  360. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileBitwiseXorExpr.js +20 -0
  361. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileDivExpr.d.ts +5 -0
  362. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileDivExpr.js +20 -0
  363. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileEqualExpr.d.ts +5 -0
  364. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileEqualExpr.js +18 -0
  365. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileExponentiationExpr.d.ts +5 -0
  366. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileExponentiationExpr.js +20 -0
  367. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileGreaterThanEqualExpr.d.ts +5 -0
  368. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileGreaterThanEqualExpr.js +27 -0
  369. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileGreaterThanExpr.d.ts +5 -0
  370. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileGreaterThanExpr.js +26 -0
  371. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileLessThanEqualExpr.d.ts +5 -0
  372. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileLessThanEqualExpr.js +25 -0
  373. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileLessThanExpr.d.ts +5 -0
  374. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileLessThanExpr.js +26 -0
  375. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileLogicalAndExpr.d.ts +5 -0
  376. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileLogicalAndExpr.js +22 -0
  377. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileLogicalOrExpr.d.ts +5 -0
  378. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileLogicalOrExpr.js +22 -0
  379. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileModuloExpr.d.ts +5 -0
  380. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileModuloExpr.js +20 -0
  381. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileMultExpr.d.ts +5 -0
  382. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileMultExpr.js +20 -0
  383. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileNotEqualExpr.d.ts +5 -0
  384. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileNotEqualExpr.js +18 -0
  385. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileOptionalDefaultExpr.d.ts +5 -0
  386. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileOptionalDefaultExpr.js +60 -0
  387. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileShiftLeftExpr.d.ts +5 -0
  388. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileShiftLeftExpr.js +21 -0
  389. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileShiftRightExpr.d.ts +5 -0
  390. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileShiftRightExpr.js +21 -0
  391. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileSubExpr.d.ts +5 -0
  392. package/dist/compiler/AstCompiler/internal/exprs/binary/_compileSubExpr.js +20 -0
  393. package/dist/compiler/AstCompiler/internal/statements/_compileAssertStmt.d.ts +4 -0
  394. package/dist/compiler/AstCompiler/internal/statements/_compileAssertStmt.js +30 -0
  395. package/dist/compiler/AstCompiler/internal/statements/_compileAssignmentStmt.d.ts +8 -0
  396. package/dist/compiler/AstCompiler/internal/statements/_compileAssignmentStmt.js +154 -0
  397. package/dist/compiler/AstCompiler/internal/statements/_compileBlockStmt.d.ts +4 -0
  398. package/dist/compiler/AstCompiler/internal/statements/_compileBlockStmt.js +14 -0
  399. package/dist/compiler/AstCompiler/internal/statements/_compileBreakStmt.d.ts +4 -0
  400. package/dist/compiler/AstCompiler/internal/statements/_compileBreakStmt.js +7 -0
  401. package/dist/compiler/AstCompiler/internal/statements/_compileContinueStmt.d.ts +4 -0
  402. package/dist/compiler/AstCompiler/internal/statements/_compileContinueStmt.js +7 -0
  403. package/dist/compiler/AstCompiler/internal/statements/_compileExprStmt.d.ts +1 -0
  404. package/dist/compiler/AstCompiler/internal/statements/_compileExprStmt.js +12 -0
  405. package/dist/compiler/AstCompiler/internal/statements/_compileFailStmt.d.ts +4 -0
  406. package/dist/compiler/AstCompiler/internal/statements/_compileFailStmt.js +18 -0
  407. package/dist/compiler/AstCompiler/internal/statements/_compileForOfStmt.d.ts +4 -0
  408. package/dist/compiler/AstCompiler/internal/statements/_compileForOfStmt.js +30 -0
  409. package/dist/compiler/AstCompiler/internal/statements/_compileForStmt.d.ts +7 -0
  410. package/dist/compiler/AstCompiler/internal/statements/_compileForStmt.js +46 -0
  411. package/dist/compiler/AstCompiler/internal/statements/_compileIfStmt.d.ts +4 -0
  412. package/dist/compiler/AstCompiler/internal/statements/_compileIfStmt.js +27 -0
  413. package/dist/compiler/AstCompiler/internal/statements/_compileMatchStmt.d.ts +6 -0
  414. package/dist/compiler/AstCompiler/internal/statements/_compileMatchStmt.js +182 -0
  415. package/dist/compiler/AstCompiler/internal/statements/_compileReturnStmt.d.ts +4 -0
  416. package/dist/compiler/AstCompiler/internal/statements/_compileReturnStmt.js +17 -0
  417. package/dist/compiler/AstCompiler/internal/statements/_compileStatement.d.ts +11 -0
  418. package/dist/compiler/AstCompiler/internal/statements/_compileStatement.js +73 -0
  419. package/dist/compiler/AstCompiler/internal/statements/_compileTestStmt.d.ts +1 -0
  420. package/dist/compiler/AstCompiler/internal/statements/_compileTestStmt.js +32 -0
  421. package/dist/compiler/AstCompiler/internal/statements/_compileUsingStmt.d.ts +11 -0
  422. package/dist/compiler/AstCompiler/internal/statements/_compileUsingStmt.js +41 -0
  423. package/dist/compiler/AstCompiler/internal/statements/_compileVarStmt.d.ts +34 -0
  424. package/dist/compiler/AstCompiler/internal/statements/_compileVarStmt.js +207 -0
  425. package/dist/compiler/AstCompiler/internal/statements/_compileWhileStmt.d.ts +4 -0
  426. package/dist/compiler/AstCompiler/internal/statements/_compileWhileStmt.js +19 -0
  427. package/dist/compiler/AstCompiler/internal/types/_compileDataEncodedConcreteType.d.ts +4 -0
  428. package/dist/compiler/AstCompiler/internal/types/_compileDataEncodedConcreteType.js +61 -0
  429. package/dist/compiler/AstCompiler/internal/types/_compileSopEncodedConcreteType.d.ts +4 -0
  430. package/dist/compiler/AstCompiler/internal/types/_compileSopEncodedConcreteType.js +59 -0
  431. package/dist/compiler/AstCompiler/scope/AstScope.d.ts +102 -0
  432. package/dist/compiler/AstCompiler/scope/AstScope.js +195 -0
  433. package/dist/compiler/AstCompiler/utils/deps/ResolveStackNode.d.ts +14 -0
  434. package/dist/compiler/AstCompiler/utils/deps/ResolveStackNode.js +36 -0
  435. package/dist/compiler/AstCompiler/utils/getPropAccessReturnType.d.ts +4 -0
  436. package/dist/compiler/AstCompiler/utils/getPropAccessReturnType.js +121 -0
  437. package/dist/compiler/AstCompiler/utils/getTirFuncSigTree/TirFuncSigTree.d.ts +39 -0
  438. package/dist/compiler/AstCompiler/utils/getTirFuncSigTree/TirFuncSigTree.js +129 -0
  439. package/dist/compiler/AstCompiler/utils/getTirFuncSigTree/getTirFuncSigTree.d.ts +4 -0
  440. package/dist/compiler/AstCompiler/utils/getTirFuncSigTree/getTirFuncSigTree.js +49 -0
  441. package/dist/compiler/AstCompiler/utils/wrapManyStatementsOrReturnSame.d.ts +3 -0
  442. package/dist/compiler/AstCompiler/utils/wrapManyStatementsOrReturnSame.js +12 -0
  443. package/dist/compiler/Compiler.d.ts +10 -0
  444. package/dist/compiler/Compiler.js +42 -0
  445. package/dist/compiler/TirCompiler/TirCompilerCtx.d.ts +7 -0
  446. package/dist/compiler/TirCompiler/TirCompilerCtx.js +8 -0
  447. package/dist/compiler/TirCompiler/compileTirProgram.d.ts +9 -0
  448. package/dist/compiler/TirCompiler/compileTirProgram.js +18 -0
  449. package/dist/compiler/TirCompiler/expressify/ExpressifyCtx.d.ts +72 -0
  450. package/dist/compiler/TirCompiler/expressify/ExpressifyCtx.js +282 -0
  451. package/dist/compiler/TirCompiler/expressify/determineReassignedVariablesAndReturn.d.ts +27 -0
  452. package/dist/compiler/TirCompiler/expressify/determineReassignedVariablesAndReturn.js +248 -0
  453. package/dist/compiler/TirCompiler/expressify/expressify.d.ts +15 -0
  454. package/dist/compiler/TirCompiler/expressify/expressify.js +403 -0
  455. package/dist/compiler/TirCompiler/expressify/expressifyForStmt.d.ts +8 -0
  456. package/dist/compiler/TirCompiler/expressify/expressifyForStmt.js +115 -0
  457. package/dist/compiler/TirCompiler/expressify/expressifyIfBranch.d.ts +6 -0
  458. package/dist/compiler/TirCompiler/expressify/expressifyIfBranch.js +105 -0
  459. package/dist/compiler/TirCompiler/expressify/expressifyTerminatingIfStmt.d.ts +5 -0
  460. package/dist/compiler/TirCompiler/expressify/expressifyTerminatingIfStmt.js +15 -0
  461. package/dist/compiler/TirCompiler/expressify/expressifyVarAssignmentStmt.d.ts +4 -0
  462. package/dist/compiler/TirCompiler/expressify/expressifyVarAssignmentStmt.js +20 -0
  463. package/dist/compiler/TirCompiler/expressify/expressifyVarDecl.d.ts +3 -0
  464. package/dist/compiler/TirCompiler/expressify/expressifyVarDecl.js +34 -0
  465. package/dist/compiler/TirCompiler/expressify/expressifyVars.d.ts +10 -0
  466. package/dist/compiler/TirCompiler/expressify/expressifyVars.js +320 -0
  467. package/dist/compiler/TirCompiler/expressify/flattenSopNamedDeconstructInplace_addTopDestructToCtx_getNestedDeconstruct.d.ts +9 -0
  468. package/dist/compiler/TirCompiler/expressify/flattenSopNamedDeconstructInplace_addTopDestructToCtx_getNestedDeconstruct.js +59 -0
  469. package/dist/compiler/TirCompiler/expressify/isSingleConstrStruct.d.ts +3 -0
  470. package/dist/compiler/TirCompiler/expressify/isSingleConstrStruct.js +9 -0
  471. package/dist/compiler/TirCompiler/expressify/toNamedDeconstructVarDecl.d.ts +3 -0
  472. package/dist/compiler/TirCompiler/expressify/toNamedDeconstructVarDecl.js +15 -0
  473. package/dist/compiler/TirCompiler/index.d.ts +2 -0
  474. package/dist/compiler/TirCompiler/index.js +2 -0
  475. package/dist/compiler/TirCompiler/internal/_compileHoistedDeps.d.ts +5 -0
  476. package/dist/compiler/TirCompiler/internal/_compileHoistedDeps.js +37 -0
  477. package/dist/compiler/TirCompiler/internal/deps/DepsNode.d.ts +13 -0
  478. package/dist/compiler/TirCompiler/internal/deps/DepsNode.js +36 -0
  479. package/dist/compiler/index.d.ts +4 -0
  480. package/dist/compiler/index.js +4 -0
  481. package/dist/compiler/internalVar.d.ts +19 -0
  482. package/dist/compiler/internalVar.js +56 -0
  483. package/dist/compiler/io/CompilerIoApi.d.ts +36 -0
  484. package/dist/compiler/io/CompilerIoApi.js +62 -0
  485. package/dist/compiler/io/IOutputStream.d.ts +28 -0
  486. package/dist/compiler/io/IOutputStream.js +45 -0
  487. package/dist/compiler/io/index.d.ts +2 -0
  488. package/dist/compiler/io/index.js +2 -0
  489. package/dist/compiler/path/getAbsolutePath.d.ts +12 -0
  490. package/dist/compiler/path/getAbsolutePath.js +114 -0
  491. package/dist/compiler/path/path.d.ts +5 -0
  492. package/dist/compiler/path/path.js +160 -0
  493. package/dist/compiler/tir/expressions/ITirExpr.d.ts +11 -0
  494. package/dist/compiler/tir/expressions/ITirExpr.js +1 -0
  495. package/dist/compiler/tir/expressions/TirAssertAndContinueExpr.d.ts +19 -0
  496. package/dist/compiler/tir/expressions/TirAssertAndContinueExpr.js +41 -0
  497. package/dist/compiler/tir/expressions/TirCallExpr.d.ts +17 -0
  498. package/dist/compiler/tir/expressions/TirCallExpr.js +28 -0
  499. package/dist/compiler/tir/expressions/TirCaseExpr.d.ts +36 -0
  500. package/dist/compiler/tir/expressions/TirCaseExpr.js +257 -0
  501. package/dist/compiler/tir/expressions/TirElemAccessExpr.d.ts +20 -0
  502. package/dist/compiler/tir/expressions/TirElemAccessExpr.js +43 -0
  503. package/dist/compiler/tir/expressions/TirExpr.d.ts +23 -0
  504. package/dist/compiler/tir/expressions/TirExpr.js +46 -0
  505. package/dist/compiler/tir/expressions/TirFailExpr.d.ts +19 -0
  506. package/dist/compiler/tir/expressions/TirFailExpr.js +28 -0
  507. package/dist/compiler/tir/expressions/TirFromDataExpr.d.ts +22 -0
  508. package/dist/compiler/tir/expressions/TirFromDataExpr.js +196 -0
  509. package/dist/compiler/tir/expressions/TirFuncExpr.d.ts +37 -0
  510. package/dist/compiler/tir/expressions/TirFuncExpr.js +92 -0
  511. package/dist/compiler/tir/expressions/TirHoistedExpr.d.ts +18 -0
  512. package/dist/compiler/tir/expressions/TirHoistedExpr.js +28 -0
  513. package/dist/compiler/tir/expressions/TirInlineClosedIR.d.ts +16 -0
  514. package/dist/compiler/tir/expressions/TirInlineClosedIR.js +25 -0
  515. package/dist/compiler/tir/expressions/TirLettedExpr.d.ts +18 -0
  516. package/dist/compiler/tir/expressions/TirLettedExpr.js +28 -0
  517. package/dist/compiler/tir/expressions/TirNativeFunc.d.ts +104 -0
  518. package/dist/compiler/tir/expressions/TirNativeFunc.js +805 -0
  519. package/dist/compiler/tir/expressions/TirParentesizedExpr.d.ts +17 -0
  520. package/dist/compiler/tir/expressions/TirParentesizedExpr.js +20 -0
  521. package/dist/compiler/tir/expressions/TirPropAccessExpr.d.ts +18 -0
  522. package/dist/compiler/tir/expressions/TirPropAccessExpr.js +29 -0
  523. package/dist/compiler/tir/expressions/TirTernaryExpr.d.ts +18 -0
  524. package/dist/compiler/tir/expressions/TirTernaryExpr.js +36 -0
  525. package/dist/compiler/tir/expressions/TirToDataExpr.d.ts +28 -0
  526. package/dist/compiler/tir/expressions/TirToDataExpr.js +172 -0
  527. package/dist/compiler/tir/expressions/TirTraceIfFalseExpr.d.ts +23 -0
  528. package/dist/compiler/tir/expressions/TirTraceIfFalseExpr.js +32 -0
  529. package/dist/compiler/tir/expressions/TirTypeConversionExpr.d.ts +16 -0
  530. package/dist/compiler/tir/expressions/TirTypeConversionExpr.js +66 -0
  531. package/dist/compiler/tir/expressions/TirVariableAccessExpr.d.ts +18 -0
  532. package/dist/compiler/tir/expressions/TirVariableAccessExpr.js +30 -0
  533. package/dist/compiler/tir/expressions/ToIRTermCtx.d.ts +29 -0
  534. package/dist/compiler/tir/expressions/ToIRTermCtx.js +77 -0
  535. package/dist/compiler/tir/expressions/binary/TirBinaryExpr.d.ts +221 -0
  536. package/dist/compiler/tir/expressions/binary/TirBinaryExpr.js +532 -0
  537. package/dist/compiler/tir/expressions/litteral/TirLitArrExpr.d.ts +16 -0
  538. package/dist/compiler/tir/expressions/litteral/TirLitArrExpr.js +60 -0
  539. package/dist/compiler/tir/expressions/litteral/TirLitFalseExpr.d.ts +14 -0
  540. package/dist/compiler/tir/expressions/litteral/TirLitFalseExpr.js +17 -0
  541. package/dist/compiler/tir/expressions/litteral/TirLitHexBytesExpr.d.ts +15 -0
  542. package/dist/compiler/tir/expressions/litteral/TirLitHexBytesExpr.js +19 -0
  543. package/dist/compiler/tir/expressions/litteral/TirLitIntExpr.d.ts +15 -0
  544. package/dist/compiler/tir/expressions/litteral/TirLitIntExpr.js +19 -0
  545. package/dist/compiler/tir/expressions/litteral/TirLitNamedObjExpr.d.ts +22 -0
  546. package/dist/compiler/tir/expressions/litteral/TirLitNamedObjExpr.js +105 -0
  547. package/dist/compiler/tir/expressions/litteral/TirLitObjExpr.d.ts +22 -0
  548. package/dist/compiler/tir/expressions/litteral/TirLitObjExpr.js +102 -0
  549. package/dist/compiler/tir/expressions/litteral/TirLitStrExpr.d.ts +15 -0
  550. package/dist/compiler/tir/expressions/litteral/TirLitStrExpr.js +20 -0
  551. package/dist/compiler/tir/expressions/litteral/TirLitThisExpr.d.ts +14 -0
  552. package/dist/compiler/tir/expressions/litteral/TirLitThisExpr.js +20 -0
  553. package/dist/compiler/tir/expressions/litteral/TirLitTrueExpr.d.ts +14 -0
  554. package/dist/compiler/tir/expressions/litteral/TirLitTrueExpr.js +17 -0
  555. package/dist/compiler/tir/expressions/litteral/TirLitUndefExpr.d.ts +18 -0
  556. package/dist/compiler/tir/expressions/litteral/TirLitUndefExpr.js +23 -0
  557. package/dist/compiler/tir/expressions/litteral/TirLitVoidExpr.d.ts +14 -0
  558. package/dist/compiler/tir/expressions/litteral/TirLitVoidExpr.js +17 -0
  559. package/dist/compiler/tir/expressions/litteral/TirLitteralExpr.d.ts +13 -0
  560. package/dist/compiler/tir/expressions/litteral/TirLitteralExpr.js +24 -0
  561. package/dist/compiler/tir/expressions/unary/ITirUnaryExpression.d.ts +4 -0
  562. package/dist/compiler/tir/expressions/unary/ITirUnaryExpression.js +1 -0
  563. package/dist/compiler/tir/expressions/unary/TirUnaryExclamation.d.ts +17 -0
  564. package/dist/compiler/tir/expressions/unary/TirUnaryExclamation.js +23 -0
  565. package/dist/compiler/tir/expressions/unary/TirUnaryMinus.d.ts +17 -0
  566. package/dist/compiler/tir/expressions/unary/TirUnaryMinus.js +22 -0
  567. package/dist/compiler/tir/expressions/unary/TirUnaryPlus.d.ts +15 -0
  568. package/dist/compiler/tir/expressions/unary/TirUnaryPlus.js +20 -0
  569. package/dist/compiler/tir/expressions/unary/TirUnaryPrefixExpr.d.ts +6 -0
  570. package/dist/compiler/tir/expressions/unary/TirUnaryPrefixExpr.js +10 -0
  571. package/dist/compiler/tir/expressions/unary/TirUnaryTilde.d.ts +17 -0
  572. package/dist/compiler/tir/expressions/unary/TirUnaryTilde.js +22 -0
  573. package/dist/compiler/tir/expressions/utils/NamedExpr.d.ts +5 -0
  574. package/dist/compiler/tir/expressions/utils/NamedExpr.js +1 -0
  575. package/dist/compiler/tir/program/TypedProgram.d.ts +44 -0
  576. package/dist/compiler/tir/program/TypedProgram.js +126 -0
  577. package/dist/compiler/tir/program/stdScope/StdTypes.d.ts +34 -0
  578. package/dist/compiler/tir/program/stdScope/StdTypes.js +40 -0
  579. package/dist/compiler/tir/program/stdScope/prelude/preludeTypesSrc.d.ts +0 -0
  580. package/dist/compiler/tir/program/stdScope/prelude/preludeTypesSrc.js +288 -0
  581. package/dist/compiler/tir/program/stdScope/stdScope.d.ts +15 -0
  582. package/dist/compiler/tir/program/stdScope/stdScope.js +730 -0
  583. package/dist/compiler/tir/statements/TirAssertStmt.d.ts +18 -0
  584. package/dist/compiler/tir/statements/TirAssertStmt.js +29 -0
  585. package/dist/compiler/tir/statements/TirAssignmentStmt.d.ts +12 -0
  586. package/dist/compiler/tir/statements/TirAssignmentStmt.js +14 -0
  587. package/dist/compiler/tir/statements/TirBlockStmt.d.ts +9 -0
  588. package/dist/compiler/tir/statements/TirBlockStmt.js +25 -0
  589. package/dist/compiler/tir/statements/TirBreakStmt.d.ts +8 -0
  590. package/dist/compiler/tir/statements/TirBreakStmt.js +11 -0
  591. package/dist/compiler/tir/statements/TirContinueStmt.d.ts +8 -0
  592. package/dist/compiler/tir/statements/TirContinueStmt.js +13 -0
  593. package/dist/compiler/tir/statements/TirFailStmt.d.ts +13 -0
  594. package/dist/compiler/tir/statements/TirFailStmt.js +14 -0
  595. package/dist/compiler/tir/statements/TirForOfStmt.d.ts +16 -0
  596. package/dist/compiler/tir/statements/TirForOfStmt.js +25 -0
  597. package/dist/compiler/tir/statements/TirForStmt.d.ts +19 -0
  598. package/dist/compiler/tir/statements/TirForStmt.js +39 -0
  599. package/dist/compiler/tir/statements/TirIfStmt.d.ts +12 -0
  600. package/dist/compiler/tir/statements/TirIfStmt.js +23 -0
  601. package/dist/compiler/tir/statements/TirMatchStmt.d.ts +27 -0
  602. package/dist/compiler/tir/statements/TirMatchStmt.js +51 -0
  603. package/dist/compiler/tir/statements/TirReturnStmt.d.ts +10 -0
  604. package/dist/compiler/tir/statements/TirReturnStmt.js +12 -0
  605. package/dist/compiler/tir/statements/TirStmt.d.ts +32 -0
  606. package/dist/compiler/tir/statements/TirStmt.js +40 -0
  607. package/dist/compiler/tir/statements/TirVarDecl/TirArrayLikeDeconstr.d.ts +17 -0
  608. package/dist/compiler/tir/statements/TirVarDecl/TirArrayLikeDeconstr.js +30 -0
  609. package/dist/compiler/tir/statements/TirVarDecl/TirNamedDeconstructVarDecl.d.ts +21 -0
  610. package/dist/compiler/tir/statements/TirVarDecl/TirNamedDeconstructVarDecl.js +34 -0
  611. package/dist/compiler/tir/statements/TirVarDecl/TirSimpleVarDecl.d.ts +17 -0
  612. package/dist/compiler/tir/statements/TirVarDecl/TirSimpleVarDecl.js +22 -0
  613. package/dist/compiler/tir/statements/TirVarDecl/TirSingleDeconstructVarDecl.d.ts +17 -0
  614. package/dist/compiler/tir/statements/TirVarDecl/TirSingleDeconstructVarDecl.js +30 -0
  615. package/dist/compiler/tir/statements/TirVarDecl/TirVarDecl.d.ts +10 -0
  616. package/dist/compiler/tir/statements/TirVarDecl/TirVarDecl.js +11 -0
  617. package/dist/compiler/tir/statements/TirWhileStmt.d.ts +11 -0
  618. package/dist/compiler/tir/statements/TirWhileStmt.js +19 -0
  619. package/dist/compiler/tir/statements/utils/definitelyFails.d.ts +3 -0
  620. package/dist/compiler/tir/statements/utils/definitelyFails.js +52 -0
  621. package/dist/compiler/tir/types/TirAliasType.d.ts +32 -0
  622. package/dist/compiler/tir/types/TirAliasType.js +49 -0
  623. package/dist/compiler/tir/types/TirInterfaceImpl.d.ts +44 -0
  624. package/dist/compiler/tir/types/TirInterfaceImpl.js +32 -0
  625. package/dist/compiler/tir/types/TirInterfaceType.d.ts +28 -0
  626. package/dist/compiler/tir/types/TirInterfaceType.js +36 -0
  627. package/dist/compiler/tir/types/TirNativeType/TirNativeType.d.ts +41 -0
  628. package/dist/compiler/tir/types/TirNativeType/TirNativeType.js +86 -0
  629. package/dist/compiler/tir/types/TirNativeType/index.d.ts +2 -0
  630. package/dist/compiler/tir/types/TirNativeType/index.js +2 -0
  631. package/dist/compiler/tir/types/TirNativeType/native/Optional/data.d.ts +17 -0
  632. package/dist/compiler/tir/types/TirNativeType/native/Optional/data.js +47 -0
  633. package/dist/compiler/tir/types/TirNativeType/native/Optional/index.d.ts +3 -0
  634. package/dist/compiler/tir/types/TirNativeType/native/Optional/index.js +3 -0
  635. package/dist/compiler/tir/types/TirNativeType/native/Optional/isTirOptType.d.ts +4 -0
  636. package/dist/compiler/tir/types/TirNativeType/native/Optional/isTirOptType.js +6 -0
  637. package/dist/compiler/tir/types/TirNativeType/native/Optional/sop.d.ts +17 -0
  638. package/dist/compiler/tir/types/TirNativeType/native/Optional/sop.js +48 -0
  639. package/dist/compiler/tir/types/TirNativeType/native/bool.d.ts +13 -0
  640. package/dist/compiler/tir/types/TirNativeType/native/bool.js +12 -0
  641. package/dist/compiler/tir/types/TirNativeType/native/bytes.d.ts +13 -0
  642. package/dist/compiler/tir/types/TirNativeType/native/bytes.js +12 -0
  643. package/dist/compiler/tir/types/TirNativeType/native/data.d.ts +13 -0
  644. package/dist/compiler/tir/types/TirNativeType/native/data.js +12 -0
  645. package/dist/compiler/tir/types/TirNativeType/native/function.d.ts +16 -0
  646. package/dist/compiler/tir/types/TirNativeType/native/function.js +38 -0
  647. package/dist/compiler/tir/types/TirNativeType/native/index.d.ts +10 -0
  648. package/dist/compiler/tir/types/TirNativeType/native/index.js +10 -0
  649. package/dist/compiler/tir/types/TirNativeType/native/int.d.ts +13 -0
  650. package/dist/compiler/tir/types/TirNativeType/native/int.js +12 -0
  651. package/dist/compiler/tir/types/TirNativeType/native/linearMap.d.ts +17 -0
  652. package/dist/compiler/tir/types/TirNativeType/native/linearMap.js +44 -0
  653. package/dist/compiler/tir/types/TirNativeType/native/list.d.ts +16 -0
  654. package/dist/compiler/tir/types/TirNativeType/native/list.js +38 -0
  655. package/dist/compiler/tir/types/TirNativeType/native/string.d.ts +13 -0
  656. package/dist/compiler/tir/types/TirNativeType/native/string.js +12 -0
  657. package/dist/compiler/tir/types/TirNativeType/native/void.d.ts +13 -0
  658. package/dist/compiler/tir/types/TirNativeType/native/void.js +12 -0
  659. package/dist/compiler/tir/types/TirStructType.d.ts +68 -0
  660. package/dist/compiler/tir/types/TirStructType.js +128 -0
  661. package/dist/compiler/tir/types/TirType.d.ts +34 -0
  662. package/dist/compiler/tir/types/TirType.js +16 -0
  663. package/dist/compiler/tir/types/TirTypeParam.d.ts +18 -0
  664. package/dist/compiler/tir/types/TirTypeParam.js +39 -0
  665. package/dist/compiler/tir/types/utils/canAssignTo.d.ts +24 -0
  666. package/dist/compiler/tir/types/utils/canAssignTo.js +337 -0
  667. package/dist/compiler/tir/types/utils/canCastTo.d.ts +9 -0
  668. package/dist/compiler/tir/types/utils/canCastTo.js +155 -0
  669. package/dist/compiler/tir/types/utils/getDeconstructableType.d.ts +9 -0
  670. package/dist/compiler/tir/types/utils/getDeconstructableType.js +20 -0
  671. package/dist/compiler/tir/types/utils/getListTypeArg.d.ts +2 -0
  672. package/dist/compiler/tir/types/utils/getListTypeArg.js +9 -0
  673. package/dist/compiler/tir/types/utils/getOptTypeArg.d.ts +2 -0
  674. package/dist/compiler/tir/types/utils/getOptTypeArg.js +14 -0
  675. package/dist/compiler/tir/types/utils/getUnaliased.d.ts +3 -0
  676. package/dist/compiler/tir/types/utils/getUnaliased.js +9 -0
  677. package/dist/diagnostics/DiagnosticCategory.d.ts +16 -0
  678. package/dist/diagnostics/DiagnosticCategory.js +39 -0
  679. package/dist/diagnostics/DiagnosticEmitter.d.ts +32 -0
  680. package/dist/diagnostics/DiagnosticEmitter.js +95 -0
  681. package/dist/diagnostics/DiagnosticMessage.d.ts +37 -0
  682. package/dist/diagnostics/DiagnosticMessage.js +229 -0
  683. package/dist/diagnostics/diagnosticMessages.generated.d.ts +275 -0
  684. package/dist/diagnostics/diagnosticMessages.generated.js +551 -0
  685. package/dist/diagnostics/utils/types.d.ts +5 -0
  686. package/dist/diagnostics/utils/types.js +1 -0
  687. package/dist/index.d.ts +12 -0
  688. package/dist/index.js +13 -0
  689. package/dist/parser/Parser.d.ts +150 -0
  690. package/dist/parser/Parser.js +2416 -0
  691. package/dist/parser/Precedence.d.ts +38 -0
  692. package/dist/parser/Precedence.js +98 -0
  693. package/dist/parser/hoistStatementsInplace.d.ts +14 -0
  694. package/dist/parser/hoistStatementsInplace.js +94 -0
  695. package/dist/parser/index.d.ts +1 -0
  696. package/dist/parser/index.js +1 -0
  697. package/dist/parser/parseFile.d.ts +3 -0
  698. package/dist/parser/parseFile.js +8 -0
  699. package/dist/tokenizer/IdentifierHandling.d.ts +5 -0
  700. package/dist/tokenizer/IdentifierHandling.js +6 -0
  701. package/dist/tokenizer/OnNewLine.d.ts +6 -0
  702. package/dist/tokenizer/OnNewLine.js +8 -0
  703. package/dist/tokenizer/Token.d.ts +160 -0
  704. package/dist/tokenizer/Token.js +213 -0
  705. package/dist/tokenizer/Tokenizer.d.ts +129 -0
  706. package/dist/tokenizer/Tokenizer.js +1323 -0
  707. package/dist/tokenizer/TokenizerState.d.ts +17 -0
  708. package/dist/tokenizer/TokenizerState.js +17 -0
  709. package/dist/tokenizer/index.d.ts +2 -0
  710. package/dist/tokenizer/index.js +2 -0
  711. package/dist/tokenizer/utils/isIllegalVariableIdentifier.d.ts +1 -0
  712. package/dist/tokenizer/utils/isIllegalVariableIdentifier.js +12 -0
  713. package/dist/tokenizer/utils/operatorTokenToString.d.ts +2 -0
  714. package/dist/tokenizer/utils/operatorTokenToString.js +57 -0
  715. package/dist/tokenizer/utils/tokenFromKeyword.d.ts +2 -0
  716. package/dist/tokenizer/utils/tokenFromKeyword.js +222 -0
  717. package/dist/tokenizer/utils/tokenIsAlsoIdentifier.d.ts +2 -0
  718. package/dist/tokenizer/utils/tokenIsAlsoIdentifier.js +24 -0
  719. package/dist/utils/BasePlutsError.d.ts +2 -0
  720. package/dist/utils/BasePlutsError.js +2 -0
  721. package/dist/utils/BitUtils/index.d.ts +30 -0
  722. package/dist/utils/BitUtils/index.js +60 -0
  723. package/dist/utils/CharCode.d.ts +125 -0
  724. package/dist/utils/CharCode.js +1 -0
  725. package/dist/utils/Cloneable.d.ts +6 -0
  726. package/dist/utils/Cloneable.js +4 -0
  727. package/dist/utils/InvalidCborFormatError.d.ts +3 -0
  728. package/dist/utils/InvalidCborFormatError.js +5 -0
  729. package/dist/utils/IsSingleKey.d.ts +7 -0
  730. package/dist/utils/IsSingleKey.js +1 -0
  731. package/dist/utils/MaybePromise.d.ts +2 -0
  732. package/dist/utils/MaybePromise.js +4 -0
  733. package/dist/utils/PlutusScriptType.d.ts +12 -0
  734. package/dist/utils/PlutusScriptType.js +1 -0
  735. package/dist/utils/ToJson.d.ts +4 -0
  736. package/dist/utils/ToJson.js +5 -0
  737. package/dist/utils/UPLCFlatUtils/index.d.ts +46 -0
  738. package/dist/utils/UPLCFlatUtils/index.js +124 -0
  739. package/dist/utils/array/filterSortedStrArrInplace.d.ts +7 -0
  740. package/dist/utils/array/filterSortedStrArrInplace.js +46 -0
  741. package/dist/utils/array/keepSortedArrInplace.d.ts +7 -0
  742. package/dist/utils/array/keepSortedArrInplace.js +49 -0
  743. package/dist/utils/array/mergeSortedStrArrInplace.d.ts +6 -0
  744. package/dist/utils/array/mergeSortedStrArrInplace.js +52 -0
  745. package/dist/utils/assert.d.ts +1 -0
  746. package/dist/utils/assert.js +5 -0
  747. package/dist/utils/capitalize.d.ts +1 -0
  748. package/dist/utils/capitalize.js +5 -0
  749. package/dist/utils/combinators.d.ts +37 -0
  750. package/dist/utils/combinators.js +76 -0
  751. package/dist/utils/getCallStackAt/index.d.ts +43 -0
  752. package/dist/utils/getCallStackAt/index.js +295 -0
  753. package/dist/utils/hex.d.ts +1 -0
  754. package/dist/utils/hex.js +6 -0
  755. package/dist/utils/ints.d.ts +4 -0
  756. package/dist/utils/ints.js +19 -0
  757. package/dist/utils/isNonEmpty.d.ts +1 -0
  758. package/dist/utils/isNonEmpty.js +3 -0
  759. package/dist/utils/maybeData.d.ts +4 -0
  760. package/dist/utils/maybeData.js +10 -0
  761. package/dist/utils/stringify.d.ts +2 -0
  762. package/dist/utils/stringify.js +31 -0
  763. package/dist/utils/terminal.d.ts +28 -0
  764. package/dist/utils/terminal.js +38 -0
  765. package/dist/utils/text.d.ts +172 -0
  766. package/dist/utils/text.js +672 -0
  767. package/dist/utils/types.d.ts +12 -0
  768. package/dist/utils/types.js +1 -0
  769. package/package.json +1 -1
@@ -0,0 +1,1323 @@
1
+ import { SourceRange } from "../ast/Source/SourceRange.js";
2
+ import { DiagnosticEmitter } from "../diagnostics/DiagnosticEmitter.js";
3
+ import { DiagnosticCode } from "../diagnostics/diagnosticMessages.generated.js";
4
+ import { assert } from "../utils/assert.js";
5
+ import { isHighSurrogate, combineSurrogates, isIdentifierStart, numCodeUnits, isIdentifierPart, isWhiteSpace, isLineBreak, isDecimal, isOctal, isHexBase } from "../utils/text.js";
6
+ import { IdentifierHandling } from "./IdentifierHandling.js";
7
+ import { OnNewLine } from "./OnNewLine.js";
8
+ import { Token } from "./Token.js";
9
+ import { tokenFromKeyword } from "./utils/tokenFromKeyword.js";
10
+ import { tokenIsAlsoIdentifier } from "./utils/tokenIsAlsoIdentifier.js";
11
+ import { fromHex } from "@harmoniclabs/uint8array-utils";
12
+ /** Comment kinds. */
13
+ export var CommentKind;
14
+ (function (CommentKind) {
15
+ /** Line comment. */
16
+ CommentKind[CommentKind["Line"] = 0] = "Line";
17
+ /** Triple-slash line comment. */
18
+ CommentKind[CommentKind["Triple"] = 1] = "Triple";
19
+ /** Block comment. */
20
+ CommentKind[CommentKind["Block"] = 2] = "Block";
21
+ })(CommentKind || (CommentKind = {}));
22
+ Object.freeze(CommentKind);
23
+ const fakeToken = -1;
24
+ /**
25
+ * Takes a {@link Source} and tokenizes its contents.
26
+ *
27
+ * It acts as an iterator, so that the text is never broken down
28
+ * but we can still get out single tokens.
29
+ **/
30
+ export class Tokenizer extends DiagnosticEmitter {
31
+ source;
32
+ end = 0;
33
+ // tokenizer state ( pos, token, tokenPos )
34
+ pos = 0;
35
+ token = fakeToken;
36
+ tokenPos = 0;
37
+ // next token state ( nextToken, nextTokenPos, nextTokenOnNewLine )
38
+ nextToken = fakeToken;
39
+ nextTokenPos = 0;
40
+ // cache result of `isNextTokenOnNewLine`
41
+ nextTokenOnNewLine = OnNewLine.Unknown;
42
+ // custom comment handling
43
+ onComment = undefined;
44
+ constructor(source, diagnostics = undefined) {
45
+ super(diagnostics);
46
+ if (!Array.isArray(diagnostics))
47
+ diagnostics = [];
48
+ this.diagnostics = diagnostics;
49
+ this.source = source;
50
+ let text = source.text;
51
+ let end = text.length;
52
+ let pos = 0;
53
+ // skip bom
54
+ if (pos < end &&
55
+ text.charCodeAt(pos) === 65279 /* CharCode.ByteOrderMark */) {
56
+ ++pos;
57
+ }
58
+ // skip shebang
59
+ if (pos + 1 < end &&
60
+ text.charCodeAt(pos) === 35 /* CharCode.Hash */ &&
61
+ text.charCodeAt(pos + 1) === 33 /* CharCode.Exclamation */) {
62
+ pos += 2;
63
+ while (pos < end &&
64
+ text.charCodeAt(pos) !== 10 /* CharCode.LineFeed */) {
65
+ ++pos;
66
+ }
67
+ // 'next' now starts at lf or eof
68
+ }
69
+ this.pos = pos;
70
+ this.end = end;
71
+ }
72
+ /*
73
+ toArray(): Token[] {
74
+ let tokens = new Array<Token>();
75
+ let token: Token;
76
+ while ((token = this.next()) !== Token.EndOfFile) {
77
+ if( token === Token.Identifier ) this.readIdentifier();
78
+ if( token === Token.IntegerLiteral ) this.readInteger();
79
+
80
+ tokens.push( token );
81
+ }
82
+ return tokens;
83
+ }
84
+ */
85
+ /** advances the tokenizer and returns the new token */
86
+ next(identifierHandling = IdentifierHandling.Default) {
87
+ this.clearNextToken();
88
+ let token;
89
+ do
90
+ token = this.unsafeNext(identifierHandling);
91
+ while (token === Token.Invalid);
92
+ this.token = token;
93
+ return token;
94
+ }
95
+ /**
96
+ * Retrieves the next token from the source text,
97
+ * handling identifiers and token length.
98
+ * This method is considered unsafe because
99
+ * it does not perform validation on the token.
100
+ *
101
+ * @param identifierHandling - Specifies how identifiers should be handled.
102
+ *
103
+ * @param maxTokenLength - The maximum length of the token to retrieve.
104
+ * Defaults to Number.MAX_SAFE_INTEGER.
105
+ *
106
+ * @returns The next token from the source text.
107
+ */
108
+ unsafeNext(identifierHandling = IdentifierHandling.Default, maxTokenLength = Number.MAX_SAFE_INTEGER) {
109
+ let text = this.source.text;
110
+ let end = this.end;
111
+ let pos = this.pos;
112
+ while (pos < end) {
113
+ this.tokenPos = pos;
114
+ let c = text.charCodeAt(pos);
115
+ switch (c) {
116
+ case 13 /* CharCode.CarriageReturn */: {
117
+ if (!(++pos < end &&
118
+ text.charCodeAt(pos) === 10 /* CharCode.LineFeed */))
119
+ break;
120
+ // otherwise fall-through
121
+ }
122
+ case 10 /* CharCode.LineFeed */:
123
+ case 9 /* CharCode.Tab */:
124
+ case 11 /* CharCode.VerticalTab */:
125
+ case 12 /* CharCode.FormFeed */:
126
+ case 32 /* CharCode.Space */: {
127
+ ++pos;
128
+ break;
129
+ }
130
+ case 33 /* CharCode.Exclamation */: {
131
+ ++pos;
132
+ if (maxTokenLength > 1 && pos < end &&
133
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
134
+ ++pos;
135
+ if (maxTokenLength > 2 && pos < end &&
136
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
137
+ this.pos = pos + 1;
138
+ return Token.Exclamation_Equals_Equals;
139
+ }
140
+ this.pos = pos;
141
+ return Token.Exclamation_Equals;
142
+ }
143
+ else if (maxTokenLength > 1 && pos < end &&
144
+ text.charCodeAt(pos) === 46 /* CharCode.Dot */) {
145
+ this.pos = pos + 1;
146
+ return Token.Exclamation_Dot; // !.
147
+ }
148
+ this.pos = pos;
149
+ return Token.Exclamation;
150
+ }
151
+ case 34 /* CharCode.DoubleQuote */:
152
+ case 39 /* CharCode.SingleQuote */: {
153
+ this.pos = pos;
154
+ return Token.StringLiteral;
155
+ }
156
+ case 96 /* CharCode.Backtick */: {
157
+ this.pos = pos;
158
+ return Token.StringTemplateLiteralQuote;
159
+ }
160
+ case 37 /* CharCode.Percent */: {
161
+ ++pos;
162
+ if (maxTokenLength > 1 && pos < end &&
163
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
164
+ this.pos = pos + 1;
165
+ return Token.Percent_Equals;
166
+ }
167
+ this.pos = pos;
168
+ return Token.Percent;
169
+ }
170
+ case 38 /* CharCode.Ampersand */: {
171
+ ++pos;
172
+ if (maxTokenLength > 1 && pos < end) {
173
+ let chr = text.charCodeAt(pos);
174
+ if (chr === 38 /* CharCode.Ampersand */) {
175
+ // this.pos = pos + 1;
176
+ ++pos;
177
+ if (maxTokenLength > 2 && pos < end &&
178
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
179
+ this.pos = pos + 1;
180
+ return Token.Ampersand_Ampersand_Equals;
181
+ }
182
+ this.pos = pos;
183
+ return Token.Ampersand_Ampersand;
184
+ }
185
+ if (chr === 61 /* CharCode.Equals */) {
186
+ this.pos = pos + 1;
187
+ return Token.Ampersand_Equals;
188
+ }
189
+ }
190
+ this.pos = pos;
191
+ return Token.Ampersand;
192
+ }
193
+ case 40 /* CharCode.OpenParen */: {
194
+ this.pos = pos + 1;
195
+ return Token.OpenParen;
196
+ }
197
+ case 41 /* CharCode.CloseParen */: {
198
+ this.pos = pos + 1;
199
+ return Token.CloseParen;
200
+ }
201
+ case 42 /* CharCode.Asterisk */: {
202
+ ++pos;
203
+ if (maxTokenLength > 1 && pos < end) {
204
+ let chr = text.charCodeAt(pos);
205
+ if (chr === 61 /* CharCode.Equals */) {
206
+ this.pos = pos + 1;
207
+ return Token.Asterisk_Equals;
208
+ }
209
+ if (chr === 42 /* CharCode.Asterisk */) {
210
+ ++pos;
211
+ if (maxTokenLength > 2 && pos < end &&
212
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
213
+ this.pos = pos + 1;
214
+ return Token.Asterisk_Asterisk_Equals;
215
+ }
216
+ this.pos = pos;
217
+ return Token.Asterisk_Asterisk;
218
+ }
219
+ }
220
+ this.pos = pos;
221
+ return Token.Asterisk;
222
+ }
223
+ case 43 /* CharCode.Plus */: {
224
+ ++pos;
225
+ if (maxTokenLength > 1 && pos < end) {
226
+ let chr = text.charCodeAt(pos);
227
+ if (chr === 43 /* CharCode.Plus */) {
228
+ this.pos = pos + 1;
229
+ return Token.Plus_Plus;
230
+ }
231
+ if (chr === 61 /* CharCode.Equals */) {
232
+ this.pos = pos + 1;
233
+ return Token.Plus_Equals;
234
+ }
235
+ }
236
+ this.pos = pos;
237
+ return Token.Plus;
238
+ }
239
+ case 44 /* CharCode.Comma */: {
240
+ this.pos = pos + 1;
241
+ return Token.Comma;
242
+ }
243
+ case 45 /* CharCode.Minus */: {
244
+ ++pos;
245
+ if (maxTokenLength > 1 && pos < end) {
246
+ let chr = text.charCodeAt(pos);
247
+ if (chr === 45 /* CharCode.Minus */) {
248
+ this.pos = pos + 1;
249
+ return Token.Minus_Minus;
250
+ }
251
+ if (chr === 61 /* CharCode.Equals */) {
252
+ this.pos = pos + 1;
253
+ return Token.Minus_Equals;
254
+ }
255
+ }
256
+ this.pos = pos;
257
+ return Token.Minus;
258
+ }
259
+ case 46 /* CharCode.Dot */: {
260
+ ++pos;
261
+ if (maxTokenLength > 1 && pos < end) {
262
+ let chr = text.charCodeAt(pos);
263
+ // if (isDecimal(chr)) {
264
+ // this.pos = pos - 1;
265
+ // return Token.FloatLiteral; // expects a call to readFloat
266
+ // }
267
+ if (maxTokenLength > 2 && pos + 1 < end &&
268
+ chr === 46 /* CharCode.Dot */ &&
269
+ text.charCodeAt(pos + 1) === 46 /* CharCode.Dot */) {
270
+ this.pos = pos + 2;
271
+ return Token.Dot_Dot_Dot;
272
+ }
273
+ }
274
+ this.pos = pos;
275
+ return Token.Dot;
276
+ }
277
+ case 47 /* CharCode.Slash */: {
278
+ let commentStartPos = pos;
279
+ ++pos;
280
+ if (maxTokenLength > 1 && pos < end) {
281
+ let chr = text.charCodeAt(pos);
282
+ if (chr === 47 /* CharCode.Slash */) { // single-line
283
+ let commentKind = CommentKind.Line;
284
+ if (pos + 1 < end &&
285
+ text.charCodeAt(pos + 1) === 47 /* CharCode.Slash */) {
286
+ ++pos;
287
+ commentKind = CommentKind.Triple;
288
+ }
289
+ while (++pos < end) {
290
+ if (text.charCodeAt(pos) === 10 /* CharCode.LineFeed */) {
291
+ ++pos;
292
+ break;
293
+ }
294
+ }
295
+ if (this.onComment) {
296
+ this.onComment(commentKind, text.substring(commentStartPos, pos), this.range(commentStartPos, pos));
297
+ }
298
+ break;
299
+ }
300
+ if (chr === 42 /* CharCode.Asterisk */) { // multi-line
301
+ let closed = false;
302
+ while (++pos < end) {
303
+ c = text.charCodeAt(pos);
304
+ if (c === 42 /* CharCode.Asterisk */ &&
305
+ pos + 1 < end &&
306
+ text.charCodeAt(pos + 1) === 47 /* CharCode.Slash */) {
307
+ pos += 2;
308
+ closed = true;
309
+ break;
310
+ }
311
+ }
312
+ if (!closed) {
313
+ this.error(DiagnosticCode._0_expected, this.range(pos), "*/");
314
+ }
315
+ else if (this.onComment) {
316
+ this.onComment(CommentKind.Block, text.substring(commentStartPos, pos), this.range(commentStartPos, pos));
317
+ }
318
+ break;
319
+ }
320
+ if (chr === 61 /* CharCode.Equals */) {
321
+ this.pos = pos + 1;
322
+ return Token.Slash_Equals;
323
+ }
324
+ }
325
+ this.pos = pos;
326
+ return Token.Slash;
327
+ }
328
+ case 48 /* CharCode._0 */:
329
+ case 49 /* CharCode._1 */:
330
+ case 50 /* CharCode._2 */:
331
+ case 51 /* CharCode._3 */:
332
+ case 52 /* CharCode._4 */:
333
+ case 53 /* CharCode._5 */:
334
+ case 54 /* CharCode._6 */:
335
+ case 55 /* CharCode._7 */:
336
+ case 56 /* CharCode._8 */:
337
+ case 57 /* CharCode._9 */: {
338
+ this.pos = pos;
339
+ if (!this.testInteger()) { }
340
+ return Token.IntegerLiteral;
341
+ // return this.testInteger()
342
+ // ? Token.IntegerLiteral // expects a call to readInteger
343
+ // : Token.FloatLiteral; // expects a call to readFloat
344
+ }
345
+ case 35 /* CharCode.Hash */: {
346
+ this.pos = pos;
347
+ return Token.HexBytesLiteral;
348
+ break;
349
+ }
350
+ case 58 /* CharCode.Colon */: {
351
+ this.pos = pos + 1;
352
+ return Token.Colon;
353
+ }
354
+ case 59 /* CharCode.Semicolon */: {
355
+ this.pos = pos + 1;
356
+ return Token.Semicolon;
357
+ }
358
+ case 60 /* CharCode.LessThan */: {
359
+ ++pos;
360
+ if (maxTokenLength > 1 && pos < end) {
361
+ let chr = text.charCodeAt(pos);
362
+ if (chr === 60 /* CharCode.LessThan */) {
363
+ ++pos;
364
+ if (maxTokenLength > 2 &&
365
+ pos < end &&
366
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
367
+ this.pos = pos + 1;
368
+ return Token.LessThan_LessThan_Equals;
369
+ }
370
+ this.pos = pos;
371
+ return Token.LessThan_LessThan;
372
+ }
373
+ if (chr === 61 /* CharCode.Equals */) {
374
+ this.pos = pos + 1;
375
+ return Token.LessThan_Equals;
376
+ }
377
+ }
378
+ this.pos = pos;
379
+ return Token.LessThan;
380
+ }
381
+ case 61 /* CharCode.Equals */: {
382
+ ++pos;
383
+ if (maxTokenLength > 1 && pos < end) {
384
+ let chr = text.charCodeAt(pos);
385
+ if (chr === 61 /* CharCode.Equals */) {
386
+ ++pos;
387
+ if (maxTokenLength > 2 &&
388
+ pos < end &&
389
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
390
+ this.pos = pos + 1;
391
+ return Token.Equals_Equals_Equals;
392
+ }
393
+ this.pos = pos;
394
+ return Token.Equals_Equals;
395
+ }
396
+ if (chr === 62 /* CharCode.GreaterThan */) {
397
+ this.pos = pos + 1;
398
+ return Token.FatArrow;
399
+ }
400
+ }
401
+ this.pos = pos;
402
+ return Token.Equals;
403
+ }
404
+ case 62 /* CharCode.GreaterThan */: {
405
+ ++pos;
406
+ if (maxTokenLength > 1 && pos < end) {
407
+ let chr = text.charCodeAt(pos);
408
+ if (chr === 62 /* CharCode.GreaterThan */) {
409
+ ++pos;
410
+ if (maxTokenLength > 2 && pos < end) {
411
+ chr = text.charCodeAt(pos);
412
+ if (chr === 62 /* CharCode.GreaterThan */) {
413
+ ++pos;
414
+ if (maxTokenLength > 3 && pos < end &&
415
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
416
+ this.pos = pos + 1;
417
+ return Token.GreaterThan_GreaterThan_GreaterThan_Equals;
418
+ }
419
+ this.pos = pos;
420
+ return Token.GreaterThan_GreaterThan_GreaterThan;
421
+ }
422
+ if (chr === 61 /* CharCode.Equals */) {
423
+ this.pos = pos + 1;
424
+ return Token.GreaterThan_GreaterThan_Equals;
425
+ }
426
+ }
427
+ this.pos = pos;
428
+ return Token.GreaterThan_GreaterThan;
429
+ }
430
+ if (chr === 61 /* CharCode.Equals */) {
431
+ this.pos = pos + 1;
432
+ return Token.GreaterThan_Equals;
433
+ }
434
+ }
435
+ this.pos = pos;
436
+ return Token.GreaterThan;
437
+ }
438
+ case 63 /* CharCode.Question */: {
439
+ // this.pos = pos + 1;
440
+ pos++;
441
+ if (maxTokenLength > 1 && pos < end &&
442
+ text.charCodeAt(pos) === 63 /* CharCode.Question */) {
443
+ pos++;
444
+ if (maxTokenLength > 2 && pos < end &&
445
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
446
+ this.pos = pos + 1;
447
+ return Token.Question_Question_Equals;
448
+ }
449
+ this.pos = pos;
450
+ return Token.Question_Question;
451
+ }
452
+ else if (text.charCodeAt(pos) === 46 /* CharCode.Dot */) {
453
+ this.pos = pos + 1;
454
+ return Token.Question_Dot;
455
+ }
456
+ this.pos = pos;
457
+ return Token.Question;
458
+ }
459
+ case 91 /* CharCode.OpenBracket */: {
460
+ this.pos = pos + 1;
461
+ return Token.OpenBracket;
462
+ }
463
+ case 93 /* CharCode.CloseBracket */: {
464
+ this.pos = pos + 1;
465
+ return Token.CloseBracket;
466
+ }
467
+ case 94 /* CharCode.Caret */: {
468
+ ++pos;
469
+ if (maxTokenLength > 1 && pos < end &&
470
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
471
+ this.pos = pos + 1;
472
+ return Token.Caret_Equals;
473
+ }
474
+ this.pos = pos;
475
+ return Token.Caret;
476
+ }
477
+ case 123 /* CharCode.OpenBrace */: {
478
+ this.pos = pos + 1;
479
+ return Token.OpenBrace;
480
+ }
481
+ case 124 /* CharCode.Bar */: {
482
+ ++pos;
483
+ if (maxTokenLength > 1 && pos < end) {
484
+ let chr = text.charCodeAt(pos);
485
+ if (chr === 124 /* CharCode.Bar */) {
486
+ // this.pos = pos + 1;
487
+ ++pos;
488
+ if (maxTokenLength > 2 && pos < end &&
489
+ text.charCodeAt(pos) === 61 /* CharCode.Equals */) {
490
+ this.pos = pos + 1;
491
+ return Token.Bar_Bar_Equals;
492
+ }
493
+ this.pos = pos;
494
+ return Token.Bar_Bar;
495
+ }
496
+ if (chr === 61 /* CharCode.Equals */) {
497
+ this.pos = pos + 1;
498
+ return Token.Bar_Equals;
499
+ }
500
+ }
501
+ this.pos = pos;
502
+ return Token.Bar;
503
+ }
504
+ case 125 /* CharCode.CloseBrace */: {
505
+ this.pos = pos + 1;
506
+ return Token.CloseBrace;
507
+ }
508
+ case 126 /* CharCode.Tilde */: {
509
+ this.pos = pos + 1;
510
+ return Token.Tilde;
511
+ }
512
+ case 64 /* CharCode.At */: {
513
+ this.pos = pos + 1;
514
+ return Token.At;
515
+ }
516
+ default: {
517
+ // Unicode-aware from here on
518
+ if (isHighSurrogate(c) && pos + 1 < end) {
519
+ c = combineSurrogates(c, text.charCodeAt(pos + 1));
520
+ }
521
+ if (isIdentifierStart(c)) {
522
+ let posBefore = pos;
523
+ while ((pos += numCodeUnits(c)) < end &&
524
+ isIdentifierPart(c = text.codePointAt(pos))) { /* nop */ }
525
+ if (identifierHandling !== IdentifierHandling.Always) {
526
+ let maybeKeywordToken = tokenFromKeyword(text.substring(posBefore, pos));
527
+ if (maybeKeywordToken !== Token.Invalid &&
528
+ !(identifierHandling === IdentifierHandling.Prefer &&
529
+ tokenIsAlsoIdentifier(maybeKeywordToken))) {
530
+ this.pos = pos;
531
+ return maybeKeywordToken;
532
+ }
533
+ }
534
+ this.pos = posBefore;
535
+ return Token.Identifier;
536
+ }
537
+ else if (isWhiteSpace(c)) {
538
+ ++pos; // assume no supplementary whitespaces
539
+ break;
540
+ }
541
+ let start = pos;
542
+ pos += numCodeUnits(c);
543
+ this.error(DiagnosticCode.Invalid_character, this.range(start, pos));
544
+ this.pos = pos;
545
+ return Token.Invalid;
546
+ }
547
+ }
548
+ }
549
+ this.pos = pos;
550
+ return Token.EndOfFile;
551
+ }
552
+ peek(identifierHandling = IdentifierHandling.Default, maxCompoundLength = Number.MAX_SAFE_INTEGER) {
553
+ let nextToken = this.nextToken;
554
+ if (nextToken < 0) {
555
+ // save current state
556
+ let posBefore = this.pos;
557
+ let tokenBefore = this.token;
558
+ let tokenPosBefore = this.tokenPos;
559
+ // take next valid token (modifies state)
560
+ do
561
+ nextToken = this.unsafeNext(identifierHandling, maxCompoundLength);
562
+ while (nextToken === Token.Invalid);
563
+ // save next token
564
+ this.nextToken = nextToken;
565
+ this.nextTokenPos = this.tokenPos;
566
+ this.nextTokenOnNewLine = OnNewLine.Unknown;
567
+ // restore current state
568
+ this.pos = posBefore;
569
+ this.token = tokenBefore;
570
+ this.tokenPos = tokenPosBefore;
571
+ }
572
+ return nextToken;
573
+ }
574
+ isNextTokenOnNewLine() {
575
+ switch (this.nextTokenOnNewLine) {
576
+ case OnNewLine.No: return false;
577
+ case OnNewLine.Yes: return true;
578
+ }
579
+ // case OnNewLine.Unknown
580
+ this.peek();
581
+ let text = this.source.text;
582
+ for (let pos = this.pos, end = this.nextTokenPos; pos < end; ++pos) {
583
+ if (isLineBreak(text.charCodeAt(pos))) {
584
+ this.nextTokenOnNewLine = OnNewLine.Yes;
585
+ return true;
586
+ }
587
+ }
588
+ this.nextTokenOnNewLine = OnNewLine.No;
589
+ return false;
590
+ }
591
+ skipIdentifier(identifierHandling = IdentifierHandling.Prefer) {
592
+ return this.skip(Token.Identifier, identifierHandling);
593
+ }
594
+ /**
595
+ *
596
+ * @param expectedToken The token type that the tokenizer should skip if it matches the current token.
597
+ * @param identifierHandling
598
+ * @returns {boolean} Returns true if the current token matches the expectedToken and the tokenizer's position is advanced.
599
+ * Returns false if the current token does not match the expectedToken.
600
+ *
601
+ * ### side effects
602
+ *
603
+ * - Advances the Tokenizer Position:
604
+ * If the current token matches the expectedToken,
605
+ * the tokenizer's position is advanced to the next token.
606
+ *
607
+ * - Updates Internal State:
608
+ * The method updates the internal state of the tokenizer,
609
+ * including the current token and its position.
610
+ *
611
+ */
612
+ skip(expectedToken, identifierHandling = IdentifierHandling.Default) {
613
+ let posBefore = this.pos;
614
+ let tokenBefore = this.token;
615
+ let tokenPosBefore = this.tokenPos;
616
+ let maxCompoundLength = Number.MAX_SAFE_INTEGER;
617
+ if (expectedToken === Token.GreaterThan) { // where parsing type arguments
618
+ maxCompoundLength = 1;
619
+ }
620
+ // take the first valid token
621
+ let nextToken;
622
+ do
623
+ nextToken = this.unsafeNext(identifierHandling, maxCompoundLength);
624
+ while (nextToken === Token.Invalid);
625
+ if (nextToken === expectedToken) {
626
+ this.token = expectedToken;
627
+ this.clearNextToken();
628
+ return true;
629
+ }
630
+ else {
631
+ this.pos = posBefore;
632
+ this.token = tokenBefore;
633
+ this.tokenPos = tokenPosBefore;
634
+ return false;
635
+ }
636
+ }
637
+ eof() {
638
+ return this.skip(Token.EndOfFile);
639
+ }
640
+ // state management
641
+ /** #__PURE__ gets the current state */
642
+ mark() {
643
+ // let state = reusableState;
644
+ // if (state) {
645
+ // reusableState = undefined;
646
+ // state.pos = this.pos;
647
+ // state.token = this.token;
648
+ // state.tokenPos = this.tokenPos;
649
+ // } else {
650
+ // state = new TokenizerState(this.pos, this.token, this.tokenPos);
651
+ // }
652
+ return new TokenizerState(this.pos, this.token, this.tokenPos);
653
+ }
654
+ // discard(state: TokenizerState): void {
655
+ // reusableState = state;
656
+ // }
657
+ reset(state) {
658
+ this.pos = state.pos;
659
+ this.token = state.token;
660
+ this.tokenPos = state.tokenPos;
661
+ this.clearNextToken();
662
+ }
663
+ /**
664
+ * ### Side Effects
665
+ * - Resets `nextToken`: Sets the nextToken property to an invalid state, typically -1.
666
+ * - Resets `nextTokenPos`: Sets the nextTokenPos property to 0 or another default value.
667
+ * - Resets `nextTokenOnNewLine`: Sets the nextTokenOnNewLine property to OnNewLine.
668
+ * Unknown or another default value.
669
+ */
670
+ clearNextToken() {
671
+ this.nextToken = fakeToken;
672
+ this.nextTokenPos = 0;
673
+ this.nextTokenOnNewLine = OnNewLine.Unknown;
674
+ }
675
+ /**
676
+ * pure function for the same state
677
+ **/
678
+ range(start = -1, end = -1) {
679
+ if (start < 0) { // default range
680
+ start = this.tokenPos;
681
+ end = this.pos;
682
+ }
683
+ else if (end < 0) {
684
+ end = start;
685
+ }
686
+ return new SourceRange(this.source, start, end);
687
+ }
688
+ readIdentifier() {
689
+ let text = this.source.text;
690
+ let end = this.end;
691
+ let pos = this.pos;
692
+ let start = pos;
693
+ let c = text.codePointAt(pos);
694
+ assert(isIdentifierStart(c), "token is not an identifier");
695
+ while ((pos += numCodeUnits(c)) < end &&
696
+ isIdentifierPart(c = text.codePointAt(pos)))
697
+ ;
698
+ this.pos = pos;
699
+ return text.substring(start, pos);
700
+ }
701
+ readingTemplateString = false;
702
+ readStringStart = 0;
703
+ readStringEnd = 0;
704
+ readString(quote = 0, isTaggedTemplate = false) {
705
+ let text = this.source.text;
706
+ let end = this.end;
707
+ let pos = this.pos;
708
+ if (!quote)
709
+ quote = text.charCodeAt(pos++);
710
+ let start = pos;
711
+ this.readStringStart = start;
712
+ let result = "";
713
+ while (true) {
714
+ if (pos >= end) {
715
+ result += text.substring(start, pos);
716
+ this.error(DiagnosticCode.Unterminated_string_literal, this.range(start - 1, end));
717
+ this.readStringEnd = end;
718
+ break;
719
+ }
720
+ let c = text.charCodeAt(pos);
721
+ if (c === quote) {
722
+ this.readStringEnd = pos;
723
+ result += text.substring(start, pos++);
724
+ break;
725
+ }
726
+ if (c === 92 /* CharCode.Backslash */) {
727
+ result += text.substring(start, pos);
728
+ this.pos = pos; // save
729
+ result += this.readEscapeSequence(isTaggedTemplate);
730
+ pos = this.pos; // restore
731
+ start = pos;
732
+ continue;
733
+ }
734
+ if (quote === 96 /* CharCode.Backtick */) {
735
+ if (c === 36 /* CharCode.Dollar */ && pos + 1 < end && text.charCodeAt(pos + 1) === 123 /* CharCode.OpenBrace */) {
736
+ result += text.substring(start, pos);
737
+ this.readStringEnd = pos;
738
+ this.pos = pos + 2;
739
+ this.readingTemplateString = true;
740
+ return result;
741
+ }
742
+ }
743
+ else if (isLineBreak(c)) {
744
+ result += text.substring(start, pos);
745
+ this.error(DiagnosticCode.Unterminated_string_literal, this.range(start - 1, pos));
746
+ this.readStringEnd = pos;
747
+ break;
748
+ }
749
+ ++pos;
750
+ }
751
+ this.pos = pos;
752
+ this.readingTemplateString = false;
753
+ return result;
754
+ }
755
+ readEscapeSequence(isTaggedTemplate = false) {
756
+ // for context on isTaggedTemplate, see: https://tc39.es/proposal-template-literal-revision/
757
+ let start = this.pos;
758
+ let end = this.end;
759
+ if (++this.pos >= end) {
760
+ this.error(DiagnosticCode.Unexpected_end_of_text, this.range(end));
761
+ return "";
762
+ }
763
+ let text = this.source.text;
764
+ let c = text.charCodeAt(this.pos++);
765
+ switch (c) {
766
+ case 48 /* CharCode._0 */: {
767
+ if (isTaggedTemplate && this.pos < end && isDecimal(text.charCodeAt(this.pos))) {
768
+ ++this.pos;
769
+ return text.substring(start, this.pos);
770
+ }
771
+ return "\0";
772
+ }
773
+ case 98 /* CharCode.b */: return "\b";
774
+ case 116 /* CharCode.t */: return "\t";
775
+ case 110 /* CharCode.n */: return "\n";
776
+ case 118 /* CharCode.v */: return "\v";
777
+ case 102 /* CharCode.f */: return "\f";
778
+ case 114 /* CharCode.r */: return "\r";
779
+ case 39 /* CharCode.SingleQuote */: return "'";
780
+ case 34 /* CharCode.DoubleQuote */: return "\"";
781
+ case 117 /* CharCode.u */: {
782
+ if (this.pos < end &&
783
+ text.charCodeAt(this.pos) === 123 /* CharCode.OpenBrace */) {
784
+ ++this.pos;
785
+ return this.readExtendedUnicodeEscape(isTaggedTemplate ? start : -1); // \u{DDDDDDDD}
786
+ }
787
+ return this.readUnicodeEscape(isTaggedTemplate ? start : -1); // \uDDDD
788
+ }
789
+ case 120 /* CharCode.x */: {
790
+ return this.readHexadecimalEscape(2, isTaggedTemplate ? start : -1); // \xDD
791
+ }
792
+ case 13 /* CharCode.CarriageReturn */: {
793
+ if (this.pos < end &&
794
+ text.charCodeAt(this.pos) === 10 /* CharCode.LineFeed */) {
795
+ ++this.pos;
796
+ }
797
+ // fall through
798
+ }
799
+ case 10 /* CharCode.LineFeed */:
800
+ case 8232 /* CharCode.LineSeparator */:
801
+ case 8233 /* CharCode.ParagraphSeparator */: return "";
802
+ default: return String.fromCodePoint(c);
803
+ }
804
+ }
805
+ readRegexpPattern() {
806
+ let text = this.source.text;
807
+ let start = this.pos;
808
+ let end = this.end;
809
+ let escaped = false;
810
+ while (true) {
811
+ if (this.pos >= end) {
812
+ this.error(DiagnosticCode.Unterminated_regular_expression_literal, this.range(start, end));
813
+ break;
814
+ }
815
+ if (text.charCodeAt(this.pos) === 92 /* CharCode.Backslash */) {
816
+ ++this.pos;
817
+ escaped = true;
818
+ continue;
819
+ }
820
+ let c = text.charCodeAt(this.pos);
821
+ if (!escaped && c === 47 /* CharCode.Slash */)
822
+ break;
823
+ if (isLineBreak(c)) {
824
+ this.error(DiagnosticCode.Unterminated_regular_expression_literal, this.range(start, this.pos));
825
+ break;
826
+ }
827
+ ++this.pos;
828
+ escaped = false;
829
+ }
830
+ return text.substring(start, this.pos);
831
+ }
832
+ readRegexpFlags() {
833
+ let text = this.source.text;
834
+ let start = this.pos;
835
+ let end = this.end;
836
+ let flags = 0;
837
+ while (this.pos < end) {
838
+ let c = text.charCodeAt(this.pos);
839
+ if (!isIdentifierPart(c))
840
+ break;
841
+ ++this.pos;
842
+ // make sure each supported flag is unique
843
+ switch (c) {
844
+ case 103 /* CharCode.g */: {
845
+ flags |= flags & 1 ? -1 : 1;
846
+ break;
847
+ }
848
+ case 105 /* CharCode.i */: {
849
+ flags |= flags & 2 ? -1 : 2;
850
+ break;
851
+ }
852
+ case 109 /* CharCode.m */: {
853
+ flags |= flags & 4 ? -1 : 4;
854
+ break;
855
+ }
856
+ default: {
857
+ flags = -1;
858
+ break;
859
+ }
860
+ }
861
+ }
862
+ if (flags === -1) {
863
+ this.error(DiagnosticCode.Invalid_regular_expression_flags, this.range(start, this.pos));
864
+ }
865
+ return text.substring(start, this.pos);
866
+ }
867
+ testInteger() {
868
+ let text = this.source.text;
869
+ let pos = this.pos;
870
+ let end = this.end;
871
+ // test for hex, binary or octal
872
+ if (pos + 1 < end && text.charCodeAt(pos) === 48 /* CharCode._0 */) {
873
+ switch (text.charCodeAt(pos + 2) | 32) {
874
+ case 120 /* CharCode.x */:
875
+ case 98 /* CharCode.b */:
876
+ case 111 /* CharCode.o */: return true;
877
+ }
878
+ }
879
+ // test decimal
880
+ while (pos < end) {
881
+ let c = text.charCodeAt(pos);
882
+ if (c === 46 /* CharCode.Dot */ || (c | 32) === 101 /* CharCode.e */)
883
+ return false;
884
+ if (c !== 95 /* CharCode._ */ && (c < 48 /* CharCode._0 */ || c > 57 /* CharCode._9 */))
885
+ break;
886
+ // does not validate separator placement (this is done in readXYInteger)
887
+ pos++;
888
+ }
889
+ return true;
890
+ }
891
+ readInteger() {
892
+ let text = this.source.text;
893
+ let pos = this.pos;
894
+ if (pos + 2 < this.end && text.charCodeAt(pos) === 48 /* CharCode._0 */) {
895
+ switch (text.charCodeAt(pos + 1) | 32) {
896
+ case 120 /* CharCode.x */: {
897
+ this.pos = pos + 2;
898
+ return this.readHexInteger();
899
+ }
900
+ case 98 /* CharCode.b */: {
901
+ this.pos = pos + 2;
902
+ return this.readBinaryInteger();
903
+ }
904
+ case 111 /* CharCode.o */: {
905
+ this.pos = pos + 2;
906
+ return this.readOctalInteger();
907
+ }
908
+ }
909
+ if (isOctal(text.charCodeAt(pos + 1))) {
910
+ let start = pos;
911
+ this.pos = pos + 1;
912
+ let value = this.readOctalInteger();
913
+ this.error(DiagnosticCode.Octal_literals_are_not_allowed_in_strict_mode, this.range(start, this.pos));
914
+ return value;
915
+ }
916
+ }
917
+ return this.readDecimalInteger();
918
+ }
919
+ readHexBytes() {
920
+ let text = this.source.text;
921
+ let pos = this.pos;
922
+ pos = text[pos] === "#" ? pos + 1 : pos;
923
+ this.pos = pos;
924
+ let end = this.end;
925
+ let start = pos;
926
+ let length = 0;
927
+ while (pos < end) {
928
+ let c = text.charCodeAt(pos);
929
+ if (isHexBase(c)) {
930
+ length++;
931
+ pos++;
932
+ }
933
+ else {
934
+ break;
935
+ }
936
+ }
937
+ if (length === 0) {
938
+ return new Uint8Array(0);
939
+ }
940
+ this.pos = pos;
941
+ const oddLen = length % 2 === 1;
942
+ const substr = (oddLen ? "0" : "") + text.substring(start, pos);
943
+ return fromHex(substr);
944
+ }
945
+ ;
946
+ readHexInteger() {
947
+ let text = this.source.text;
948
+ let pos = this.pos;
949
+ let end = this.end;
950
+ let start = pos;
951
+ let sepEnd = start;
952
+ let value = BigInt(0);
953
+ let i64_4 = BigInt(4);
954
+ let nextValue = value;
955
+ let overflowOccurred = false;
956
+ while (pos < end) {
957
+ let c = text.charCodeAt(pos);
958
+ const bc = BigInt(c);
959
+ if (isDecimal(c)) {
960
+ // (value << 4) + c - CharCode._0
961
+ nextValue = (value << BigInt(4)) + bc - BigInt(48 /* CharCode._0 */);
962
+ }
963
+ else if (isHexBase(c)) {
964
+ // (value << 4) + (c | 32) + (10 - CharCode.a)
965
+ nextValue = (value << BigInt(4)) + BigInt(c | 32) + BigInt(10 - 97 /* CharCode.a */);
966
+ }
967
+ else if (c === 95 /* CharCode._ */) {
968
+ if (sepEnd === pos) {
969
+ this.error(sepEnd === start
970
+ ? DiagnosticCode.Numeric_separators_are_not_allowed_here
971
+ : DiagnosticCode.Multiple_consecutive_numeric_separators_are_not_permitted, this.range(pos));
972
+ }
973
+ sepEnd = pos + 1;
974
+ }
975
+ else {
976
+ break;
977
+ }
978
+ // if (i64_gt_u(value, nextValue)) {
979
+ // // Unsigned overflow occurred
980
+ // overflowOccurred = true;
981
+ // }
982
+ value = nextValue;
983
+ ++pos;
984
+ }
985
+ if (pos === start) {
986
+ this.error(DiagnosticCode.Hexadecimal_digit_expected, this.range(start));
987
+ }
988
+ else if (sepEnd === pos) {
989
+ this.error(DiagnosticCode.Numeric_separators_are_not_allowed_here, this.range(sepEnd - 1));
990
+ }
991
+ if (overflowOccurred) {
992
+ this.error(DiagnosticCode.Literal_0_does_not_fit_into_i64_or_u64_types, this.range(start - 2, pos), this.source.text.substring(start - 2, pos));
993
+ }
994
+ this.pos = pos;
995
+ return value;
996
+ }
997
+ readDecimalInteger() {
998
+ let text = this.source.text;
999
+ let pos = this.pos;
1000
+ let end = this.end;
1001
+ let start = pos;
1002
+ let sepEnd = start;
1003
+ let value = BigInt(0);
1004
+ let i64_10 = BigInt(10);
1005
+ let nextValue = value;
1006
+ let overflowOccurred = false;
1007
+ while (pos < end) {
1008
+ let c = text.charCodeAt(pos);
1009
+ const bc = BigInt(c);
1010
+ if (isDecimal(c)) {
1011
+ // value = value * 10 + c - CharCode._0;
1012
+ nextValue = value * i64_10 + bc - BigInt(48 /* CharCode._0 */);
1013
+ }
1014
+ else if (c === 95 /* CharCode._ */) {
1015
+ if (sepEnd === pos) {
1016
+ this.error(sepEnd === start
1017
+ ? DiagnosticCode.Numeric_separators_are_not_allowed_here
1018
+ : DiagnosticCode.Multiple_consecutive_numeric_separators_are_not_permitted, this.range(pos));
1019
+ }
1020
+ else if (pos - 1 === start && text.charCodeAt(pos - 1) === 48 /* CharCode._0 */) {
1021
+ this.error(DiagnosticCode.Numeric_separators_are_not_allowed_here, this.range(pos));
1022
+ }
1023
+ sepEnd = pos + 1;
1024
+ }
1025
+ else {
1026
+ break;
1027
+ }
1028
+ // if (i64_gt_u(value, nextValue)) {
1029
+ // // Unsigned overflow occurred
1030
+ // overflowOccurred = true;
1031
+ // }
1032
+ value = nextValue;
1033
+ ++pos;
1034
+ }
1035
+ if (pos === start) {
1036
+ this.error(DiagnosticCode.Digit_expected, this.range(start));
1037
+ }
1038
+ else if (sepEnd === pos) {
1039
+ this.error(DiagnosticCode.Numeric_separators_are_not_allowed_here, this.range(sepEnd - 1));
1040
+ }
1041
+ else if (overflowOccurred) {
1042
+ this.error(DiagnosticCode.Literal_0_does_not_fit_into_i64_or_u64_types, this.range(start, pos), this.source.text.substring(start, pos));
1043
+ }
1044
+ this.pos = pos;
1045
+ return value;
1046
+ }
1047
+ readOctalInteger() {
1048
+ let text = this.source.text;
1049
+ let pos = this.pos;
1050
+ let end = this.end;
1051
+ let start = pos;
1052
+ let sepEnd = start;
1053
+ let value = BigInt(0);
1054
+ let i64_3 = BigInt(3);
1055
+ let nextValue = value;
1056
+ let overflowOccurred = false;
1057
+ while (pos < end) {
1058
+ let c = text.charCodeAt(pos);
1059
+ if (isOctal(c)) {
1060
+ // (value << 3) + c - CharCode._0
1061
+ nextValue = (value << BigInt(3)) + BigInt(c) - BigInt(48 /* CharCode._0 */);
1062
+ }
1063
+ else if (c === 95 /* CharCode._ */) {
1064
+ if (sepEnd === pos) {
1065
+ this.error(sepEnd === start
1066
+ ? DiagnosticCode.Numeric_separators_are_not_allowed_here
1067
+ : DiagnosticCode.Multiple_consecutive_numeric_separators_are_not_permitted, this.range(pos));
1068
+ }
1069
+ sepEnd = pos + 1;
1070
+ }
1071
+ else {
1072
+ break;
1073
+ }
1074
+ // if (i64_gt_u(value, nextValue)) {
1075
+ // // Unsigned overflow occurred
1076
+ // overflowOccurred = true;
1077
+ // }
1078
+ value = nextValue;
1079
+ ++pos;
1080
+ }
1081
+ if (pos === start) {
1082
+ this.error(DiagnosticCode.Octal_digit_expected, this.range(start));
1083
+ }
1084
+ else if (sepEnd === pos) {
1085
+ this.error(DiagnosticCode.Numeric_separators_are_not_allowed_here, this.range(sepEnd - 1));
1086
+ }
1087
+ else if (overflowOccurred) {
1088
+ this.error(DiagnosticCode.Literal_0_does_not_fit_into_i64_or_u64_types, this.range(start - 2, pos), this.source.text.substring(start - 2, pos));
1089
+ }
1090
+ this.pos = pos;
1091
+ return value;
1092
+ }
1093
+ readBinaryInteger() {
1094
+ let text = this.source.text;
1095
+ let pos = this.pos;
1096
+ let end = this.end;
1097
+ let start = pos;
1098
+ let sepEnd = start;
1099
+ let value = BigInt(0);
1100
+ let nextValue = value;
1101
+ let overflowOccurred = false;
1102
+ while (pos < end) {
1103
+ let c = text.charCodeAt(pos);
1104
+ if (c === 48 /* CharCode._0 */) {
1105
+ // value << 1 | 0
1106
+ nextValue = value << BigInt(1);
1107
+ }
1108
+ else if (c === 49 /* CharCode._1 */) {
1109
+ // value << 1 | 1
1110
+ nextValue = value << BigInt(1) | BigInt(1);
1111
+ }
1112
+ else if (c === 95 /* CharCode._ */) {
1113
+ if (sepEnd === pos) {
1114
+ this.error(sepEnd === start
1115
+ ? DiagnosticCode.Numeric_separators_are_not_allowed_here
1116
+ : DiagnosticCode.Multiple_consecutive_numeric_separators_are_not_permitted, this.range(pos));
1117
+ }
1118
+ sepEnd = pos + 1;
1119
+ }
1120
+ else {
1121
+ break;
1122
+ }
1123
+ // if (i64_gt(value, nextValue)) {
1124
+ // // Overflow occurred
1125
+ // overflowOccurred = true;
1126
+ // }
1127
+ value = nextValue;
1128
+ ++pos;
1129
+ }
1130
+ if (pos === start) {
1131
+ this.error(DiagnosticCode.Binary_digit_expected, this.range(start));
1132
+ }
1133
+ else if (sepEnd === pos) {
1134
+ this.error(DiagnosticCode.Numeric_separators_are_not_allowed_here, this.range(sepEnd - 1));
1135
+ }
1136
+ else if (overflowOccurred) {
1137
+ this.error(DiagnosticCode.Literal_0_does_not_fit_into_i64_or_u64_types, this.range(start - 2, pos), this.source.text.substring(start - 2, pos));
1138
+ }
1139
+ this.pos = pos;
1140
+ return value;
1141
+ }
1142
+ readFloat() {
1143
+ // let text = this.source.text;
1144
+ // if (text.charCodeAt(this.pos) === CharCode._0 && this.pos + 2 < this.end) {
1145
+ // switch (text.charCodeAt(this.pos + 1)) {
1146
+ // case CharCode.X:
1147
+ // case CharCode.x: {
1148
+ // this.pos += 2;
1149
+ // return this.readHexFloat();
1150
+ // }
1151
+ // }
1152
+ // }
1153
+ return this.readDecimalFloat();
1154
+ }
1155
+ readDecimalFloat() {
1156
+ let text = this.source.text;
1157
+ let end = this.end;
1158
+ let start = this.pos;
1159
+ let sepCount = this.readDecimalFloatPartial(false);
1160
+ if (this.pos < end && text.charCodeAt(this.pos) === 46 /* CharCode.Dot */) {
1161
+ ++this.pos;
1162
+ sepCount += this.readDecimalFloatPartial();
1163
+ }
1164
+ if (this.pos < end) {
1165
+ let c = text.charCodeAt(this.pos);
1166
+ if ((c | 32) === 101 /* CharCode.e */) {
1167
+ if (++this.pos < end &&
1168
+ (c = text.charCodeAt(this.pos)) === 45 /* CharCode.Minus */ || c === 43 /* CharCode.Plus */ &&
1169
+ isDecimal(text.charCodeAt(this.pos + 1))) {
1170
+ ++this.pos;
1171
+ }
1172
+ sepCount += this.readDecimalFloatPartial();
1173
+ }
1174
+ }
1175
+ let result = text.substring(start, this.pos);
1176
+ if (sepCount)
1177
+ result = result.replace(/_/g, "");
1178
+ return parseFloat(result);
1179
+ }
1180
+ /** Reads past one section of a decimal float literal. Returns the number of separators encountered. */
1181
+ readDecimalFloatPartial(allowLeadingZeroSep = true) {
1182
+ let text = this.source.text;
1183
+ let pos = this.pos;
1184
+ let start = pos;
1185
+ let end = this.end;
1186
+ let sepEnd = start;
1187
+ let sepCount = 0;
1188
+ while (pos < end) {
1189
+ let c = text.charCodeAt(pos);
1190
+ if (c === 95 /* CharCode._ */) {
1191
+ if (sepEnd === pos) {
1192
+ this.error(sepEnd === start
1193
+ ? DiagnosticCode.Numeric_separators_are_not_allowed_here
1194
+ : DiagnosticCode.Multiple_consecutive_numeric_separators_are_not_permitted, this.range(pos));
1195
+ }
1196
+ else if (!allowLeadingZeroSep && pos - 1 === start && text.charCodeAt(pos - 1) === 48 /* CharCode._0 */) {
1197
+ this.error(DiagnosticCode.Numeric_separators_are_not_allowed_here, this.range(pos));
1198
+ }
1199
+ sepEnd = pos + 1;
1200
+ ++sepCount;
1201
+ }
1202
+ else if (!isDecimal(c)) {
1203
+ break;
1204
+ }
1205
+ ++pos;
1206
+ }
1207
+ if (pos !== start && sepEnd === pos) {
1208
+ this.error(DiagnosticCode.Numeric_separators_are_not_allowed_here, this.range(sepEnd - 1));
1209
+ }
1210
+ this.pos = pos;
1211
+ return sepCount;
1212
+ }
1213
+ readHexFloat() {
1214
+ throw new Error("not implemented"); // TBD
1215
+ }
1216
+ readHexadecimalEscape(remain = 2, startIfTaggedTemplate = -1) {
1217
+ let value = 0;
1218
+ let text = this.source.text;
1219
+ let pos = this.pos;
1220
+ let end = this.end;
1221
+ while (pos < end) {
1222
+ let c = text.charCodeAt(pos++);
1223
+ if (isDecimal(c)) {
1224
+ value = (value << 4) + c - 48 /* CharCode._0 */;
1225
+ }
1226
+ else if (isHexBase(c)) {
1227
+ value = (value << 4) + (c | 32) + (10 - 97 /* CharCode.a */);
1228
+ }
1229
+ else if (~startIfTaggedTemplate) {
1230
+ this.pos = --pos;
1231
+ return text.substring(startIfTaggedTemplate, pos);
1232
+ }
1233
+ else {
1234
+ this.pos = pos;
1235
+ this.error(DiagnosticCode.Hexadecimal_digit_expected, this.range(pos - 1, pos));
1236
+ return "";
1237
+ }
1238
+ if (--remain === 0)
1239
+ break;
1240
+ }
1241
+ if (remain) { // invalid
1242
+ this.pos = pos;
1243
+ if (~startIfTaggedTemplate) {
1244
+ return text.substring(startIfTaggedTemplate, pos);
1245
+ }
1246
+ this.error(DiagnosticCode.Unexpected_end_of_text, this.range(pos));
1247
+ return "";
1248
+ }
1249
+ this.pos = pos;
1250
+ return String.fromCodePoint(value);
1251
+ }
1252
+ checkForIdentifierStartAfterNumericLiteral() {
1253
+ // TODO: BigInt n
1254
+ let pos = this.pos;
1255
+ if (pos < this.end && isIdentifierStart(this.source.text.charCodeAt(pos))) {
1256
+ this.error(DiagnosticCode.An_identifier_or_keyword_cannot_immediately_follow_a_numeric_literal, this.range(pos));
1257
+ }
1258
+ }
1259
+ readUnicodeEscape(startIfTaggedTemplate = -1) {
1260
+ return this.readHexadecimalEscape(4, startIfTaggedTemplate);
1261
+ }
1262
+ readExtendedUnicodeEscape(startIfTaggedTemplate = -1) {
1263
+ let start = this.pos;
1264
+ let value = this.readHexInteger();
1265
+ let value32 = i64_low(value);
1266
+ let invalid = false;
1267
+ assert(!i64_high(value));
1268
+ if (value32 > 0x10FFFF) {
1269
+ if (startIfTaggedTemplate === -1) {
1270
+ this.error(DiagnosticCode.An_extended_Unicode_escape_value_must_be_between_0x0_and_0x10FFFF_inclusive, this.range(start, this.pos));
1271
+ }
1272
+ invalid = true;
1273
+ }
1274
+ let end = this.end;
1275
+ let text = this.source.text;
1276
+ if (this.pos >= end) {
1277
+ if (startIfTaggedTemplate === -1) {
1278
+ this.error(DiagnosticCode.Unexpected_end_of_text, this.range(start, end));
1279
+ }
1280
+ invalid = true;
1281
+ }
1282
+ else if (text.charCodeAt(this.pos) === 125 /* CharCode.CloseBrace */) {
1283
+ ++this.pos;
1284
+ }
1285
+ else {
1286
+ if (startIfTaggedTemplate === -1) {
1287
+ this.error(DiagnosticCode.Unterminated_Unicode_escape_sequence, this.range(start, this.pos));
1288
+ }
1289
+ invalid = true;
1290
+ }
1291
+ if (invalid) {
1292
+ return ~startIfTaggedTemplate
1293
+ ? text.substring(startIfTaggedTemplate, this.pos)
1294
+ : "";
1295
+ }
1296
+ return String.fromCodePoint(value32);
1297
+ }
1298
+ }
1299
+ /** Tokenizer state as returned by {@link Tokenizer#mark} and consumed by {@link Tokenizer#reset}. */
1300
+ export class TokenizerState {
1301
+ pos;
1302
+ token;
1303
+ tokenPos;
1304
+ constructor(
1305
+ /** Current position. */
1306
+ pos,
1307
+ /** Current token. */
1308
+ token,
1309
+ /** Current token's position. */
1310
+ tokenPos) {
1311
+ this.pos = pos;
1312
+ this.token = token;
1313
+ this.tokenPos = tokenPos;
1314
+ }
1315
+ }
1316
+ // Reusable state object to reduce allocations
1317
+ // let reusableState: TokenizerState | undefined = undefined;
1318
+ function i64_low(value) {
1319
+ return Number(value & BigInt(0xFFFFFFFF));
1320
+ }
1321
+ function i64_high(value) {
1322
+ return i64_low(value >> BigInt(32));
1323
+ }