brighterscript 1.0.0-alpha.2 → 1.0.0-alpha.22

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 (388) hide show
  1. package/CHANGELOG.md +643 -253
  2. package/README.md +33 -9
  3. package/bsconfig.schema.json +22 -2
  4. package/dist/BsConfig.d.ts +9 -0
  5. package/dist/Cache.d.ts +5 -6
  6. package/dist/Cache.js +12 -11
  7. package/dist/Cache.js.map +1 -1
  8. package/dist/CodeActionUtil.d.ts +11 -2
  9. package/dist/CodeActionUtil.js +17 -3
  10. package/dist/CodeActionUtil.js.map +1 -1
  11. package/dist/CommentFlagProcessor.d.ts +4 -4
  12. package/dist/CommentFlagProcessor.js +5 -3
  13. package/dist/CommentFlagProcessor.js.map +1 -1
  14. package/dist/DependencyGraph.d.ts +2 -2
  15. package/dist/DependencyGraph.js +20 -7
  16. package/dist/DependencyGraph.js.map +1 -1
  17. package/dist/DiagnosticCollection.d.ts +3 -3
  18. package/dist/DiagnosticCollection.js +11 -11
  19. package/dist/DiagnosticCollection.js.map +1 -1
  20. package/dist/DiagnosticFilterer.js +5 -4
  21. package/dist/DiagnosticFilterer.js.map +1 -1
  22. package/dist/DiagnosticMessages.d.ts +59 -4
  23. package/dist/DiagnosticMessages.js +65 -7
  24. package/dist/DiagnosticMessages.js.map +1 -1
  25. package/dist/LanguageServer.d.ts +51 -39
  26. package/dist/LanguageServer.js +316 -232
  27. package/dist/LanguageServer.js.map +1 -1
  28. package/dist/Logger.d.ts +2 -0
  29. package/dist/Logger.js +10 -8
  30. package/dist/Logger.js.map +1 -1
  31. package/dist/PluginInterface.d.ts +7 -3
  32. package/dist/PluginInterface.js +9 -0
  33. package/dist/PluginInterface.js.map +1 -1
  34. package/dist/Program.d.ts +43 -25
  35. package/dist/Program.js +212 -95
  36. package/dist/Program.js.map +1 -1
  37. package/dist/ProgramBuilder.d.ts +4 -0
  38. package/dist/ProgramBuilder.js +36 -20
  39. package/dist/ProgramBuilder.js.map +1 -1
  40. package/dist/Scope.d.ts +126 -29
  41. package/dist/Scope.js +433 -156
  42. package/dist/Scope.js.map +1 -1
  43. package/dist/SemanticTokenUtils.d.ts +14 -0
  44. package/dist/SemanticTokenUtils.js +81 -0
  45. package/dist/SemanticTokenUtils.js.map +1 -0
  46. package/dist/SymbolTable.d.ts +10 -4
  47. package/dist/SymbolTable.js +55 -13
  48. package/dist/SymbolTable.js.map +1 -1
  49. package/dist/XmlScope.d.ts +7 -2
  50. package/dist/XmlScope.js +65 -27
  51. package/dist/XmlScope.js.map +1 -1
  52. package/dist/astUtils/AstEditor.d.ts +65 -0
  53. package/dist/astUtils/AstEditor.js +239 -0
  54. package/dist/astUtils/AstEditor.js.map +1 -0
  55. package/dist/{types/FunctionType.spec.d.ts → astUtils/AstEditor.spec.d.ts} +0 -0
  56. package/dist/astUtils/AstEditor.spec.js +254 -0
  57. package/dist/astUtils/AstEditor.spec.js.map +1 -0
  58. package/dist/astUtils/creators.d.ts +28 -6
  59. package/dist/astUtils/creators.js +137 -19
  60. package/dist/astUtils/creators.js.map +1 -1
  61. package/dist/astUtils/creators.spec.js +14 -4
  62. package/dist/astUtils/creators.spec.js.map +1 -1
  63. package/dist/astUtils/reflection.d.ts +32 -10
  64. package/dist/astUtils/reflection.js +82 -7
  65. package/dist/astUtils/reflection.js.map +1 -1
  66. package/dist/astUtils/reflection.spec.js +130 -119
  67. package/dist/astUtils/reflection.spec.js.map +1 -1
  68. package/dist/astUtils/stackedVisitor.js.map +1 -1
  69. package/dist/astUtils/stackedVisitor.spec.js +13 -13
  70. package/dist/astUtils/stackedVisitor.spec.js.map +1 -1
  71. package/dist/astUtils/visitors.d.ts +76 -51
  72. package/dist/astUtils/visitors.js +31 -11
  73. package/dist/astUtils/visitors.js.map +1 -1
  74. package/dist/astUtils/visitors.spec.js +126 -32
  75. package/dist/astUtils/visitors.spec.js.map +1 -1
  76. package/dist/astUtils/xml.d.ts +4 -3
  77. package/dist/astUtils/xml.js +8 -3
  78. package/dist/astUtils/xml.js.map +1 -1
  79. package/dist/bscPlugin/BscPlugin.d.ts +7 -1
  80. package/dist/bscPlugin/BscPlugin.js +28 -0
  81. package/dist/bscPlugin/BscPlugin.js.map +1 -1
  82. package/dist/bscPlugin/codeActions/CodeActionsProcessor.js +4 -4
  83. package/dist/bscPlugin/codeActions/CodeActionsProcessor.js.map +1 -1
  84. package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js +26 -26
  85. package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js.map +1 -1
  86. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.d.ts +9 -0
  87. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js +108 -0
  88. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js.map +1 -0
  89. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.d.ts +1 -0
  90. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.js +130 -0
  91. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.js.map +1 -0
  92. package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.d.ts +8 -0
  93. package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.js +52 -0
  94. package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.js.map +1 -0
  95. package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.spec.d.ts +1 -0
  96. package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.spec.js +32 -0
  97. package/dist/bscPlugin/transpile/BrsFilePreTranspileProcessor.spec.js.map +1 -0
  98. package/dist/bscPlugin/validation/BrsFileValidator.d.ts +9 -0
  99. package/dist/bscPlugin/validation/BrsFileValidator.js +66 -0
  100. package/dist/bscPlugin/validation/BrsFileValidator.js.map +1 -0
  101. package/dist/bscPlugin/validation/ScopeValidator.d.ts +29 -0
  102. package/dist/bscPlugin/validation/ScopeValidator.js +183 -0
  103. package/dist/bscPlugin/validation/ScopeValidator.js.map +1 -0
  104. package/dist/cli.js +10 -3
  105. package/dist/cli.js.map +1 -1
  106. package/dist/diagnosticUtils.d.ts +1 -0
  107. package/dist/diagnosticUtils.js +15 -8
  108. package/dist/diagnosticUtils.js.map +1 -1
  109. package/dist/examples/plugins/removePrint.js +12 -14
  110. package/dist/examples/plugins/removePrint.js.map +1 -1
  111. package/dist/files/BrsFile.Class.spec.js +717 -147
  112. package/dist/files/BrsFile.Class.spec.js.map +1 -1
  113. package/dist/files/BrsFile.d.ts +70 -30
  114. package/dist/files/BrsFile.js +719 -353
  115. package/dist/files/BrsFile.js.map +1 -1
  116. package/dist/files/BrsFile.spec.js +1238 -449
  117. package/dist/files/BrsFile.spec.js.map +1 -1
  118. package/dist/files/XmlFile.d.ts +6 -5
  119. package/dist/files/XmlFile.js +38 -30
  120. package/dist/files/XmlFile.js.map +1 -1
  121. package/dist/files/XmlFile.spec.js +302 -237
  122. package/dist/files/XmlFile.spec.js.map +1 -1
  123. package/dist/files/tests/imports.spec.js +44 -42
  124. package/dist/files/tests/imports.spec.js.map +1 -1
  125. package/dist/files/tests/optionalChaning.spec.d.ts +1 -0
  126. package/dist/files/tests/optionalChaning.spec.js +88 -0
  127. package/dist/files/tests/optionalChaning.spec.js.map +1 -0
  128. package/dist/globalCallables.d.ts +3 -1
  129. package/dist/globalCallables.js +424 -152
  130. package/dist/globalCallables.js.map +1 -1
  131. package/dist/index.d.ts +13 -3
  132. package/dist/index.js +28 -5
  133. package/dist/index.js.map +1 -1
  134. package/dist/interfaces.d.ts +133 -16
  135. package/dist/lexer/Lexer.d.ts +19 -1
  136. package/dist/lexer/Lexer.js +127 -21
  137. package/dist/lexer/Lexer.js.map +1 -1
  138. package/dist/lexer/Lexer.spec.js +657 -536
  139. package/dist/lexer/Lexer.spec.js.map +1 -1
  140. package/dist/lexer/Token.d.ts +2 -2
  141. package/dist/lexer/TokenKind.d.ts +13 -1
  142. package/dist/lexer/TokenKind.js +60 -3
  143. package/dist/lexer/TokenKind.js.map +1 -1
  144. package/dist/parser/BrsTranspileState.d.ts +9 -0
  145. package/dist/parser/BrsTranspileState.js +14 -0
  146. package/dist/parser/BrsTranspileState.js.map +1 -1
  147. package/dist/parser/Expression.d.ts +150 -34
  148. package/dist/parser/Expression.js +335 -165
  149. package/dist/parser/Expression.js.map +1 -1
  150. package/dist/parser/Parser.Class.spec.js +189 -89
  151. package/dist/parser/Parser.Class.spec.js.map +1 -1
  152. package/dist/parser/Parser.d.ts +153 -30
  153. package/dist/parser/Parser.js +1100 -503
  154. package/dist/parser/Parser.js.map +1 -1
  155. package/dist/parser/Parser.spec.js +687 -266
  156. package/dist/parser/Parser.spec.js.map +1 -1
  157. package/dist/parser/SGParser.d.ts +41 -4
  158. package/dist/parser/SGParser.js +186 -175
  159. package/dist/parser/SGParser.js.map +1 -1
  160. package/dist/parser/SGParser.spec.js +35 -22
  161. package/dist/parser/SGParser.spec.js.map +1 -1
  162. package/dist/parser/SGTypes.d.ts +206 -38
  163. package/dist/parser/SGTypes.js +470 -161
  164. package/dist/parser/SGTypes.js.map +1 -1
  165. package/dist/parser/SGTypes.spec.d.ts +1 -0
  166. package/dist/parser/SGTypes.spec.js +351 -0
  167. package/dist/parser/SGTypes.spec.js.map +1 -0
  168. package/dist/parser/Statement.d.ts +202 -48
  169. package/dist/parser/Statement.js +648 -193
  170. package/dist/parser/Statement.js.map +1 -1
  171. package/dist/parser/Statement.spec.js +11 -11
  172. package/dist/parser/Statement.spec.js.map +1 -1
  173. package/dist/parser/TranspileState.d.ts +1 -1
  174. package/dist/parser/TranspileState.js +15 -7
  175. package/dist/parser/TranspileState.js.map +1 -1
  176. package/dist/parser/tests/Parser.spec.d.ts +10 -9
  177. package/dist/parser/tests/Parser.spec.js +15 -11
  178. package/dist/parser/tests/Parser.spec.js.map +1 -1
  179. package/dist/parser/tests/controlFlow/For.spec.js +60 -60
  180. package/dist/parser/tests/controlFlow/For.spec.js.map +1 -1
  181. package/dist/parser/tests/controlFlow/ForEach.spec.js +40 -39
  182. package/dist/parser/tests/controlFlow/ForEach.spec.js.map +1 -1
  183. package/dist/parser/tests/controlFlow/If.spec.js +213 -194
  184. package/dist/parser/tests/controlFlow/If.spec.js.map +1 -1
  185. package/dist/parser/tests/controlFlow/While.spec.js +37 -37
  186. package/dist/parser/tests/controlFlow/While.spec.js.map +1 -1
  187. package/dist/parser/tests/expression/Additive.spec.js +30 -30
  188. package/dist/parser/tests/expression/Additive.spec.js.map +1 -1
  189. package/dist/parser/tests/expression/ArrayLiterals.spec.js +119 -119
  190. package/dist/parser/tests/expression/ArrayLiterals.spec.js.map +1 -1
  191. package/dist/parser/tests/expression/AssociativeArrayLiterals.spec.js +162 -138
  192. package/dist/parser/tests/expression/AssociativeArrayLiterals.spec.js.map +1 -1
  193. package/dist/parser/tests/expression/Boolean.spec.js +24 -24
  194. package/dist/parser/tests/expression/Boolean.spec.js.map +1 -1
  195. package/dist/parser/tests/expression/Call.spec.js +41 -40
  196. package/dist/parser/tests/expression/Call.spec.js.map +1 -1
  197. package/dist/parser/tests/expression/Exponential.spec.js +17 -17
  198. package/dist/parser/tests/expression/Exponential.spec.js.map +1 -1
  199. package/dist/parser/tests/expression/Function.spec.js +256 -256
  200. package/dist/parser/tests/expression/Function.spec.js.map +1 -1
  201. package/dist/parser/tests/expression/Indexing.spec.js +87 -87
  202. package/dist/parser/tests/expression/Indexing.spec.js.map +1 -1
  203. package/dist/parser/tests/expression/Multiplicative.spec.js +37 -37
  204. package/dist/parser/tests/expression/Multiplicative.spec.js.map +1 -1
  205. package/dist/parser/tests/expression/NullCoalescenceExpression.spec.js +75 -63
  206. package/dist/parser/tests/expression/NullCoalescenceExpression.spec.js.map +1 -1
  207. package/dist/parser/tests/expression/PrefixUnary.spec.js +41 -41
  208. package/dist/parser/tests/expression/PrefixUnary.spec.js.map +1 -1
  209. package/dist/parser/tests/expression/Primary.spec.js +41 -41
  210. package/dist/parser/tests/expression/Primary.spec.js.map +1 -1
  211. package/dist/parser/tests/expression/RegexLiteralExpression.spec.d.ts +1 -0
  212. package/dist/parser/tests/expression/RegexLiteralExpression.spec.js +171 -0
  213. package/dist/parser/tests/expression/RegexLiteralExpression.spec.js.map +1 -0
  214. package/dist/parser/tests/expression/Relational.spec.js +43 -43
  215. package/dist/parser/tests/expression/Relational.spec.js.map +1 -1
  216. package/dist/parser/tests/expression/SourceLiteralExpression.spec.js +9 -9
  217. package/dist/parser/tests/expression/SourceLiteralExpression.spec.js.map +1 -1
  218. package/dist/parser/tests/expression/TemplateStringExpression.spec.js +28 -28
  219. package/dist/parser/tests/expression/TemplateStringExpression.spec.js.map +1 -1
  220. package/dist/parser/tests/expression/TernaryExpression.spec.js +102 -102
  221. package/dist/parser/tests/expression/TernaryExpression.spec.js.map +1 -1
  222. package/dist/parser/tests/statement/AssignmentOperators.spec.js +36 -36
  223. package/dist/parser/tests/statement/AssignmentOperators.spec.js.map +1 -1
  224. package/dist/parser/tests/statement/Declaration.spec.js +44 -44
  225. package/dist/parser/tests/statement/Declaration.spec.js.map +1 -1
  226. package/dist/parser/tests/statement/Dim.spec.js +21 -21
  227. package/dist/parser/tests/statement/Dim.spec.js.map +1 -1
  228. package/dist/parser/tests/statement/Enum.spec.d.ts +1 -0
  229. package/dist/parser/tests/statement/Enum.spec.js +840 -0
  230. package/dist/parser/tests/statement/Enum.spec.js.map +1 -0
  231. package/dist/parser/tests/statement/For.spec.d.ts +1 -0
  232. package/dist/parser/tests/statement/For.spec.js +46 -0
  233. package/dist/parser/tests/statement/For.spec.js.map +1 -0
  234. package/dist/parser/tests/statement/ForEach.spec.d.ts +1 -0
  235. package/dist/parser/tests/statement/ForEach.spec.js +37 -0
  236. package/dist/parser/tests/statement/ForEach.spec.js.map +1 -0
  237. package/dist/parser/tests/statement/Function.spec.js +198 -197
  238. package/dist/parser/tests/statement/Function.spec.js.map +1 -1
  239. package/dist/parser/tests/statement/Goto.spec.js +15 -14
  240. package/dist/parser/tests/statement/Goto.spec.js.map +1 -1
  241. package/dist/parser/tests/statement/Increment.spec.js +50 -50
  242. package/dist/parser/tests/statement/Increment.spec.js.map +1 -1
  243. package/dist/parser/tests/statement/InterfaceStatement.spec.d.ts +1 -0
  244. package/dist/parser/tests/statement/InterfaceStatement.spec.js +254 -0
  245. package/dist/parser/tests/statement/InterfaceStatement.spec.js.map +1 -0
  246. package/dist/parser/tests/statement/LibraryStatement.spec.js +17 -17
  247. package/dist/parser/tests/statement/LibraryStatement.spec.js.map +1 -1
  248. package/dist/parser/tests/statement/Misc.spec.js +108 -106
  249. package/dist/parser/tests/statement/Misc.spec.js.map +1 -1
  250. package/dist/parser/tests/statement/PrintStatement.spec.js +40 -40
  251. package/dist/parser/tests/statement/PrintStatement.spec.js.map +1 -1
  252. package/dist/parser/tests/statement/ReturnStatement.spec.js +46 -46
  253. package/dist/parser/tests/statement/ReturnStatement.spec.js.map +1 -1
  254. package/dist/parser/tests/statement/Set.spec.js +83 -83
  255. package/dist/parser/tests/statement/Set.spec.js.map +1 -1
  256. package/dist/parser/tests/statement/Stop.spec.js +12 -11
  257. package/dist/parser/tests/statement/Stop.spec.js.map +1 -1
  258. package/dist/parser/tests/statement/Throw.spec.js +5 -5
  259. package/dist/parser/tests/statement/Throw.spec.js.map +1 -1
  260. package/dist/parser/tests/statement/TryCatch.spec.js +15 -13
  261. package/dist/parser/tests/statement/TryCatch.spec.js.map +1 -1
  262. package/dist/preprocessor/Chunk.d.ts +1 -1
  263. package/dist/preprocessor/Chunk.js.map +1 -1
  264. package/dist/preprocessor/Manifest.d.ts +5 -5
  265. package/dist/preprocessor/Manifest.js +14 -35
  266. package/dist/preprocessor/Manifest.js.map +1 -1
  267. package/dist/preprocessor/Manifest.spec.d.ts +1 -0
  268. package/dist/preprocessor/Manifest.spec.js +78 -103
  269. package/dist/preprocessor/Manifest.spec.js.map +1 -1
  270. package/dist/preprocessor/Preprocessor.d.ts +1 -1
  271. package/dist/preprocessor/Preprocessor.js +8 -8
  272. package/dist/preprocessor/Preprocessor.js.map +1 -1
  273. package/dist/preprocessor/Preprocessor.spec.js +49 -49
  274. package/dist/preprocessor/Preprocessor.spec.js.map +1 -1
  275. package/dist/preprocessor/PreprocessorParser.spec.js +72 -72
  276. package/dist/preprocessor/PreprocessorParser.spec.js.map +1 -1
  277. package/dist/roku-types/data.json +21891 -0
  278. package/dist/roku-types/index.d.ts +6776 -0
  279. package/dist/roku-types/index.js +11 -0
  280. package/dist/roku-types/index.js.map +1 -0
  281. package/dist/types/ArrayType.d.ts +8 -5
  282. package/dist/types/ArrayType.js +52 -12
  283. package/dist/types/ArrayType.js.map +1 -1
  284. package/dist/types/ArrayType.spec.js +72 -11
  285. package/dist/types/ArrayType.spec.js.map +1 -1
  286. package/dist/types/BooleanType.d.ts +4 -2
  287. package/dist/types/BooleanType.js +9 -4
  288. package/dist/types/BooleanType.js.map +1 -1
  289. package/dist/types/BooleanType.spec.js +5 -3
  290. package/dist/types/BooleanType.spec.js.map +1 -1
  291. package/dist/types/BscType.d.ts +20 -5
  292. package/dist/types/BscType.js +24 -0
  293. package/dist/types/BscType.js.map +1 -1
  294. package/dist/types/CustomType.d.ts +8 -6
  295. package/dist/types/CustomType.js +20 -11
  296. package/dist/types/CustomType.js.map +1 -1
  297. package/dist/types/DoubleType.d.ts +2 -0
  298. package/dist/types/DoubleType.js +14 -9
  299. package/dist/types/DoubleType.js.map +1 -1
  300. package/dist/types/DoubleType.spec.js +5 -3
  301. package/dist/types/DoubleType.spec.js.map +1 -1
  302. package/dist/types/DynamicType.d.ts +2 -0
  303. package/dist/types/DynamicType.js +6 -2
  304. package/dist/types/DynamicType.js.map +1 -1
  305. package/dist/types/DynamicType.spec.js +2 -2
  306. package/dist/types/DynamicType.spec.js.map +1 -1
  307. package/dist/types/EnumType.d.ts +22 -0
  308. package/dist/types/EnumType.js +55 -0
  309. package/dist/types/EnumType.js.map +1 -0
  310. package/dist/types/FloatType.d.ts +2 -0
  311. package/dist/types/FloatType.js +14 -9
  312. package/dist/types/FloatType.js.map +1 -1
  313. package/dist/types/FloatType.spec.js +4 -2
  314. package/dist/types/FloatType.spec.js.map +1 -1
  315. package/dist/types/FunctionType.d.ts +7 -31
  316. package/dist/types/FunctionType.js +11 -57
  317. package/dist/types/FunctionType.js.map +1 -1
  318. package/dist/types/IntegerType.d.ts +2 -0
  319. package/dist/types/IntegerType.js +14 -9
  320. package/dist/types/IntegerType.js.map +1 -1
  321. package/dist/types/IntegerType.spec.js +5 -3
  322. package/dist/types/IntegerType.spec.js.map +1 -1
  323. package/dist/types/InterfaceType.d.ts +13 -4
  324. package/dist/types/InterfaceType.js +48 -8
  325. package/dist/types/InterfaceType.js.map +1 -1
  326. package/dist/types/InterfaceType.spec.d.ts +1 -0
  327. package/dist/types/InterfaceType.spec.js +194 -0
  328. package/dist/types/InterfaceType.spec.js.map +1 -0
  329. package/dist/types/InvalidType.d.ts +4 -2
  330. package/dist/types/InvalidType.js +10 -5
  331. package/dist/types/InvalidType.js.map +1 -1
  332. package/dist/types/InvalidType.spec.js +4 -2
  333. package/dist/types/InvalidType.spec.js.map +1 -1
  334. package/dist/types/LazyType.d.ts +8 -7
  335. package/dist/types/LazyType.js +22 -10
  336. package/dist/types/LazyType.js.map +1 -1
  337. package/dist/types/LongIntegerType.d.ts +2 -0
  338. package/dist/types/LongIntegerType.js +14 -9
  339. package/dist/types/LongIntegerType.js.map +1 -1
  340. package/dist/types/LongIntegerType.spec.js +4 -2
  341. package/dist/types/LongIntegerType.spec.js.map +1 -1
  342. package/dist/types/ObjectType.d.ts +8 -4
  343. package/dist/types/ObjectType.js +9 -4
  344. package/dist/types/ObjectType.js.map +1 -1
  345. package/dist/types/ObjectType.spec.js +2 -2
  346. package/dist/types/ObjectType.spec.js.map +1 -1
  347. package/dist/types/StringType.d.ts +4 -2
  348. package/dist/types/StringType.js +9 -4
  349. package/dist/types/StringType.js.map +1 -1
  350. package/dist/types/StringType.spec.js +4 -2
  351. package/dist/types/StringType.spec.js.map +1 -1
  352. package/dist/types/TypedFunctionType.d.ts +28 -0
  353. package/dist/types/TypedFunctionType.js +88 -0
  354. package/dist/types/TypedFunctionType.js.map +1 -0
  355. package/dist/types/TypedFunctionType.spec.d.ts +1 -0
  356. package/dist/types/TypedFunctionType.spec.js +37 -0
  357. package/dist/types/TypedFunctionType.spec.js.map +1 -0
  358. package/dist/types/UninitializedType.js +3 -3
  359. package/dist/types/UninitializedType.js.map +1 -1
  360. package/dist/types/VoidType.d.ts +4 -2
  361. package/dist/types/VoidType.js +8 -4
  362. package/dist/types/VoidType.js.map +1 -1
  363. package/dist/types/VoidType.spec.js +2 -2
  364. package/dist/types/VoidType.spec.js.map +1 -1
  365. package/dist/types/helpers.d.ts +42 -0
  366. package/dist/types/helpers.js +118 -0
  367. package/dist/types/helpers.js.map +1 -0
  368. package/dist/util.d.ts +91 -21
  369. package/dist/util.js +364 -114
  370. package/dist/util.js.map +1 -1
  371. package/dist/validators/ClassValidator.d.ts +19 -2
  372. package/dist/validators/ClassValidator.js +164 -103
  373. package/dist/validators/ClassValidator.js.map +1 -1
  374. package/package.json +30 -19
  375. package/dist/astUtils/index.d.ts +0 -7
  376. package/dist/astUtils/index.js +0 -26
  377. package/dist/astUtils/index.js.map +0 -1
  378. package/dist/lexer/index.d.ts +0 -3
  379. package/dist/lexer/index.js +0 -17
  380. package/dist/lexer/index.js.map +0 -1
  381. package/dist/parser/index.d.ts +0 -3
  382. package/dist/parser/index.js +0 -16
  383. package/dist/parser/index.js.map +0 -1
  384. package/dist/preprocessor/index.d.ts +0 -3
  385. package/dist/preprocessor/index.js +0 -16
  386. package/dist/preprocessor/index.js.map +0 -1
  387. package/dist/types/FunctionType.spec.js +0 -23
  388. package/dist/types/FunctionType.spec.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -6,9 +6,519 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
 
8
8
 
9
+ ## [1.0.0-alpha.22](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha21...v1.0.0-alpha.22) - 2022-06-08
10
+ ### Changed
11
+ - all changes from [v0.52.0](#0520---2022-06-08)
12
+ - all changes from [v0.51.4](#0514---2022-05-31)
13
+ - all changes from [v0.51.3](#0513---2022-05-31)
14
+ - all changes from [v0.51.2](#0512---2022-05-26)
15
+ - all changes from [v0.51.1](#0511---2022-05-26)
16
+ - all changes from [v0.51.0](#0510---2022-05-24)
17
+ - all changes from [v0.50.2](#0502---2022-05-23)
18
+ - all changes from [v0.50.1](#0501---2022-05-18)
19
+ - all changes from [v0.50.0](#0500---2022-05-17)
20
+
21
+
22
+
23
+ ## [0.52.0](https://github.com/rokucommunity/brighterscript/compare/v0.51.4...v0.52.0) - 2022-06-08
24
+ ### Added
25
+ - LanguageServer: Load projects based on bsconfig.json presence ([#613](https://github.com/rokucommunity/brighterscript/pull/613))
26
+ ### Changed
27
+ - upgrade to [roku-deploy@3.7.1](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#371---2022-06-08)
28
+
29
+
30
+
31
+ ## [0.51.4](https://github.com/rokucommunity/brighterscript/compare/v0.51.3...v0.51.4) - 2022-05-31
32
+ ### Fixed
33
+ - Add allowBrighterScriptInBrightScript to bsconfig.schema.json ([#610](https://github.com/rokucommunity/brighterscript/pull/610))
34
+
35
+
36
+
37
+ ## [0.51.3](https://github.com/rokucommunity/brighterscript/compare/v0.51.2...v0.51.3) - 2022-05-31
38
+ ### Fixed
39
+ - hover for namespace functions ([#606](https://github.com/rokucommunity/brighterscript/pull/606))
40
+ ### Changed
41
+ - add `owner` and `key` to the visitor callbacks ([#600](https://github.com/rokucommunity/brighterscript/pull/600))
42
+
43
+
44
+
45
+ ## [0.51.2](https://github.com/rokucommunity/brighterscript/compare/v0.51.1...v0.51.2) - 2022-05-26
46
+ ### Fixed
47
+ - allow enums and interfaces as class field types ([#602](https://github.com/rokucommunity/brighterscript/pull/602))
48
+
49
+
50
+
51
+ ## [0.51.1](https://github.com/rokucommunity/brighterscript/compare/v0.51.0...v0.51.1) - 2022-05-26
52
+ ### Fixed
53
+ - allow enums and interfaces as function return types ([#601](https://github.com/rokucommunity/brighterscript/pull/601))
54
+ - support AstEditor in visitor editing pattern ([#599](https://github.com/rokucommunity/brighterscript/pull/599))
55
+
56
+
57
+
58
+ ## [0.51.0](https://github.com/rokucommunity/brighterscript/compare/v0.50.2...v0.51.0) - 2022-05-24
59
+ ### Added
60
+ - Add function-based` AstEditor.edit` method ([#598](https://github.com/rokucommunity/brighterscript/pull/598))
61
+ - Allow multiple keys for `DependencyGraph.getAllDependencies()` ([#596](https://github.com/rokucommunity/brighterscript/pull/596))
62
+
63
+
64
+
65
+ ## [0.50.2](https://github.com/rokucommunity/brighterscript/compare/v0.50.1...v0.50.2) - 2022-05-23
66
+ ### Added
67
+ - `allowBrighterScriptInBrightScript` config option to allow brighterscript features to be included in BrightScript files, and force those files to be transpiled ([#573](https://github.com/rokucommunity/brighterscript/pull/573))
68
+ ### Changed
69
+ - upgrade to [roku-deploy@3.7.0](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#370---2022-05-23)
70
+
71
+
72
+
73
+ ## [0.50.1](https://github.com/rokucommunity/brighterscript/compare/v0.50.0...v0.50.1) - 2022-05-18
74
+ ### Fixed
75
+ - Expose all the AstEditor methods to plugin events ([#593](https://github.com/rokucommunity/brighterscript/pull/593))
76
+ - Fix language server cwd issue with multi-root workspaces ([#592](https://github.com/rokucommunity/brighterscript/pull/592))
77
+
78
+
79
+
80
+ ## [0.50.0](https://github.com/rokucommunity/brighterscript/compare/v0.49.0...v0.50.0) - 2022-05-17
81
+ ### Added
82
+ - `srcPath` property on `XmlFile` and `BrsFile` to line up with the v1 branch ([#581](https://github.com/rokucommunity/brighterscript/pull/581))
83
+ - more `AstEditor` functions ([#589](https://github.com/rokucommunity/brighterscript/pull/589))
84
+ ### Changed
85
+ - rename `ClassFieldStatement` and `ClassMethodStatement` to `FieldStatement` and `MethodStatement` respectively to allow their use in non-class-related things ([#582](https://github.com/rokucommunity/brighterscript/pull/582))
86
+ ### Fixed
87
+ - Fix semantic tokens for enums in if statements ([#584](https://github.com/rokucommunity/brighterscript/pull/584))
88
+ - Don't push synthetic constructor into each class ([#586](https://github.com/rokucommunity/brighterscript/pull/586))
89
+ - transpile bugs related to class `super` handling ([#590](https://github.com/rokucommunity/brighterscript/pull/590))
90
+
91
+
92
+
93
+ ## [1.0.0-alpha.21](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha20...v1.0.0-alpha.21) - 2022-05-02
94
+ ### Added
95
+ - allow enym types as function parameters ([#579](https://github.com/rokucommunity/brighterscript/pull/579))
96
+ ### Changed
97
+ - all changes from [v0.49.0](#0481---2022-05-02)
98
+
99
+
100
+
101
+ ## [0.49.0](https://github.com/rokucommunity/brighterscript/compare/v0.48.1...v0.49.0) - 2022-05-02
102
+ ### Added
103
+ - allow interfaces and enums as function param types ([#580](https://github.com/rokucommunity/brighterscript/pull/580))
104
+ - Transpile files added by plugins after start of transpile cycle ([#578](https://github.com/rokucommunity/brighterscript/pull/578))
105
+ - add AstEditor to `beforeProgramTranspile` and `afterProgramTranspile` plugin events ([#576](https://github.com/rokucommunity/brighterscript/pull/576))
106
+
107
+
108
+
109
+ ## [1.0.0-alpha.20](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) - 2022-04-28
110
+ ### Changed
111
+ - all changes from [v0.48.1](#0481---2022-04-14)
112
+ - all changes from [v0.48.0](#0480---2022-04-13)
113
+ - all changes from [v0.47.3](#0473---2022-04-08)
114
+ - all changes from [v0.47.2](#0472---2022-04-07)
115
+ - all changes from [v0.47.1](#0471---2022-04-05)
116
+
117
+
118
+
119
+ ## [0.48.1](https://github.com/rokucommunity/brighterscript/compare/v0.48.0...v0.48.1) - 2022-04-14
120
+ ### Fixed
121
+ - prevent duplicate `CreateObject` validations showing one for each affected scope ([#568](https://github.com/rokucommunity/brighterscript/pull/568))
122
+ - prevent `CreateObject` diagnostics for component library components ([#568](https://github.com/rokucommunity/brighterscript/pull/568))
123
+
124
+
125
+ ## [0.48.0](https://github.com/rokucommunity/brighterscript/compare/v0.47.3...v0.48.0) - 2022-04-13
126
+ ### Added
127
+ - language support for native BrightScript optional chaining ([#546](https://github.com/rokucommunity/brighterscript/pull/546))
128
+ - validation for all known `createObject` values and parameters. ([#435](https://github.com/rokucommunity/brighterscript/pull/435))
129
+ ### Fixed
130
+ - add missing statements and expressions to `createVisitor` ([#567](https://github.com/rokucommunity/brighterscript/pull/567))
131
+
132
+
133
+
134
+ ## [0.47.3](https://github.com/rokucommunity/brighterscript/compare/v0.47.2...v0.47.3) - 2022-04-08
135
+ ### Fixed
136
+ - accuracy issues when parsing the manifest ([#565](https://github.com/rokucommunity/brighterscript/pull/565))
137
+
138
+
139
+
140
+ ## [0.47.2](https://github.com/rokucommunity/brighterscript/compare/v0.47.1...v0.47.2) - 2022-04-07
141
+ ### Fixed
142
+ - enum transpile bug for binary expressions ([#559](https://github.com/rokucommunity/brighterscript/pull/559))
143
+ - add missing `require` entry to `bsconfig.schema.json` ([#560](https://github.com/rokucommunity/brighterscript/pull/560))
144
+
145
+
146
+
147
+ ## [0.47.1](https://github.com/rokucommunity/brighterscript/compare/v0.47.0...v0.47.1) - 2022-04-05
148
+ ### Changed
149
+ - disable strict cli args to empower plugins ([#557](https://github.com/rokucommunity/brighterscript/pull/557))
150
+ - don't add trailing commas in transpiled output for array and aa literals ([#556](https://github.com/rokucommunity/brighterscript/pull/556))
151
+ - retain quote char when transpiling xml attributes ([#552](https://github.com/rokucommunity/brighterscript/pull/552))
152
+
153
+
154
+
155
+ ## [1.0.0-alpha.19](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) - 2022-03-30
156
+ ### Added
157
+ - all changes from [v0.47.0](#0470---2022-03-30)
158
+
159
+
160
+
161
+ ## [0.47.0](https://github.com/rokucommunity/brighterscript/compare/v0.46.0...v0.47.0) - 2022-03-30
162
+ ### Added
163
+ - `require` flag to allow loading external node modules as part of the build process (useful for things like `ts-node/register`). ([#550](https://github.com/rokucommunity/brighterscript/pull/550), [#551](https://github.com/rokucommunity/brighterscript/pull/551))
164
+
165
+
166
+
167
+ ## [1.0.0-alpha.18](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) - 2022-03-24
168
+ ### Added
169
+ - Adds Symbol Tables to InterfaceTypes - general refactor of Interfaces ([#496](https://github.com/rokucommunity/brighterscript/pull/496))
170
+ - all changes from [v0.46.0](#0460---2022-03-24)
171
+ ### Changed
172
+ - Renamed `FunctionType` => `TypedFunctionType` and `UniversalFunctionType` => `FunctionType` ([#542](https://github.com/rokucommunity/brighterscript/pull/542))
173
+ ### Fixed
174
+ - Prevent undefined showing up in type tracking ([#543](https://github.com/rokucommunity/brighterscript/pull/543))
175
+ - Better handling of object types ([#544](https://github.com/rokucommunity/brighterscript/pull/544))
176
+
177
+
178
+
179
+ ## [0.46.0](https://github.com/rokucommunity/brighterscript/compare/v0.45.6...v0.46.0) - 2022-03-24
180
+ ### Changed
181
+ - refactored try-catch statement to make the expressions and bodies easier to access via plugins. [#514](https://github.com/rokucommunity/brighterscript/pull/514)
182
+
183
+
184
+
185
+ ## [1.0.0-alpha.17](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) - 2022-03-17
186
+ ### Added
187
+ - `TypeExpression` which will eventually make it easier to parse all types across the project. ([#507](https://github.com/rokucommunity/brighterscript/pull/507)
188
+ - support for multidimensional arrays ([#507](https://github.com/rokucommunity/brighterscript/pull/507)
189
+ - all changes from [v0.45.3](#0453---2022-02-25)
190
+ - all changes from [v0.45.4](#0454---2022-03-08)
191
+ - all changes from [v0.45.5](#0455---2022-03-10)
192
+ - all changes from [v0.45.6](#0456---2022-03-17)
193
+
194
+
195
+
196
+ ## [0.45.6](https://github.com/rokucommunity/brighterscript/compare/v0.45.5...v0.45.6) - 2022-03-17
197
+ ### Changed
198
+ - upgrade to [roku-deploy@3.5.4](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#354---2022-03-17) which fixed significant performance issues during globbing. ([roku-deploy#86](https://github.com/rokucommunity/roku-deploy/pull/86))
199
+ ### Fixed
200
+ - crash when checking for enums to transpile [#539](https://github.com/rokucommunity/brighterscript/pull/539)
201
+ - Transpile if statements as written [#537](https://github.com/rokucommunity/brighterscript/pull/537)
202
+ - Keep the original type case when transpiling. [#536](https://github.com/rokucommunity/brighterscript/pull/536)
203
+ - Show cli usage in plugins documentation
204
+
205
+
206
+
207
+ ## [0.45.5](https://github.com/rokucommunity/brighterscript/compare/v0.45.4...v0.45.5) - 2022-03-10
208
+ ### Fixed
209
+ - bug with typedefs and auto-generated class constructor functions [#535](https://github.com/rokucommunity/brighterscript/pull/535)
210
+
211
+
212
+
213
+ ## [0.45.4](https://github.com/rokucommunity/brighterscript/compare/v0.45.3...v0.45.4) - 2022-03-08
214
+ ### Fixed
215
+ - bug that wasn't computing ownScriptImports after calling `invalidateReferences()` [#529](https://github.com/rokucommunity/brighterscript/pull/529)
216
+ - bug with logger.time() not having accurate timings when run asynchronously [#532](https://github.com/rokucommunity/brighterscript/pull/532)
217
+
218
+
219
+
220
+ ## [0.45.3](https://github.com/rokucommunity/brighterscript/compare/v0.45.2...v0.45.3) - 2022-02-25
221
+ ### Fixed
222
+ - source map bug with plugins that used the AST node creation functions depending on `interpolatedRange`. [#528](https://github.com/rokucommunity/brighterscript/pull/528)
223
+
224
+
225
+
226
+ ## [1.0.0-alpha.16](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) - 2022-02-24
227
+ ### Added
228
+ - all changes from [v0.45.1](#0451---2022-02-16)
229
+ - all changes from [v0.45.2](#0452---2022-02-24)
230
+ ### Fixed
231
+ - incorrect diagnostics when passing functions as parameters. ([#516](https://github.com/rokucommunity/brighterscript/pull/516), [#517](https://github.com/rokucommunity/brighterscript/pull/517))
232
+
233
+
234
+
235
+ ## [0.45.2](https://github.com/rokucommunity/brighterscript/compare/v0.45.1...v0.45.2) - 2022-02-24
236
+ ### Changed
237
+ - add default token values in creators. [#520](https://github.com/rokucommunity/brighterscript/pull/520)
238
+ ### Fixed
239
+ - significant memory leak [#527](https://github.com/rokucommunity/brighterscript/pull/527)
240
+ - bug with transpiling empty for loop [#519](https://github.com/rokucommunity/brighterscript/pull/519)
241
+
242
+
243
+
244
+ ## [0.45.1](https://github.com/rokucommunity/brighterscript/compare/v0.45.0...v0.45.1) - 2022-02-16
245
+ ### Changed
246
+ - upgrade to [roku-deploy@3.5.3](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#353---2022-02-16) which fixed a missing typescript definition issue.
247
+
248
+
249
+
250
+ ## [1.0.0-alpha.15](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) - 2022-02-14
251
+ ### Added
252
+ - all changes from [v0.45.0](#0450---2022-02-11)
253
+
254
+
255
+
256
+ ## [0.45.0](https://github.com/rokucommunity/brighterscript/compare/v0.44.0...v0.45.0) - 2022-02-11
257
+ ### Added
258
+ - `enum` language feature ([#484](https://github.com/rokucommunity/brighterscript/pull/484))
259
+ - transpile override for plugins when providing AST edits. ([#511](https://github.com/rokucommunity/brighterscript/pull/511))
260
+ - `setFile` method to align with v1. ([#510](https://github.com/rokucommunity/brighterscript/pull/510))
261
+ ### Changed
262
+ - deprecated `addOrReplaceFile` method to align with v1. ([#510](https://github.com/rokucommunity/brighterscript/pull/510))
263
+ - internal `Cache` method now extends `Map` instead of keeping an internal map. ([#509](https://github.com/rokucommunity/brighterscript/pull/509))
264
+
265
+
266
+
267
+ ## [1.0.0-alpha.14](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) - 2022-02-08
268
+ ### Added
269
+ - array type support for parameters and return types ([#499](https://github.com/rokucommunity/brighterscript/pull/499))
270
+ - all changes from 0.43.0, 0.43.1, 0.44.0
271
+
272
+
273
+
274
+ ## [0.44.0](https://github.com/rokucommunity/brighterscript/compare/v0.43.1...v0.44.0) - 2022-02-08
275
+ ### Added
276
+ - `onScopeValidate` plugin event useful when plugins want to contribute scope validations ([#505](https://github.com/rokucommunity/brighterscript/pull/505))
277
+ ### Changed
278
+ - show plugin transpile modifications in the `getTranspiledFile` callback (used for "show preview" functionality in vscode) ([#502](https://github.com/rokucommunity/brighterscript/pull/502))
279
+ - make `Program.getFile` more flexible, and deprecate `Program.getFileByPkgPath`, `Program.getFileByPathAbsolute` ([#506](https://github.com/rokucommunity/brighterscript/pull/506))
280
+ - add `Program.getFiles` and deprecate `Program.getFilesByPkgPath` ([#506](https://github.com/rokucommunity/brighterscript/pull/506))
281
+ - move file validation plugin event emitting into `Program.validate()` which means you can't trigger those events by calling `File.validate()` anymore. ([#504](https://github.com/rokucommunity/brighterscript/pull/504))
282
+ - support generics for `Cache` class ([#503](https://github.com/rokucommunity/brighterscript/pull/503))
283
+ ### Fixed
284
+ - bug in hover showing required params as optional and optional params as required ([#501](https://github.com/rokucommunity/brighterscript/pull/501))
285
+
286
+
287
+
288
+ ## [0.43.1](https://github.com/rokucommunity/brighterscript/compare/v0.43.0...v0.43.1) - 2022-01-28
289
+ ### Fixed
290
+ - crash when hovering over global functions ([#497](https://github.com/rokucommunity/brighterscript/pull/497))
291
+
292
+
293
+
294
+ ## [0.43.0](https://github.com/rokucommunity/brighterscript/compare/v0.42.0...v0.43.0) - 2022-01-28
295
+ ### Added
296
+ - show function documentation when hovering over functions. ([#495](https://github.com/rokucommunity/brighterscript/pull/495))
297
+ - for plugin authors:
298
+ - added `beforeFileValidate` and `onFileValidate` plugin hooks ([#490](https://github.com/rokucommunity/brighterscript/pull/490))
299
+ - added `expressions` collection to `BrsFile.parser.references` which includes all the full expressions, which can be used instead of AST walking in many cases. ([#487](https://github.com/rokucommunity/brighterscript/pull/487))
300
+ ### Changed
301
+ - For plugin authors:
302
+ - move parse and validate events to `Program` class and out of `XmlFile` and `BrsFile`. This only impacts plugins that depend on the `afterFileParse`, `onFileValidate` and `afterFileValidate` events while also constructing those files with their constructors directly. ([#494](https://github.com/rokucommunity/brighterscript/pull/494))
303
+ - removed internal [barrels](https://github.com/basarat/typescript-book/blob/master/docs/tips/barrel.md). This means plugins can no longer do things like: `import { something} from 'brighterscript/some-path'`. All necessary exports can be done from the top-level brighterscript package directly. ([#492](https://github.com/rokucommunity/brighterscript/pull/492))
304
+ - use `Map` for `ClassValidator` class lookup instead of an object. ([#481](https://github.com/rokucommunity/brighterscript/pull/481))
305
+ ### Fixed
306
+ - bug preventing code to come after an interface statement. ([#493](https://github.com/rokucommunity/brighterscript/pull/493))
307
+ - don't crash on null options in `printDiagnostics`. ([3147202](https://github.com/rokucommunity/brighterscript/commit/3147202b948d08be198255c068f082857c9de1f0))
308
+
309
+
310
+
311
+ ## [1.0.0-alpha.13](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) - 2022-01-10
312
+ ### Added
313
+ - all changes from [v0.42.0](#0420---2022-01-10)
314
+
315
+
316
+
317
+ ## [0.42.0](https://github.com/rokucommunity/brighterscript/compare/v0.41.6...v0.42.0) - 2022-01-10
318
+ ### Added
319
+ - AST editing utility for transformations during between the begin and end transpile lifecycle events. See [the documentation](https://github.com/rokucommunity/brighterscript/blob/master/docs/plugins.md#modifying-code) for more info. ([#478](https://github.com/rokucommunity/brighterscript/pull/478))
320
+ ### Fixed
321
+ - bug in global function parameter checking that was not properly enforcing optional/required status for parameters. ([#479](https://github.com/rokucommunity/brighterscript/pull/479))
322
+
323
+
324
+
325
+ ## [0.41.6](https://github.com/rokucommunity/brighterscript/compare/v0.41.5...v0.41.6) - 2022-01-05
326
+ ### Fixed
327
+ - issue in the transpiled output of the null coalescing operator where plain variable references are not properly passed into the function. ([#474](https://github.com/rokucommunity/brighterscript/pull/474))
328
+
329
+
330
+
331
+ ## [0.41.5](https://github.com/rokucommunity/brighterscript/compare/v0.41.4...v0.41.5) - 2021-11-23
332
+ ### Fixed
333
+ - critical crash whenever a local variable had the same name as a javascript object function on the prototype (stuch as `constructor`). ([#469](https://github.com/rokucommunity/brighterscript/pull/469))
334
+
335
+
336
+
337
+ ## [0.41.4](https://github.com/rokucommunity/brighterscript/compare/v0.41.3...v0.41.4) - 2021-10-28
338
+ ### Fixed
339
+ - bug transpiling instant resume xml elements ([#465](https://github.com/rokucommunity/brighterscript/pull/465))
340
+
341
+
342
+
343
+ ## [0.41.3](https://github.com/rokucommunity/brighterscript/compare/v0.41.2...v0.41.3) - 2021-10-27
344
+ ### Changed
345
+ - upgrade to [roku-deploy@3.5.0](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#350---2021-10-27) which adds the ability to use negated non-rootDir top-level patterns in the files array ([#78](https://github.com/rokucommunity/roku-deploy/pull/78))
346
+ ### Fixed
347
+ - Allow diagnostic non-numeric disable code comments ([#463](https://github.com/rokucommunity/brighterscript/pull/463)).
348
+
349
+
350
+
351
+ ## [1.0.0-alpha.12](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) - 2021-10-17
352
+ ### Added
353
+ - all changes from [v0.41.2](#0411---2021-10-17)
354
+
355
+
356
+
357
+ ## [0.41.2](https://github.com/rokucommunity/brighterscript/compare/v0.41.1...v0.41.2) - 2021-10-17
358
+ ### Fixed
359
+ - crash when subclass field has same name as ancestor method ([#460](https://github.com/rokucommunity/brighterscript/pull/460)).
360
+
361
+
362
+
363
+ ## [v1.0.0-alpha.11](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) - 2021-10-12
364
+ ### Added
365
+ - all changes from [v0.41.1](#0411---2021-10-07)
366
+
367
+
368
+
369
+ ## [0.41.1](https://github.com/rokucommunity/brighterscript/compare/v0.41.0...v0.41.1) - 2021-10-07
370
+ ### Fixed
371
+ - parse issue with regex literals ([#458](https://github.com/rokucommunity/brighterscript/pull/458)).
372
+
373
+
374
+
375
+ ## [1.0.0-alpha.10](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) - 2021-09-27
376
+ ### Added
377
+ - all changes from [v0.41.0](#0410---2021-09-27)
378
+ ### Changed
379
+ - type system performance boost by caching symbol lookups for tokens ([#453](https://github.com/rokucommunity/brighterscript/pull/453))
380
+
381
+
382
+
383
+ ## [1.0.0-alpha.9](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) - 2021-09-08
384
+ ### Added
385
+ - type checking in classes, including validation of method calls and deep finding of types
386
+ - handle super.doSomething() calls in classes
387
+ ### Fixed
388
+ - issue with `m` and `m.top` code completion and validation
389
+ - issue finding properties of `m` in grandparents
390
+
391
+
392
+
393
+ ## [1.0.0-alpha.8] - 2021-08-02
394
+ [1.0.0-alpha.8]: https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.7...v1.0.0-alpha.8
395
+ ### Added
396
+ - all changes from [v0.40.0](#0400---2021-08-02)
397
+
398
+
399
+
400
+ ## [0.41.0](https://github.com/rokucommunity/brighterscript/compare/v0.40.1...v0.41.0) - 2021-09-27
401
+ ### Added
402
+ - Regex literal support in brighterscript ([#452](https://github.com/rokucommunity/brighterscript/pull/452)).
403
+
404
+
405
+
406
+ ## [0.40.1](https://github.com/rokucommunity/brighterscript/compare/v0.40.0...v0.40.1) - 2021-09-17
407
+ ### Changed
408
+ - install roku-deploy@3.4.2 which prevents deploy crashes when target Roku doesn't have an installed channel ([roku-deploy#65](https://github.com/rokucommunity/brighterscript/compare/v0.39.4...v0.40.0))
409
+
410
+
411
+
412
+ ## [0.40.0](https://github.com/rokucommunity/brighterscript/compare/v0.39.4...v0.40.0) - 2021-08-02
413
+ ### Added
414
+ - language support for Interface statements ([#426](https://github.com/rokucommunity/brighterscript/pull/426))
415
+ ### Changed
416
+ - cli prints the path of any loaded bsconfig.json on startup ([#434](https://github.com/rokucommunity/brighterscript/pull/434))
417
+
418
+
419
+
420
+ ## [0.39.4](https://github.com/rokucommunity/brighterscript/compare/v0.39.3...v0.39.4) - 2021-06-27
421
+ ### Fixed
422
+ - incorrect block range for inline if/then branch ([#424](https://github.com/rokucommunity/brighterscript/pull/424))
423
+ - extract associative array comma when parsing ([#427](https://github.com/rokucommunity/brighterscript/pull/424))
424
+ - allow up to 6 arguments in `CreateObject` function signature ([#430](https://github.com/rokucommunity/brighterscript/pull/430))
425
+ - add v30/bslCore library functions to global callables ([#433](https://github.com/rokucommunity/brighterscript/pull/433))
426
+
427
+
428
+
429
+ ## [0.39.3](https://github.com/rokucommunity/brighterscript/compare/v0.39.2...v0.39.3) - 2021-06-01
430
+ ### Changed
431
+ - upgraded to [roku-deploy@3.4.1](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#341---2021-06-01) which fixes bugs introduced in roku-deploy@3.4.0
432
+
433
+
434
+
435
+ ## [0.39.2](https://github.com/rokucommunity/brighterscript/compare/v0.39.1...v0.39.2) - 2021-05-28
436
+ ### Changed
437
+ - upgraded to [roku-deploy@3.4.0](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#340---2021-05-28) which brings significant zip speed improvements
438
+
439
+
440
+
441
+ ## [1.0.0-alpha.7] - 2021-05-17
442
+ [1.0.0-alpha.7]: https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.6...v1.0.0-alpha.7
443
+ ### Added
444
+ - all changes from [v0.39.2](#0390---2021-05-28)
445
+
446
+
447
+
448
+ ## [1.0.0-alpha.6] - 2021-05-17
449
+ [1.0.0-alpha.6]: https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.5...v1.0.0-alpha.6
450
+ ### Added
451
+ - all changes from [v0.39.1](#0390---2021-05-24)
452
+
453
+
454
+
455
+ ## [0.39.1](https://github.com/rokucommunity/brighterscript/compare/v0.39.0...v0.39.1) - 2021-05-24
456
+ ### Changed
457
+ - re-export `CodeActionKind` so plugins don't need to import from vscode-brightscript-language directly.
458
+ ### Fixed
459
+ - code action for "replace" tasks bug
460
+ - include missing information in the CodeAction construction
461
+
462
+
463
+
464
+ ## [1.0.0-alpha.5] - 2021-05-17
465
+ [1.0.0-alpha.5]: https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.4...v1.0.0-alpha.5
466
+ ### Added
467
+ - all changes from [v0.39.0](#0390---2021-05-18)
468
+ ### Changed
469
+ - Add location tracking (range property) to all SceneGraph/XML nodes. ([#400](https://github.com/rokucommunity/brighterscript/pull/400))
470
+ - Refactored SGComponent scripts, children, and interface properties into getter functions which are driven by the underlying XML AST. This means as you modify the AST, those getter functions will automatically reflect the changes. ([#400](https://github.com/rokucommunity/brighterscript/pull/400))
471
+ - Refactored SGInterface properties fields and functions to getter functions which are driven by the underlying XML AST. ([#400](https://github.com/rokucommunity/brighterscript/pull/400))
472
+ - Moved SGParser module functions onto the SGParser class itself to match the OO patterns in the rest of the project. ([#400](https://github.com/rokucommunity/brighterscript/pull/400))
473
+
474
+
475
+
476
+ ## [0.39.0](https://github.com/rokucommunity/brighterscript/compare/v0.38.2...v0.39.0) - 2021-05-18
477
+ ### Added
478
+ - semantic token support for plugins
479
+ - basic semantic tokens for `new` statements and namespace usage
480
+
481
+
482
+
483
+ ## [1.0.0-alpha.4] - 2021-05-17
484
+ [1.0.0-alpha.4]: https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.3...v1.0.0-alpha.4
485
+ ### Added
486
+ - all changes from [v0.38.2](#0380---2021-05-17)
487
+
488
+
489
+
490
+ ## [0.38.2](https://github.com/rokucommunity/brighterscript/compare/v0.38.1...v0.38.2) - 2021-05-17
491
+ ### Fixed
492
+ - language server crash when namespaced function or class didn't have a name ([#419](https://github.com/rokucommunity/brighterscript/pull/419))
493
+
494
+
495
+
496
+ ## [1.0.0-alpha.3]
497
+ [1.0.0-alpha.3]: https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.2...v1.0.0-alpha.3
498
+ ### Added
499
+ - all changes from [v0.38.1](#0380---2021-05-14)
500
+ ### Changed
501
+ - rename `Program.addOrReplaceFile` to `Program.setFile` ([#405](https://github.com/rokucommunity/brighterscript/pull/405))
502
+ - Unified global callables and function type param definitions ([#417](https://github.com/rokucommunity/brighterscript/pull/417))
503
+ - Fix issue with global `Val` function where there were two global functions with same name and different params and return types ([#417](https://github.com/rokucommunity/brighterscript/pull/417))
504
+ - move token-specific functions into `Parser.ts` ([#407](https://github.com/rokucommunity/brighterscript/pull/407))
505
+
506
+
507
+
508
+ ## [0.38.1](https://github.com/rokucommunity/brighterscript/compare/v0.38.0...v0.38.1) - 2021-05-14
509
+ ### Changed
510
+ - SOURCE_FILE_PATH and SOURCE_LOCATION source literals are now string concatenations in order to avoid triggering Roku's static analysis rule against `file:/` protocol strings ([#415](https://github.com/rokucommunity/brighterscript/pull/415))
511
+ ### Fixed
512
+ - ParseJson function signature to include second parameter ([#418](https://github.com/rokucommunity/brighterscript/pull/418))
513
+ - bsconfig.schema.json support for string diagnostic codes ([#416](https://github.com/rokucommunity/brighterscript/pull/416))
514
+ - upgrade chokidar to add `--watch` cli support for M1 mac computers ([#386](https://github.com/rokucommunity/brighterscript/pull/386))
515
+ - several dependency vulnerability fixes ([#413](https://github.com/rokucommunity/brighterscript/pull/413), [#410](https://github.com/rokucommunity/brighterscript/pull/410), [#411](https://github.com/rokucommunity/brighterscript/pull/411))
516
+
517
+
518
+
9
519
  ## [1.0.0-alpha.2]
10
520
  [1.0.0-alpha.2]: https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.1...v1.0.0-alpha.2
11
- ### Add
521
+ ### Added
12
522
  - all changes from [v0.38.0](#0380---2021-05-04)
13
523
  ### Changed
14
524
  - Rename pathAbsolute to srcPath ([#399](https://github.com/rokucommunity/brighterscript/pull/399))
@@ -18,8 +528,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
528
 
19
529
 
20
530
 
21
- ## [0.38.0] - 2021-05-04
22
- ### Add
531
+ ## [0.38.0](https://github.com/rokucommunity/brighterscript/compare/v0.37.4...v0.38.0) - 2021-05-04
532
+ ### Added
23
533
  - warning for mismatched class method accessibility ([#402](https://github.com/rokucommunity/brighterscript/pull/402))
24
534
  - allow class field overrides in child classes as long as they are the same type ([#394](https://github.com/rokucommunity/brighterscript/pull/394))
25
535
 
@@ -42,39 +552,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
42
552
 
43
553
 
44
554
 
45
- ## [0.37.4] - 2021-04-20
555
+ ## [0.37.4](https://github.com/rokucommunity/brighterscript/compare/v0.37.3...v0.37.4) - 2021-04-20
46
556
  ### Fixed
47
557
  - bug validating namespace function calls ([#390](https://github.com/rokucommunity/brighterscript/pull/390))
48
558
 
49
559
 
50
560
 
51
- ## [0.37.3] - 2021-04-12
561
+ ## [0.37.3](https://github.com/rokucommunity/brighterscript/compare/v0.37.2...v0.37.3) - 2021-04-12
52
562
  ### Fixed
53
563
  - bug where having multiple components with the same name would cause issues in the program, normally requiring a language server or watcher restart. ([#353](https://github.com/rokucommunity/brighterscript/pull/353))
54
564
  - bug in xml file ignoring `needsTranspiled` flag when set by plugins ([#384](https://github.com/rokucommunity/brighterscript/pull/384))
55
565
 
56
566
 
57
567
 
58
- ## [0.37.2] - 2021-04-08
568
+ ## [0.37.2](https://github.com/rokucommunity/brighterscript/compare/v0.37.1...v0.37.2) - 2021-04-08
59
569
  ### Fixed
60
570
  - erraneous syntax issue when concatenating a template string and a regular string. ([#383](https://github.com/rokucommunity/brighterscript/pull/383))
61
571
  - prevent circular import causing stack overflow crash. ([#381](https://github.com/rokucommunity/brighterscript/pull/381))
62
572
 
63
573
 
64
574
 
65
- ## [0.37.1] - 2021-03-30
575
+ ## [0.37.1](https://github.com/rokucommunity/brighterscript/compare/v0.37.0...v0.37.1) - 2021-03-30
66
576
  ### Fixed
67
577
  - bug when transpiling print statements that wouldn't retain the existing separators (semicolon, comma, no separator) which all have unique uses ([#373](https://github.com/rokucommunity/brighterscript/pull/373))
68
578
 
69
579
 
70
580
 
71
- ## [0.37.0] - 2021-03-18
581
+ ## [0.37.0](https://github.com/rokucommunity/brighterscript/compare/v0.36.0...v0.37.0) - 2021-03-18
72
582
  ### Added
73
583
  - support for `bs:disable` comments in xml files ([#363](https://github.com/rokucommunity/brighterscript/pull/363))
74
584
 
75
585
 
76
586
 
77
- ## [0.36.0] - 2021-03-15
587
+ ## [0.36.0](https://github.com/rokucommunity/brighterscript/compare/v0.35.0...v0.36.0) - 2021-03-15
78
588
  ### Added
79
589
  - class import code actions ([#365](https://github.com/rokucommunity/brighterscript/pull/365))
80
590
  ### Changed
@@ -87,7 +597,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
87
597
 
88
598
 
89
599
 
90
- ## [0.35.0] - 2021-03-09
600
+ ## [0.35.0](https://github.com/rokucommunity/brighterscript/compare/v0.34.3...v0.35.0) - 2021-03-09
91
601
  ### Added
92
602
  - code actions for suggesting import statements in brighterscript files ([#347](https://github.com/rokucommunity/brighterscript/pull/347))
93
603
  ### Fixed
@@ -95,13 +605,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
95
605
 
96
606
 
97
607
 
98
- ## [0.34.3] -2021-03-05
608
+ ## [0.34.3](https://github.com/rokucommunity/brighterscript/compare/v0.34.2...v0.34.3) -2021-03-05
99
609
  ### Fixed
100
610
  - bug when transpiling bsc with custom function and parameter return types
101
611
 
102
612
 
103
613
 
104
- ## [0.34.2] - 2021-03-04
614
+ ## [0.34.2](https://github.com/rokucommunity/brighterscript/compare/v0.34.1...v0.34.2) - 2021-03-04
105
615
  ### Added
106
616
  - support for loading bslib without alias (i.e. `@rokucommunity/bslib`).
107
617
  ### Fixed
@@ -111,19 +621,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111
621
 
112
622
 
113
623
 
114
- ## [0.34.1] - 2021-03-02
624
+ ## [0.34.1](https://github.com/rokucommunity/brighterscript/compare/v0.34.0...v0.34.1) - 2021-03-02
115
625
  ### Fixed
116
626
  - syntax parsing bugs within single-line if statements
117
627
 
118
628
 
119
629
 
120
- ## [0.34.0] - 2021-02-28
630
+ ## [0.34.0](https://github.com/rokucommunity/brighterscript/compare/v0.33.0...v0.34.0) - 2021-02-28
121
631
  ### Added
122
632
  - language server file path completions inside strings that start with `pkg:` or `libpkg:`
123
633
 
124
634
 
125
635
 
126
- ## [0.33.0] - 2021-02-27
636
+ ## [0.33.0](https://github.com/rokucommunity/brighterscript/compare/v0.32.3...v0.33.0) - 2021-02-27
127
637
  ### Added
128
638
  - support for ropm version of bslib.([#334](https://github.com/rokucommunity/brighterscript/pull/334))
129
639
  ### Fixed
@@ -133,7 +643,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
133
643
 
134
644
 
135
645
 
136
- ## [0.32.3] - 2021-02-25
646
+ ## [0.32.3](https://github.com/rokucommunity/brighterscript/compare/v0.32.2...v0.32.3) - 2021-02-25
137
647
  ### Fixed
138
648
  - fix significant performance bug in diagnostic filtering
139
649
  - tweaks to the logging system to make `logLevel=verbose` less chatty
@@ -142,25 +652,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
142
652
 
143
653
 
144
654
 
145
- ## [0.32.2] - 2021-02-20
655
+ ## [0.31.2](https://github.com/rokucommunity/brighterscript/compare/v0.31.1...v0.31.2) - 2021-02-20
146
656
  ### Fixed
147
657
  - transpile bug when a template string starts with an expression ([#327](https://github.com/rokucommunity/brighterscript/pull/327))
148
-
149
-
150
-
151
- ## [0.31.2] - 2021-02-18
152
658
  ### Changed
153
- - parent class names in typedefs for class `extends` expressions now always include their full namespace name.
659
+ - when generating type definition files, include the namespace for every extends statement ([#324](https://github.com/rokucommunity/brighterscript/pull/324))
154
660
 
155
661
 
156
662
 
157
- ## [0.31.1] - 2021-02-18
663
+ ## [0.31.1](https://github.com/rokucommunity/brighterscript/compare/v0.31.0...v0.31.1) - 2021-02-18
158
664
  ### Fixed
159
665
  - prevent exception in codeAction functionality when file cannot be found in a `Program`
160
666
 
161
667
 
162
668
 
163
- ## [0.31.0] - 2021-02-17
669
+ ## [0.31.0](https://github.com/rokucommunity/brighterscript/compare/v0.30.9...v0.31.0) - 2021-02-17
164
670
  ### Added
165
671
  - plugin and language server support for [codeActions](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_codeAction)
166
672
  - codeAction to add missing `extends` attribute in components
@@ -170,7 +676,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170
676
 
171
677
 
172
678
 
173
- ## [0.30.9] - 2021-02-15
679
+ ## [0.30.9](https://github.com/rokucommunity/brighterscript/compare/v0.30.8...v0.30.9) - 2021-02-15
174
680
  ### Fixed
175
681
  - prevent excess validations when non-workspace files are changed ([#315](https://github.com/rokucommunity/brighterscript/pull/315))
176
682
  - catch errors when getting signatures ([#285](https://github.com/rokucommunity/brighterscript/pull/285))
@@ -178,7 +684,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
178
684
 
179
685
 
180
686
 
181
- ## [0.30.8] - 2021-02-12
687
+ ## [0.30.8](https://github.com/rokucommunity/brighterscript/compare/v0.30.7...v0.30.8) - 2021-02-12
182
688
  ### Changed
183
689
  - add additional logging in `Program.removeFile`
184
690
  ### Fixed
@@ -187,20 +693,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
187
693
 
188
694
 
189
695
 
190
- ## [0.30.7] - 2021-02-11
696
+ ## [0.30.7](https://github.com/rokucommunity/brighterscript/compare/v0.30.6...v0.30.7) - 2021-02-11
191
697
  ### Fixed
192
698
  - bug in `getSignatureHelp` that wouldn't work for function calls with no leading whitespace. ([#307](https://github.com/rokucommunity/brighterscript/issues/307))
193
699
 
194
700
 
195
701
 
196
- ## [0.30.6] - 2021-02-07
702
+ ## [0.30.6](https://github.com/rokucommunity/brighterscript/compare/v0.30.5...v0.30.6) - 2021-02-07
197
703
  ### Fixed
198
704
  - bad transpile for nested class method super calls
199
705
  - SceneGraph node attributes being wrongly removed when modifying attributes
200
706
 
201
707
 
202
708
 
203
- ## [0.30.5] - 2021-02-03
709
+ ## [0.30.5](https://github.com/rokucommunity/brighterscript/compare/v0.30.4...v0.30.5) - 2021-02-03
204
710
  ### Added
205
711
  - syntax support for dim statements
206
712
  - completion and code navigation for labels
@@ -209,33 +715,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
209
715
 
210
716
 
211
717
 
212
- ## [0.30.4] - 2021-02-02
718
+ ## [0.30.4](https://github.com/rokucommunity/brighterscript/compare/v0.30.3...v0.30.4) - 2021-02-02
213
719
  ### Fixed
214
720
  - fixed crash during validation caused by a missing function body when parsing malformed code
215
721
 
216
722
 
217
723
 
218
- ## [0.30.3] - 2021-02-01
724
+ ## [0.30.3](https://github.com/rokucommunity/brighterscript/compare/v0.30.2...v0.30.3) - 2021-02-01
219
725
  ### Fixed
220
726
  - performance issue when transpiling larger projects, even when no brighterscript code was used
221
727
 
222
728
 
223
729
 
224
- ## [0.30.2] - 2021-01-31
730
+ ## [0.30.2](https://github.com/rokucommunity/brighterscript/compare/v0.30.1...v0.30.2) - 2021-01-31
225
731
  ### Fixed
226
732
  - xml parse error crashing validation ((#294)[https://github.com/rokucommunity/brighterscript/pull/294])
227
733
  - better handling for `createStringLiteral` ((#292)[https://github.com/rokucommunity/brighterscript/pull/292])
228
734
 
229
735
 
230
736
 
231
- ## [0.30.1] - 2021-01-29
737
+ ## [0.30.1](https://github.com/rokucommunity/brighterscript/compare/v0.30.0...v0.30.1) - 2021-01-29
232
738
  ### Fixed
233
739
  - bug that would crash while transpiling if a script tag didn't have a `type` attribute
234
740
  - XML transpile now honors the `sourceMap` option
235
741
 
236
742
 
237
743
 
238
- ## [0.30.0] - 2021-01-26
744
+ ## [0.30.0](https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0) - 2021-01-26
239
745
  ### Added
240
746
  - null coalescing operator (see [the docs](https://github.com/rokucommunity/brighterscript/blob/master/docs/null-coalescing-operator.md) for more information)
241
747
  ### Fixed
@@ -243,13 +749,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
243
749
 
244
750
 
245
751
 
246
- ## [0.29.0] - 2021-01-25
752
+ ## [0.29.0](https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0) - 2021-01-25
247
753
  ### Added
248
754
  - ternary operator (see [the docs](https://github.com/rokucommunity/brighterscript/blob/master/docs/ternary-operator.md) for more information)
249
755
 
250
756
 
251
757
 
252
- ## [0.28.2] - 2021-01-22
758
+ ## [0.28.2](https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0) - 2021-01-22
253
759
  ### Changed
254
760
  - config loading functions from `util.ts` are now run synchronously
255
761
  ### Fixed
@@ -258,7 +764,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
258
764
 
259
765
 
260
766
 
261
- ## [0.28.1] - 2021-01-19
767
+ ## [0.28.1](https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0) - 2021-01-19
262
768
  ### Changed
263
769
  - (For plugin authors) refactored many async methods into sync methods to simplify file creation/management. ([#278](https://github.com/rokucommunity/brighterscript/pull/278))
264
770
  ### Fixed
@@ -267,7 +773,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
267
773
 
268
774
 
269
775
 
270
- ## [0.28.0] - 2021-01-16
776
+ ## [0.28.0](https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0) - 2021-01-16
271
777
  ### Added
272
778
  - annotation support for classes and class methods ([#270](https://github.com/rokucommunity/brighterscript/pull/270))
273
779
  ### fixed
@@ -275,13 +781,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
275
781
 
276
782
 
277
783
 
278
- ## [0.27.0] - 2021-01-15
784
+ ## [0.27.0](https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0) - 2021-01-15
279
785
  ### Changed
280
786
  - plugin system changed to require a factory function instead of a singleton object ([#272](https://github.com/rokucommunity/brighterscript/pull/272))
281
787
 
282
788
 
283
789
 
284
- ## [0.26.0] - 2021-01-14
790
+ ## [0.26.0](https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0) - 2021-01-14
285
791
  ### Added
286
792
  - proper XML AST support
287
793
  - component interface validation
@@ -289,25 +795,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
289
795
 
290
796
 
291
797
 
292
- ## [0.25.0] - 2021-01-12
798
+ ## [0.25.0](https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0) - 2021-01-12
293
799
  ### Added
294
800
  - support for passing custom types as function parameters and return types ([#262](https://github.com/rokucommunity/brighterscript/issues/262))
295
801
 
296
802
 
297
803
 
298
- ## [0.24.2] - 2021-01-11
804
+ ## [0.24.2](https://github.com/rokucommunity/brighterscript/compare/v0.24.1...v0.24.2) - 2021-01-11
299
805
  ### Fixed
300
806
  - bug with transpiled child classes causing on-device stack overflows ([#267](https://github.com/rokucommunity/brighterscript/issues/267))
301
807
 
302
808
 
303
809
 
304
- ## [0.24.1] - 2021-01-09
810
+ ## [0.24.1](https://github.com/rokucommunity/brighterscript/compare/v0.24.0...v0.24.1) - 2021-01-09
305
811
  ### Changed
306
812
  - upgraded to [roku-deploy@3.2.4](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#324---2021-01-08)
307
813
 
308
814
 
309
815
 
310
- ## [0.24.0] - 2021-01-08
816
+ ## [0.24.0](https://github.com/rokucommunity/brighterscript/compare/v0.23.2...v0.24.0) - 2021-01-08
311
817
  ### Added
312
818
  - `sourceMap` option to enable/disable generating sourcemaps
313
819
  ### Changed
@@ -315,14 +821,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
315
821
 
316
822
 
317
823
 
318
- ## [0.23.2] - 2020-01-06
824
+ ## [0.23.2](https://github.com/rokucommunity/brighterscript/compare/v0.23.1...v0.23.2) - 2020-01-06
319
825
  ### Fixed
320
826
  - `isLiteralInvalid` was causing infinite recursion.
321
827
  - lock `vscode-languageserver-protocol` package version to prevent issues with vscode not following semantic versioning.
322
828
 
323
829
 
324
830
 
325
- ## [0.23.1] - 2020-12-22
831
+ ## [0.23.1](https://github.com/rokucommunity/brighterscript/compare/v0.23.0...v0.23.1) - 2020-12-22
326
832
  ### Changed
327
833
  - renamed `Scope.getFiles()` to `Scope.getAllFiles()` and added a new function called `Scope.getOwnFiles()`
328
834
  ### Fixed
@@ -330,7 +836,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
330
836
 
331
837
 
332
838
 
333
- ## [0.23.0] - 2020-12-18
839
+ ## [0.23.0](https://github.com/rokucommunity/brighterscript/compare/v0.22.1...v0.23.0) - 2020-12-18
334
840
  ### Changed
335
841
  - AST parser refactoring ([#244](https://github.com/rokucommunity/brighterscript/pull/244))
336
842
  - Make `ElseIf` into an `ElseIfStatement`
@@ -345,19 +851,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
345
851
 
346
852
 
347
853
 
348
- ## [0.22.1] - 2020-12-14
854
+ ## [0.22.1](https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1) - 2020-12-14
349
855
  ### Fixed
350
856
  - small bug introduced by vscode-languageserver causing crashes anytime negative range values are provided.
351
857
 
352
858
 
353
859
 
354
- ## [0.22.0] - 2020-11-23
860
+ ## [0.22.0](https://github.com/rokucommunity/brighterscript/compare/v0.21.0...v0.22.0) - 2020-11-23
355
861
  ### Added
356
862
  - `try/catch` and `throw` syntax support [#218](https://github.com/rokucommunity/brighterscript/issues/218)
357
863
 
358
864
 
359
865
 
360
- ## [0.21.0] - 2020-11-19
866
+ ## [0.21.0](https://github.com/rokucommunity/brighterscript/compare/v0.20.1...v0.21.0) - 2020-11-19
361
867
  ### Added
362
868
  - Catch when local variables and scope functions have the same name as a class. ([#246](https://github.com/rokucommunity/brighterscript/pull/246))
363
869
  - Catch when functions use keyword names ([#247](https://github.com/rokucommunity/brighterscript/pull/247))
@@ -373,20 +879,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
373
879
  - remove eliminated `BrsType` items from `reflection.ts`.
374
880
 
375
881
 
376
- ## [0.20.1] - 2020-11-16
882
+ ## [0.20.1](https://github.com/rokucommunity/brighterscript/compare/v0.20.0...v0.20.1) - 2020-11-16
377
883
  ### Changed
378
884
  - load plugins relatively to the project ([#242](https://github.com/rokucommunity/brighterscript/pull/242))
379
885
  - modified reflection utilities so they are compatible with TS strict null checks ([#243](https://github.com/rokucommunity/brighterscript/pull/243))
380
886
 
381
887
 
382
888
 
383
- ## [0.20.0] - 2020-11-13
889
+ ## [0.20.0](https://github.com/rokucommunity/brighterscript/compare/v0.19.0...v0.20.0) - 2020-11-13
384
890
  ### Added
385
891
  - more language server features: onWorkspaceSymbol, onSignatureHelp, onDocumentSymbol, onReferences, improve onDefinition ([#191](https://github.com/rokucommunity/brighterscript/pull/191))
386
892
 
387
893
 
388
894
 
389
- ## [0.19.0] - 2020-11-04
895
+ ## [0.19.0](https://github.com/rokucommunity/brighterscript/compare/v0.18.2...v0.19.0) - 2020-11-04
390
896
  ### Changed
391
897
  - `emitDefinitions` now defaults to `false` (it previously defaulted to `true`)
392
898
  ### Fixed
@@ -394,13 +900,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
394
900
 
395
901
 
396
902
 
397
- ## [0.18.2] - 2020-11-2
903
+ ## [0.18.2](https://github.com/rokucommunity/brighterscript/compare/v0.18.1...v0.18.2) - 2020-11-2
398
904
  ### Fixed
399
905
  - support on-demand parse for typedef-shadowed files ([#237](https://github.com/rokucommunity/brighterscript/pull/237))
400
906
 
401
907
 
402
908
 
403
- ## [0.18.1] - 2020-10-30
909
+ ## [0.18.1](https://github.com/rokucommunity/brighterscript/compare/v0.18.0...v0.18.1) - 2020-10-30
404
910
  ### Fixed
405
911
  - exclude bs1100 for typedef files (`Missing "super()" call in class constructor method.`)
406
912
  - fix some invalid class field types in typedef files
@@ -408,25 +914,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
408
914
 
409
915
 
410
916
 
411
- ## [0.18.0] - 2020-10-30
917
+ ## [0.18.0](https://github.com/rokucommunity/brighterscript/compare/v0.17.0...v0.18.0) - 2020-10-30
412
918
  ### Added
413
919
  - support for consuming and producing type definitions. ([188](https://github.com/rokucommunity/brighterscript/pull/188))
414
920
 
415
921
 
416
922
 
417
- ## [0.17.0] - 2020-10-27
923
+ ## [0.17.0](https://github.com/rokucommunity/brighterscript/compare/v0.16.12...v0.17.0) - 2020-10-27
418
924
  ### Added
419
925
  - Annotation syntax and AST support ([#234](https://github.com/rokucommunity/brighterscript/pull/234))
420
926
 
421
927
 
422
928
 
423
- ## [0.16.12] - 2020-10-21
929
+ ## [0.16.12](https://github.com/rokucommunity/brighterscript/compare/v0.16.11...v0.16.12) - 2020-10-21
424
930
  ### Fixed
425
931
  - parser bug when there was a trailing colon after `for` or `while` loop statements ([#230](https://github.com/rokucommunity/brighterscript/pull/230))
426
932
 
427
933
 
428
934
 
429
- ## [0.16.11] - 2020-10-20
935
+ ## [0.16.11](https://github.com/rokucommunity/brighterscript/compare/v0.16.10...v0.16.11 - 2020-10-20
430
936
  ### Fixed
431
937
  - bug when using single quotes in an xml script tag
432
938
  ### Changed
@@ -434,14 +940,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
434
940
 
435
941
 
436
942
 
437
- ## [0.16.10] - 2020-10-20
943
+ ## [0.16.10](https://github.com/rokucommunity/brighterscript/compare/v0.16.9...v0.16.10) - 2020-10-20
438
944
  ### Fixed
439
945
  - prevent crash when a callable has the same name as a javascript reserved name ([#226](https://github.com/rokucommunity/brighterscript/pull/226))
440
946
  - prevent crash when `import` statement is malformed ([#224](https://github.com/rokucommunity/brighterscript/pull/224))
441
947
 
442
948
 
443
949
 
444
- ## [0.16.9] - 2020-10-18
950
+ ## [0.16.9](https://github.com/rokucommunity/brighterscript/compare/v0.16.8...v0.16.9) - 2020-10-18
445
951
  ### Fixed
446
952
  - reduce language server throttle for validation and parsing now that those have improved performance.
447
953
  - massively improve validation performance by refactoring `getFileByPkgPath`
@@ -450,33 +956,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
450
956
 
451
957
 
452
958
 
453
- ## [0.16.8] - 2020-10-15
959
+ ## [0.16.8](https://github.com/rokucommunity/brighterscript/compare/v0.16.7...v0.16.8) - 2020-10-15
454
960
  ### Fixed
455
961
  - bug when printing diagnostics that would crash if the contents were missing (like for in-memory-only files injected by plugins) ([#217](https://github.com/rokucommunity/brighterscript/pull/217))
456
962
  - Drop expensive AST walking for collecting property names and instead collect them as part of parsing
457
963
 
458
964
 
459
965
 
460
- ## [0.16.7] - 2020-10-13
966
+ ## [0.16.7](https://github.com/rokucommunity/brighterscript/compare/v0.16.6...v0.16.7) - 2020-10-13
461
967
  ### Fixed
462
968
  - bug when finding `bsconfig.json` that would use the wrong cwd in multi-workspace language server situations.
463
969
  - bug when transpiling in-memory-only files. ([#212](https://github.com/rokucommunity/brighterscript/pull/212))
464
970
 
465
971
 
466
972
 
467
- ## [0.16.6] - 2020-10-13
973
+ ## [0.16.6](https://github.com/rokucommunity/brighterscript/compare/v0.16.5...v0.16.6) - 2020-10-13
468
974
  ### Fixed
469
975
  - quirk in the GitHub actions workflow that didn't publish the correct code.
470
976
 
471
977
 
472
978
 
473
- ## [0.16.5] - 2020-10-13
979
+ ## [0.16.5](https://github.com/rokucommunity/brighterscript/compare/v0.16.4...v0.16.5) - 2020-10-13
474
980
  ### Fixed
475
981
  - performance issue during the parse phase. We now defer certain collections until needed. ([#210](https://github.com/rokucommunity/brighterscript/pull/210))
476
982
 
477
983
 
478
984
 
479
- ## [0.16.4] - 2020-10-12
985
+ ## [0.16.4](https://github.com/rokucommunity/brighterscript/compare/v0.16.3...v0.16.4) - 2020-10-12
480
986
  ### Changed
481
987
  - LanguageServer now sends a _diff_ of diagnostics for files, instead of the entire project's diagnostics every time. ([#204](https://github.com/rokucommunity/brighterscript/pull/204))
482
988
  ### Fixed
@@ -485,7 +991,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
485
991
 
486
992
 
487
993
 
488
- ## [0.16.3] - 2020-10-11
994
+ ## [0.16.3](https://github.com/rokucommunity/brighterscript/compare/v0.16.2...v0.16.3) - 2020-10-11
489
995
  ### Changed
490
996
  - Add generic type parameter for `Program` add functions.
491
997
  - Export `BscType` type to simplify `BrsFile | XmlFile` usage everywhere.
@@ -494,13 +1000,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
494
1000
 
495
1001
 
496
1002
 
497
- ## [0.16.2] - 2020-10-09
1003
+ ## [0.16.2](https://github.com/rokucommunity/brighterscript/compare/v0.16.1...v0.16.2) - 2020-10-09
498
1004
  ### Fixed
499
1005
  - critical bug in diagnostic printing that would crash the program if a diagnostic was missing a valid range.
500
1006
 
501
1007
 
502
1008
 
503
- ## [0.16.1] - 2020-10-03
1009
+ ## [0.16.1](https://github.com/rokucommunity/brighterscript/compare/v0.16.0...v0.16.1) - 2020-10-03
504
1010
  ### Changed
505
1011
  - rename `isEscapedCharCodeLiteral` to `isEscapedCharCodeLiteralExpression` to match other expression class names
506
1012
  - rename `FunctionParameter` to `FunctionParameterExpression` to match other expression class names
@@ -511,7 +1017,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
511
1017
 
512
1018
 
513
1019
 
514
- ## [0.16.0] - 2020-10-02
1020
+ ## [0.16.0](https://github.com/rokucommunity/brighterscript/compare/v0.15.2...v0.16.0) - 2020-10-02
515
1021
  ### Added
516
1022
  - `Expression.walk` and `Statement.walk` functions which provide shallow or deep walking of the AST
517
1023
  - Many `ast` reflection methods to be used instead of `instanceof`.
@@ -524,38 +1030,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
524
1030
 
525
1031
 
526
1032
 
527
- ## [0.15.2] - 2020-10-01
1033
+ ## [0.15.2](https://github.com/rokucommunity/brighterscript/compare/v0.15.1...v0.15.2) - 2020-10-01
528
1034
  ### Fixed
529
1035
  - Bug in component validation that would throw errors if component name was undefined (generally due to an XML parse error). ([#194](https://github.com/rokucommunity/brighterscript/pull/194))
530
1036
 
531
1037
 
532
1038
 
533
- ## [0.15.1] - 2020-09-30
1039
+ ## [0.15.1](https://github.com/rokucommunity/brighterscript/compare/v0.15.0...v0.15.1) - 2020-09-30
534
1040
  ### Fixed
535
1041
  - improved performance in the lexer and parser
536
1042
  - potential for accidentally changing `cwd` during bsconfig resolving
537
1043
 
538
1044
 
539
1045
 
540
- ## [0.15.0] - 2020-09-18
1046
+ ## [0.15.0](https://github.com/rokucommunity/brighterscript/compare/v0.14.0...v0.15.0) - 2020-09-18
541
1047
  ### Added
542
1048
  - plugin API to allow visibility into the various compiler phases. This is currently in alpha. ([#170](https://github.com/rokucommunity/brighterscript/pull/170))
543
1049
 
544
1050
 
545
1051
 
546
- ## [0.14.0] - 2020-09-04
1052
+ ## [0.14.0](https://github.com/rokucommunity/brighterscript/compare/v0.13.2...v0.14.0) - 2020-09-04
547
1053
  ### Changed
548
1054
  - Add error diagnostic BS1115 which flags duplicate component names [#186](https://github.com/rokucommunity/brighterscript/pull/186)
549
1055
 
550
1056
 
551
1057
 
552
- ## [0.13.2] - 2020-08-31
1058
+ ## [0.13.2](https://github.com/rokucommunity/brighterscript/compare/v0.13.1...v0.13.2) - 2020-08-31
553
1059
  ### Changed
554
1060
  - Upgraded BS1104 to error (previously a warning) and refined the messaging.
555
1061
 
556
1062
 
557
1063
 
558
- ## [0.13.1] - 2020-08-14
1064
+ ## [0.13.1](https://github.com/rokucommunity/brighterscript/compare/v0.13.0...v0.13.1) - 2020-08-14
559
1065
  ### Changed
560
1066
  - upgraded to [roku-deploy@3.2.3](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#323---2020-08-14)
561
1067
  - throw exception when copying to staging folder and `rootDir` does not exist in the file system
@@ -563,26 +1069,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
563
1069
 
564
1070
 
565
1071
 
566
- ## [0.13.0] - 2020-08-10
1072
+ ## [0.13.0](https://github.com/rokucommunity/brighterscript/compare/v0.12.4...v0.13.0) - 2020-08-10
567
1073
  ### Added
568
1074
  - ability to mark the `extends` and `project` options in `bsconfig.json`, API and CLI as optional.
569
1075
 
570
1076
 
571
1077
 
572
- ## [0.12.4] - 2020-08-06
1078
+ ## [0.12.4](https://github.com/rokucommunity/brighterscript/compare/v0.12.3...v0.12.4) - 2020-08-06
573
1079
  ### Fixed
574
1080
  - bug in cli that wouldn't properly read bsconfig values. [#167](https://github.com/rokucommunity/brighterscript/issues/167)
575
1081
  - bug in cli that doesn't use `retain-staging-folder` argument properly. [#168](https://github.com/rokucommunity/brighterscript/issues/168)
576
1082
 
577
1083
 
578
1084
 
579
- ## [0.12.3] - 2020-08-03
1085
+ ## [0.12.3](https://github.com/rokucommunity/brighterscript/compare/v0.12.2...v0.12.3) - 2020-08-03
580
1086
  ### Fixed
581
1087
  - bug in the language server that would provide stale completions due to the file throttling introduced in v0.11.2. Now the language server will wait for the throttled parsing to complete before serving completion results.
582
1088
 
583
1089
 
584
1090
 
585
- ## [0.12.2] - 2020-07-16
1091
+ ## [0.12.2](https://github.com/rokucommunity/brighterscript/compare/v0.12.1...v0.12.2) - 2020-07-16
586
1092
  ### Added
587
1093
  - Expose `ProgramBuilder.transpile()` method to make it easier for tools to transpile programmatically. [#154](https://github.com/rokucommunity/brighterscript/issues/154)
588
1094
  ### Fixed
@@ -590,7 +1096,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
590
1096
 
591
1097
 
592
1098
 
593
- ## [0.12.1] - 2020-07-15
1099
+ ## [0.12.1](https://github.com/rokucommunity/brighterscript/compare/v0.12.0...v0.12.1) - 2020-07-15
594
1100
  ### Changed
595
1101
  - upgraded to [roku-deploy@3.2.2](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#322---2020-07-14)
596
1102
  ### Fixed
@@ -598,7 +1104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
598
1104
 
599
1105
 
600
1106
 
601
- ## [0.12.0] - 2020-07-09
1107
+ ## [0.12.0](https://github.com/rokucommunity/brighterscript/compare/v0.11.2...v0.12.0) - 2020-07-09
602
1108
  ### Added
603
1109
  - `diagnosticLevel` option to limit/control the noise in the console diagnostics
604
1110
  ### Changed
@@ -610,7 +1116,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
610
1116
 
611
1117
 
612
1118
 
613
- ## [0.11.2] - 2020-07-09
1119
+ ## [0.11.2](https://github.com/rokucommunity/brighterscript/compare/v0.11.1...v0.11.2) - 2020-07-09
614
1120
  ### Changed
615
1121
  - add 350ms debounce in LanguageServer `onDidChangeWatchedFiles` to increase performance by reducing the number of times a file is parsed and validated.
616
1122
  ### Fixed
@@ -620,7 +1126,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
620
1126
 
621
1127
 
622
1128
 
623
- ## [0.11.1] - 2020-07-07
1129
+ ## [0.11.1](https://github.com/rokucommunity/brighterscript/compare/v0.11.0...v0.11.1) - 2020-07-07
624
1130
  ### Added
625
1131
  - diagnostic for unknown file reference in import statements ([#139](https://github.com/rokucommunity/brighterscript/pull/139))
626
1132
  ### Changed
@@ -633,7 +1139,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
633
1139
 
634
1140
 
635
1141
 
636
- ## [0.11.0] - 2020-07-06
1142
+ ## [0.11.0](https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.11.0) - 2020-07-06
637
1143
  ### Added
638
1144
  - [Source literals feature](https://github.com/rokucommunity/brighterscript/blob/master/docs/source-literals.md) which adds new literals such as `SOURCE_FILE_PATH`, `SOURCE_LINE_NUM`, `FUNCTION_NAME`, and more. ([#13](https://github.com/rokucommunity/brighterscript/issues/13))
639
1145
  - `sourceRoot` config option to fix sourcemap paths for projects that use a temporary staging folder before calling the BrighterScript compiler. ([#134](https://github.com/rokucommunity/brighterscript/commit/e5b73ca37016d5015a389257fb259573c4721e7a))
@@ -643,18 +1149,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
643
1149
 
644
1150
 
645
1151
 
646
- ## [0.10.11] - 2020-07-05
1152
+ ## [0.10.11](https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.10.11) - 2020-07-05
647
1153
  - Fix bug that would fail to copy files to staging without explicitly specifying `stagingFolderpath`. [#129](https://github.com/rokucommunity/brighterscript/issues/129)
648
1154
 
649
1155
 
650
1156
 
651
- ## [0.10.10] - 2020-06-12
1157
+ ## [0.10.10](https://github.com/rokucommunity/brighterscript/compare/v0.10.9...v0.10.10) - 2020-06-12
652
1158
  ### Fixed
653
1159
  - include the missing `bslib.brs` file in the npm package which was causing errors during transpile.
654
1160
 
655
1161
 
656
1162
 
657
- ## [0.10.9] 2020-06-12
1163
+ ## [0.10.9](https://github.com/rokucommunity/brighterscript/compare/v0.10.8...v0.10.9) 2020-06-12
658
1164
  ### Added
659
1165
  - bslib.brs gets copied to `pkg:/source` and added as an import to every component on transpile.
660
1166
  - several timing logs under the `"info"` log level.
@@ -666,32 +1172,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
666
1172
 
667
1173
 
668
1174
 
669
- ## [0.10.8] - 2020-06-09
1175
+ ## [0.10.8](https://github.com/rokucommunity/brighterscript/compare/v0.10.7...v0.10.8) - 2020-06-09
670
1176
  ### Fixed
671
1177
  - Allow leading spcaes for `bs:disable-line` and `bs:disable-next-line` comments ([#108](https://github.com/rokucommunity/brighterscript/pull/108))
672
1178
 
673
1179
 
674
1180
 
675
- ## [0.10.7] - 2020-06-08
1181
+ ## [0.10.7](https://github.com/rokucommunity/brighterscript/compare/v0.10.6...v0.10.7) - 2020-06-08
676
1182
  ### Fixed
677
1183
  - bug in cli that was always returning a nonzero error code
678
1184
 
679
1185
 
680
1186
 
681
- ## [0.10.6] - 2020-06-05
1187
+ ## [0.10.6](https://github.com/rokucommunity/brighterscript/compare/v0.10.5...v0.10.6) - 2020-06-05
682
1188
  ### Fixed
683
1189
  - incorrect definition for global `Left()` function. ([#100](https://github.com/rokucommunity/brighterscript/issues/100))
684
1190
  - missing definition for global `Tab()` and `Pos()` functions ([#101](https://github.com/rokucommunity/brighterscript/issues/101))
685
1191
 
686
1192
 
687
1193
 
688
- ## [0.10.5] - 2020-06-04
1194
+ ## [0.10.5](https://github.com/rokucommunity/brighterscript/compare/v0.10.4...v0.10.5) - 2020-06-04
689
1195
  ### Changed
690
1196
  - added better logging for certain critical language server crashes
691
1197
 
692
1198
 
693
1199
 
694
- ## [0.10.4] - 2020-05-28
1200
+ ## [0.10.4](https://github.com/rokucommunity/brighterscript/compare/v0.10.3...v0.10.4) - 2020-05-28
695
1201
  ### Fixed
696
1202
  - bug where assigning a namespaced function to a variable wasn't properly transpiling the dots to underscores (fixes [#91](https://github.com/rokucommunity/brighterscript/issues/91))
697
1203
  - flag parameter with same name as namespace
@@ -700,14 +1206,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
700
1206
 
701
1207
 
702
1208
 
703
- ## [0.10.3] - 2020-05-27
1209
+ ## [0.10.3](https://github.com/rokucommunity/brighterscript/compare/v0.10.2...v0.10.3) - 2020-05-27
704
1210
  ### Changed
705
1211
  - tokenizing a string with no closing quote will now include all of the text until the end of the line.
706
1212
  - language server `TranspileFile` command now waits until the program is finished building before trying to transpile.
707
1213
 
708
1214
 
709
1215
 
710
- ## [0.10.2] - 2020-05-23
1216
+ ## [0.10.2](https://github.com/rokucommunity/brighterscript/compare/v0.10.1...v0.10.2) - 2020-05-23
711
1217
  ### Added
712
1218
  - language server command `TranspileFile` which will return the transpiled contents of the requested file.
713
1219
  ### Fixed
@@ -716,7 +1222,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
716
1222
 
717
1223
 
718
1224
 
719
- ## [0.10.1] - 2020-05-22
1225
+ ## [0.10.1](https://github.com/rokucommunity/brighterscript/compare/v0.10.0...v0.10.1) - 2020-05-22
720
1226
  ### Fixed
721
1227
  - transpile bug for compound assignment statements (such as `+=`, `-=`) ([#87](https://github.com/rokucommunity/brighterscript/issues/87))
722
1228
  - transpile bug that was inserting function parameter types before default values ([#88](https://github.com/rokucommunity/brighterscript/issues/88))
@@ -724,13 +1230,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
724
1230
 
725
1231
 
726
1232
 
727
- ## [0.10.0] - 2020-05-19
1233
+ ## [0.10.0](https://github.com/rokucommunity/brighterscript/compare/v0.9.8...v0.10.0) - 2020-05-19
728
1234
  ### Added
729
1235
  - new callfunc operator.
730
1236
 
731
1237
 
732
1238
 
733
- ## [0.9.8] - 2020-05-16
1239
+ ## [0.9.8](https://github.com/rokucommunity/brighterscript/compare/v0.9.7...v0.9.8) - 2020-05-16
734
1240
  ### Changed
735
1241
  - the inner event system handling file changes. This should fix several race conditions causing false negatives during CLI runs.
736
1242
  ### Fixed
@@ -738,7 +1244,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
738
1244
 
739
1245
 
740
1246
 
741
- ## [0.9.7] - 2020-05-14
1247
+ ## [0.9.7](https://github.com/rokucommunity/brighterscript/compare/v0.9.6...v0.9.7) - 2020-05-14
742
1248
  ### Changed
743
1249
  - TypeScript target to "ES2017" which provides a significant performance boost in lexer (~30%) and parser (~175%)
744
1250
  ### Fixed
@@ -748,7 +1254,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
748
1254
 
749
1255
 
750
1256
 
751
- ## [0.9.6] - 2020-05-11
1257
+ ## [0.9.6](https://github.com/rokucommunity/brighterscript/compare/v0.9.5...v0.9.6) - 2020-05-11
752
1258
  ### Added
753
1259
  - `logLevel` option from the bsconfig.json and command prompt that allows specifying how much detain the logging should contain.
754
1260
  - additional messages during cli run
@@ -760,7 +1266,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
760
1266
 
761
1267
 
762
1268
 
763
- ## [0.9.5] - 2020-05-06
1269
+ ## [0.9.5](https://github.com/rokucommunity/brighterscript/compare/v0.9.4...v0.9.5) - 2020-05-06
764
1270
  ### Added
765
1271
  - new config option called `showDiagnosticsInConsole` which disables printing diagnostics to the console
766
1272
  ### Fixed
@@ -770,7 +1276,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
770
1276
 
771
1277
 
772
1278
 
773
- ## [0.9.4] - 2020-05-05
1279
+ ## [0.9.4](https://github.com/rokucommunity/brighterscript/compare/v0.9.3...v0.9.4) - 2020-05-05
774
1280
  ### Added
775
1281
  - diagnostic for detecting unnecessary script imports when `autoImportComponentScript` is enabled
776
1282
  ### Changed
@@ -783,7 +1289,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
783
1289
 
784
1290
 
785
1291
 
786
- ## [0.9.3] - 2020-05-04
1292
+ ## [0.9.3](https://github.com/rokucommunity/brighterscript/compare/v0.9.2...v0.9.3) - 2020-05-04
787
1293
  ### Changed
788
1294
  - do not show BRS1013 for standalone files ([#72](https://github.com/rokucommunity/brighterscript/issues/72))
789
1295
  - BS1011 (same name as global function) is no longer shown for local variables that are not of type `function` ([#70](https://github.com/rokucommunity/brighterscript/issues/70))
@@ -792,7 +1298,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
792
1298
 
793
1299
 
794
1300
 
795
- ## [0.9.2] - 2020-05-02
1301
+ ## [0.9.2](https://github.com/rokucommunity/brighterscript/compare/v0.9.1...v0.9.2) - 2020-05-02
796
1302
  ### Changed
797
1303
  - intellisense anywhere other than next to a dot now includes keywords (#67)
798
1304
 
@@ -803,19 +1309,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
803
1309
 
804
1310
 
805
1311
 
806
- ## [0.9.1] - 2020-05-01
1312
+ ## [0.9.1](https://github.com/rokucommunity/brighterscript/compare/v0.9.0...v0.9.1) - 2020-05-01
807
1313
  ### Fixed
808
1314
  - bug with upper-case two-word conditional compile tokens (`#ELSE IF` and `#END IF`) (#63)
809
1315
 
810
1316
 
811
1317
 
812
- ## [0.9.0] - 2020-05-01
1318
+ ## [0.9.0](https://github.com/rokucommunity/brighterscript/compare/v0.8.2...v0.9.0) - 2020-05-01
813
1319
  ### Added
814
1320
  - new compile flag `autoImportComponentScript` which will automatically import a script for a component with the same name if it exists.
815
1321
 
816
1322
 
817
1323
 
818
- ## [0.8.2] - 2020-04-29
1324
+ ## [0.8.2](https://github.com/rokucommunity/brighterscript/compare/v0.8.1...v0.8.2) - 2020-04-29
819
1325
  ### Fixed
820
1326
  - bugs in namespace transpilation
821
1327
  - bugs in class transpilation
@@ -824,14 +1330,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
824
1330
 
825
1331
 
826
1332
 
827
- ## [0.8.1] - 2020-04-27
1333
+ ## [0.8.1](https://github.com/rokucommunity/brighterscript/compare/v0.8.0...v0.8.1) - 2020-04-27
828
1334
  ### Fixed
829
1335
  - Bug where class property initializers would cause parse error
830
1336
  - better parse recovery for incomplete class members
831
1337
 
832
1338
 
833
1339
 
834
- ## [0.8.0] - 2020-04-26
1340
+ ## [0.8.0](https://github.com/rokucommunity/brighterscript/compare/v0.7.2...v0.8.0) - 2020-04-26
835
1341
  ### Added
836
1342
  - new `import` syntax for BrighterScript projects.
837
1343
  - experimental transpile support for xml files (converts `.bs` extensions to `.brs`, auto-appends the `import` statments to each xml component)
@@ -839,19 +1345,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
839
1345
  - upgraded to vscode-languageserver@6.1.1
840
1346
 
841
1347
 
842
- ## [0.7.2] - 2020-04-24
1348
+ ## [0.7.2](https://github.com/rokucommunity/brighterscript/compare/v0.7.1...v0.7.2) - 2020-04-24
843
1349
  ### Fixed
844
1350
  - runtime bug in the language server when validating incomplete class statements
845
1351
 
846
1352
 
847
1353
 
848
- ## [0.7.1] - 2020-04-23
1354
+ ## [0.7.1](https://github.com/rokucommunity/brighterscript/compare/v0.7.0...v0.7.1) - 2020-04-23
849
1355
  ### Fixed
850
1356
  - dependency issue: `glob` is required but was not listed as a dependency
851
1357
 
852
1358
 
853
1359
 
854
- ## [0.7.0] - 2020-04-23
1360
+ ## [0.7.0](https://github.com/rokucommunity/brighterscript/compare/v0.6.0...v0.7.0) - 2020-04-23
855
1361
  ### Added
856
1362
  - basic support for namespaces
857
1363
  - experimental parser support for import statements (no transpile yet)
@@ -860,7 +1366,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
860
1366
 
861
1367
 
862
1368
 
863
- ## [0.6.0] 2020-04-15
1369
+ ## [0.6.0](https://github.com/rokucommunity/brighterscript/compare/v0.5.4...v0.6.0) 2020-04-15
864
1370
  ### Added
865
1371
  - ability to filter out diagnostics by using the `diagnosticFilters` option in bsconfig
866
1372
  ### Changed
@@ -870,14 +1376,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
870
1376
 
871
1377
 
872
1378
 
873
- ## [0.5.4] 2020-04-13
1379
+ ## [0.5.4](https://github.com/rokucommunity/brighterscript/compare/v0.5.3...v0.5.4) 2020-04-13
874
1380
  ### Fixed
875
1381
  - Syntax bug that wasn't allowing period before indexed get expression (example: `prop.["key"]`) (#58)
876
1382
  - Syntax bug preventing comments from being used in various locations within a class
877
1383
 
878
1384
 
879
1385
 
880
- ## [0.5.3] - 2020-04-12
1386
+ ## [0.5.3](https://github.com/rokucommunity/brighterscript/compare/v0.5.2...v0.5.3) - 2020-04-12
881
1387
  ### Added
882
1388
  - syntax support for the xml attribute operator (`node@someAttr`) (#34)
883
1389
  - syntax support for bitshift operators (`<<` and `>>`) (#50)
@@ -887,7 +1393,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
887
1393
 
888
1394
 
889
1395
 
890
- ## [0.5.2] - 2020-04-11
1396
+ ## [0.5.2](https://github.com/rokucommunity/brighterscript/compare/v0.5.1...v0.5.2) - 2020-04-11
891
1397
  ### Changed
892
1398
  - downgrade diagnostic issue 1007 from an error to a warning, and updated the message to "Component is mising "extends" attribute and will automatically extend "Group" by default" (#53)
893
1399
  ### Fixed
@@ -896,13 +1402,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
896
1402
 
897
1403
 
898
1404
 
899
- ## [0.5.1] - 2020-04-10
1405
+ ## [0.5.1](https://github.com/rokucommunity/brighterscript/compare/v0.5.0...v0.5.1) - 2020-04-10
900
1406
  ### Changed
901
1407
  - upgraded to [roku-deploy@3.0.2](https://www.npmjs.com/package/roku-debug/v/0.3.4) which fixed a file copy bug in subdirectories of symlinked folders (fixes #41)
902
1408
 
903
1409
 
904
1410
 
905
- ## [0.5.0] - 2020-04-10
1411
+ ## [0.5.0](https://github.com/rokucommunity/brighterscript/compare/v0.4.4...v0.5.0) - 2020-04-10
906
1412
  ### Added
907
1413
  - several new diagnostics for conditional compiles. Some of them allow the parser to recover and continue.
908
1414
  - experimental class transpile support. There is still no intellisense for classes yet though.
@@ -915,31 +1421,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
915
1421
 
916
1422
 
917
1423
 
918
- ## [0.4.4] - 2020-04-04
1424
+ ## [0.4.4](https://github.com/rokucommunity/brighterscript/compare/v0.4.3...v0.4.4) - 2020-04-04
919
1425
  ### Fixed
920
1426
  - bug in the ProgramBuilder that would terminate the program on first run if an error diagnostic was found, even when in watch mode.
921
1427
 
922
1428
 
923
1429
 
924
- ## [0.4.3] - 2020-04-03
1430
+ ## [0.4.3](https://github.com/rokucommunity/brighterscript/compare/v0.4.2...v0.4.3) - 2020-04-03
925
1431
  ### Changed
926
1432
  - the `bsc` cli now emits a nonzero return code whenever parse errors are encountered, which allows tools to detect compile-time errors. (#43)
927
1433
 
928
1434
 
929
1435
 
930
- ## [0.4.2] - 2020-04-01
1436
+ ## [0.4.2](https://github.com/rokucommunity/brighterscript/compare/v0.4.1...v0.4.2) - 2020-04-01
931
1437
  ### Changed
932
1438
  - upgraded to [roku-deploy@3.0.0](https://www.npmjs.com/package/roku-deploy/v/3.0.0)
933
1439
 
934
1440
 
935
1441
 
936
- ## [0.4.1] - 2020-01-11
1442
+ ## [0.4.1](https://github.com/rokucommunity/brighterscript/compare/v0.4.0...v0.4.1) - 2020-01-11
937
1443
  ### Changed
938
1444
  - upgraded to [roku-deploy@3.0.0-beta.7](https://www.npmjs.com/package/roku-deploy/v/3.0.0-beta.7) which fixed a critical bug during pkg creation.
939
1445
 
940
1446
 
941
1447
 
942
- ## [0.4.0] - 2020-01-07
1448
+ ## [0.4.0](https://github.com/rokucommunity/brighterscript/compare/v0.3.1...v0.4.0) - 2020-01-07
943
1449
  ### Added
944
1450
  - ability to specify the pkgPath of a file when adding to the project.
945
1451
  ### Changed
@@ -952,14 +1458,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
952
1458
 
953
1459
 
954
1460
 
955
- ## [0.3.1] - 2019-11-08
1461
+ ## [0.3.1](https://github.com/rokucommunity/brighterscript/compare/v0.3.0...v0.3.1) - 2019-11-08
956
1462
  ### Fixed
957
1463
  - language server bug that was showing error messages in certain startup race conditions.
958
1464
  - error during hover caused by race condition during file re-parse.
959
1465
 
960
1466
 
961
1467
 
962
- ## [0.3.0] - 2019-10-03
1468
+ ## [0.3.0](https://github.com/rokucommunity/brighterscript/compare/v0.2.2...v0.3.0) - 2019-10-03
963
1469
  ### Added
964
1470
  - support for parsing opened files not included in any project.
965
1471
  ### Fixed
@@ -967,13 +1473,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
967
1473
 
968
1474
 
969
1475
 
970
- ## [0.2.2] - 2019-09-27
1476
+ ## [0.2.2](https://github.com/rokucommunity/brighterscript/compare/v0.2.1...v0.2.2) - 2019-09-27
971
1477
  ### Fixed
972
1478
  - bug in language server where the server would crash when sending a diagnostic too early. Now the server waits for the program to load before sending diagnostics.
973
1479
 
974
1480
 
975
1481
 
976
- ## [0.2.1] - 2019-09-24
1482
+ ## [0.2.1](https://github.com/rokucommunity/brighterscript/compare/v0.2.0...v0.2.1) - 2019-09-24
977
1483
  ### Changed
978
1484
  - the text for diagnostic 1010 to say "override" instead of "shadows"
979
1485
  ### Fixed
@@ -984,7 +1490,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
984
1490
 
985
1491
 
986
1492
 
987
- ## [0.2.0] - 2019-09-20
1493
+ ## [0.2.0](https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.2.0) - 2019-09-20
988
1494
  ### Added
989
1495
  - bsconfig.json validation
990
1496
  - slightly smarter intellisense that knows when you're trying to complete an object property.
@@ -999,132 +1505,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
999
1505
  - Bug during file creation that wouldn't recognize the file
1000
1506
 
1001
1507
 
1002
- ## [0.1.0] - 2019-08-10
1508
+ ## [0.1.0](https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.1.0) - 2019-08-10
1003
1509
  ### Changed
1004
1510
  - Cloned from [brightscript-language](https://github.com/rokucommunity/brightscript-language)
1005
1511
 
1006
1512
 
1007
- [0.1.0]: https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.1.0
1008
- [0.2.0]: https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.2.0
1009
- [0.2.1]: https://github.com/rokucommunity/brighterscript/compare/v0.2.0...v0.2.1
1010
- [0.2.2]: https://github.com/rokucommunity/brighterscript/compare/v0.2.1...v0.2.2
1011
- [0.3.0]: https://github.com/rokucommunity/brighterscript/compare/v0.2.2...v0.3.0
1012
- [0.3.1]: https://github.com/rokucommunity/brighterscript/compare/v0.3.0...v0.3.1
1013
- [0.4.0]: https://github.com/rokucommunity/brighterscript/compare/v0.3.1...v0.4.0
1014
- [0.4.1]: https://github.com/rokucommunity/brighterscript/compare/v0.4.0...v0.4.1
1015
- [0.4.2]: https://github.com/rokucommunity/brighterscript/compare/v0.4.1...v0.4.2
1016
- [0.4.3]: https://github.com/rokucommunity/brighterscript/compare/v0.4.2...v0.4.3
1017
- [0.4.4]: https://github.com/rokucommunity/brighterscript/compare/v0.4.3...v0.4.4
1018
- [0.5.0]: https://github.com/rokucommunity/brighterscript/compare/v0.4.4...v0.5.0
1019
- [0.5.1]: https://github.com/rokucommunity/brighterscript/compare/v0.5.0...v0.5.1
1020
- [0.5.2]: https://github.com/rokucommunity/brighterscript/compare/v0.5.1...v0.5.2
1021
- [0.5.3]: https://github.com/rokucommunity/brighterscript/compare/v0.5.2...v0.5.3
1022
- [0.5.4]: https://github.com/rokucommunity/brighterscript/compare/v0.5.3...v0.5.4
1023
- [0.6.0]: https://github.com/rokucommunity/brighterscript/compare/v0.5.4...v0.6.0
1024
- [0.7.0]: https://github.com/rokucommunity/brighterscript/compare/v0.6.0...v0.7.0
1025
- [0.7.1]: https://github.com/rokucommunity/brighterscript/compare/v0.7.0...v0.7.1
1026
- [0.7.2]: https://github.com/rokucommunity/brighterscript/compare/v0.7.1...v0.7.2
1027
- [0.8.0]: https://github.com/rokucommunity/brighterscript/compare/v0.7.2...v0.8.0
1028
- [0.8.1]: https://github.com/rokucommunity/brighterscript/compare/v0.8.0...v0.8.1
1029
- [0.8.2]: https://github.com/rokucommunity/brighterscript/compare/v0.8.1...v0.8.2
1030
- [0.9.0]: https://github.com/rokucommunity/brighterscript/compare/v0.8.2...v0.9.0
1031
- [0.9.1]: https://github.com/rokucommunity/brighterscript/compare/v0.9.0...v0.9.1
1032
- [0.9.2]: https://github.com/rokucommunity/brighterscript/compare/v0.9.1...v0.9.2
1033
- [0.9.3]: https://github.com/rokucommunity/brighterscript/compare/v0.9.2...v0.9.3
1034
- [0.9.4]: https://github.com/rokucommunity/brighterscript/compare/v0.9.3...v0.9.4
1035
- [0.9.5]: https://github.com/rokucommunity/brighterscript/compare/v0.9.4...v0.9.5
1036
- [0.9.6]: https://github.com/rokucommunity/brighterscript/compare/v0.9.5...v0.9.6
1037
- [0.9.7]: https://github.com/rokucommunity/brighterscript/compare/v0.9.6...v0.9.7
1038
- [0.9.8]: https://github.com/rokucommunity/brighterscript/compare/v0.9.7...v0.9.8
1039
- [0.10.0]: https://github.com/rokucommunity/brighterscript/compare/v0.9.8...v0.10.0
1040
- [0.10.1]: https://github.com/rokucommunity/brighterscript/compare/v0.10.0...v0.10.1
1041
- [0.10.2]: https://github.com/rokucommunity/brighterscript/compare/v0.10.1...v0.10.2
1042
- [0.10.3]: https://github.com/rokucommunity/brighterscript/compare/v0.10.2...v0.10.3
1043
- [0.10.4]: https://github.com/rokucommunity/brighterscript/compare/v0.10.3...v0.10.4
1044
- [0.10.5]: https://github.com/rokucommunity/brighterscript/compare/v0.10.4...v0.10.5
1045
- [0.10.6]: https://github.com/rokucommunity/brighterscript/compare/v0.10.5...v0.10.6
1046
- [0.10.7]: https://github.com/rokucommunity/brighterscript/compare/v0.10.6...v0.10.7
1047
- [0.10.8]: https://github.com/rokucommunity/brighterscript/compare/v0.10.7...v0.10.8
1048
- [0.10.9]: https://github.com/rokucommunity/brighterscript/compare/v0.10.8...v0.10.9
1049
- [0.10.10]: https://github.com/rokucommunity/brighterscript/compare/v0.10.9...v0.10.10
1050
- [0.11.0]: https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.11.0
1051
- [0.11.1]: https://github.com/rokucommunity/brighterscript/compare/v0.11.0...v0.11.1
1052
- [0.11.2]: https://github.com/rokucommunity/brighterscript/compare/v0.11.1...v0.11.2
1053
- [0.11.3]: https://github.com/rokucommunity/brighterscript/compare/v0.11.2...v0.11.3
1054
- [0.12.0]: https://github.com/rokucommunity/brighterscript/compare/v0.11.3...v0.12.0
1055
- [0.12.1]: https://github.com/rokucommunity/brighterscript/compare/v0.12.0...v0.12.1
1056
- [0.12.2]: https://github.com/rokucommunity/brighterscript/compare/v0.12.1...v0.12.2
1057
- [0.12.3]: https://github.com/rokucommunity/brighterscript/compare/v0.12.2...v0.12.3
1058
- [0.12.4]: https://github.com/rokucommunity/brighterscript/compare/v0.12.3...v0.12.4
1059
- [0.13.0]: https://github.com/rokucommunity/brighterscript/compare/v0.12.4...v0.13.0
1060
- [0.13.1]: https://github.com/rokucommunity/brighterscript/compare/v0.13.0...v0.13.1
1061
- [0.13.2]: https://github.com/rokucommunity/brighterscript/compare/v0.13.1...v0.13.2
1062
- [0.14.0]: https://github.com/rokucommunity/brighterscript/compare/v0.13.2...v0.14.0
1063
- [0.15.0]: https://github.com/rokucommunity/brighterscript/compare/v0.14.0...v0.15.0
1064
- [0.15.1]: https://github.com/rokucommunity/brighterscript/compare/v0.15.0...v0.15.1
1065
- [0.15.2]: https://github.com/rokucommunity/brighterscript/compare/v0.15.1...v0.15.2
1066
- [0.16.0]: https://github.com/rokucommunity/brighterscript/compare/v0.15.2...v0.16.0
1067
- [0.16.1]: https://github.com/rokucommunity/brighterscript/compare/v0.16.0...v0.16.1
1068
- [0.16.2]: https://github.com/rokucommunity/brighterscript/compare/v0.16.1...v0.16.2
1069
- [0.16.3]: https://github.com/rokucommunity/brighterscript/compare/v0.16.2...v0.16.3
1070
- [0.16.4]: https://github.com/rokucommunity/brighterscript/compare/v0.16.3...v0.16.4
1071
- [0.16.5]: https://github.com/rokucommunity/brighterscript/compare/v0.16.4...v0.16.5
1072
- [0.16.6]: https://github.com/rokucommunity/brighterscript/compare/v0.16.5...v0.16.6
1073
- [0.16.7]: https://github.com/rokucommunity/brighterscript/compare/v0.16.6...v0.16.7
1074
- [0.16.8]: https://github.com/rokucommunity/brighterscript/compare/v0.16.7...v0.16.8
1075
- [0.16.9]: https://github.com/rokucommunity/brighterscript/compare/v0.16.8...v0.16.9
1076
- [0.16.10]: https://github.com/rokucommunity/brighterscript/compare/v0.16.9...v0.16.10
1077
- [0.16.11]: https://github.com/rokucommunity/brighterscript/compare/v0.16.10...v0.16.11
1078
- [0.16.12]: https://github.com/rokucommunity/brighterscript/compare/v0.16.11...v0.16.12
1079
- [0.17.0]: https://github.com/rokucommunity/brighterscript/compare/v0.16.12...v0.17.0
1080
- [0.18.0]: https://github.com/rokucommunity/brighterscript/compare/v0.17.0...v0.18.0
1081
- [0.18.1]: https://github.com/rokucommunity/brighterscript/compare/v0.18.0...v0.18.1
1082
- [0.18.2]: https://github.com/rokucommunity/brighterscript/compare/v0.18.1...v0.18.2
1083
- [0.19.0]: https://github.com/rokucommunity/brighterscript/compare/v0.18.2...v0.19.0
1084
- [0.20.0]: https://github.com/rokucommunity/brighterscript/compare/v0.19.0...v0.20.0
1085
- [0.20.1]: https://github.com/rokucommunity/brighterscript/compare/v0.20.0...v0.20.1
1086
- [0.21.0]: https://github.com/rokucommunity/brighterscript/compare/v0.20.1...v0.21.0
1087
- [0.22.0]: https://github.com/rokucommunity/brighterscript/compare/v0.21.0...v0.22.0
1088
- [0.22.1]: https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1
1089
- [0.22.1]: https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1
1090
- [0.23.0]: https://github.com/rokucommunity/brighterscript/compare/v0.22.1...v0.23.0
1091
- [0.23.1]: https://github.com/rokucommunity/brighterscript/compare/v0.23.0...v0.23.1
1092
- [0.23.2]: https://github.com/rokucommunity/brighterscript/compare/v0.23.1...v0.23.2
1093
- [0.24.0]: https://github.com/rokucommunity/brighterscript/compare/v0.23.2...v0.24.0
1094
- [0.24.1]: https://github.com/rokucommunity/brighterscript/compare/v0.24.0...v0.24.1
1095
- [0.24.2]: https://github.com/rokucommunity/brighterscript/compare/v0.24.1...v0.24.2
1096
- [0.25.0]: https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0
1097
- [0.26.0]: https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0
1098
- [0.27.0]: https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0
1099
- [0.28.0]: https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0
1100
- [0.28.1]: https://github.com/rokucommunity/brighterscript/compare/v0.28.0...v0.28.1
1101
- [0.28.2]: https://github.com/rokucommunity/brighterscript/compare/v0.28.1...v0.28.2
1102
- [0.29.0]: https://github.com/rokucommunity/brighterscript/compare/v0.28.2...v0.29.0
1103
- [0.30.0]: https://github.com/rokucommunity/brighterscript/compare/v0.29.0...v0.30.0
1104
- [0.30.1]: https://github.com/rokucommunity/brighterscript/compare/v0.30.0...v0.30.1
1105
- [0.30.2]: https://github.com/rokucommunity/brighterscript/compare/v0.30.1...v0.30.2
1106
- [0.30.3]: https://github.com/rokucommunity/brighterscript/compare/v0.30.2...v0.30.3
1107
- [0.30.4]: https://github.com/rokucommunity/brighterscript/compare/v0.30.3...v0.30.4
1108
- [0.30.5]: https://github.com/rokucommunity/brighterscript/compare/v0.30.4...v0.30.5
1109
- [0.30.6]: https://github.com/rokucommunity/brighterscript/compare/v0.30.5...v0.30.6
1110
- [0.30.7]: https://github.com/rokucommunity/brighterscript/compare/v0.30.6...v0.30.7
1111
- [0.30.8]: https://github.com/rokucommunity/brighterscript/compare/v0.30.7...v0.30.8
1112
- [0.30.9]: https://github.com/rokucommunity/brighterscript/compare/v0.30.8...v0.30.9
1113
- [0.31.0]: https://github.com/rokucommunity/brighterscript/compare/v0.30.9...v0.31.0
1114
- [0.31.1]: https://github.com/rokucommunity/brighterscript/compare/v0.31.0...v0.31.1
1115
- [0.31.2]: https://github.com/rokucommunity/brighterscript/compare/v0.31.1...v0.31.2
1116
- [0.32.2]: https://github.com/rokucommunity/brighterscript/compare/v0.31.2...v0.32.2
1117
- [0.32.3]: https://github.com/rokucommunity/brighterscript/compare/v0.32.2...v0.32.3
1118
- [0.33.0]: https://github.com/rokucommunity/brighterscript/compare/v0.32.3...v0.33.0
1119
- [0.34.0]: https://github.com/rokucommunity/brighterscript/compare/v0.33.0...v0.34.0
1120
- [0.34.1]: https://github.com/rokucommunity/brighterscript/compare/v0.34.0...v0.34.1
1121
- [0.34.2]: https://github.com/rokucommunity/brighterscript/compare/v0.34.1...v0.34.2
1122
- [0.34.3]: https://github.com/rokucommunity/brighterscript/compare/v0.34.2...v0.34.3
1123
- [0.35.0]: https://github.com/rokucommunity/brighterscript/compare/v0.34.3...v0.35.0
1124
- [0.36.0]: https://github.com/rokucommunity/brighterscript/compare/v0.35.0...v0.36.0
1125
- [0.37.0]: https://github.com/rokucommunity/brighterscript/compare/v0.36.0...v0.37.0
1126
- [0.37.1]: https://github.com/rokucommunity/brighterscript/compare/v0.37.0...v0.37.1
1127
- [0.37.2]: https://github.com/rokucommunity/brighterscript/compare/v0.37.1...v0.37.2
1128
- [0.37.3]: https://github.com/rokucommunity/brighterscript/compare/v0.37.2...v0.37.3
1129
- [0.37.4]: https://github.com/rokucommunity/brighterscript/compare/v0.37.3...v0.37.4
1130
- [0.38.0]: https://github.com/rokucommunity/brighterscript/compare/v0.37.4...v0.38.0
1513
+
1514
+
1515
+
1516
+
1517
+
1518
+
1519
+
1520
+