brighterscript 1.0.0-alpha.10 → 1.0.0-alpha.14

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 (299) hide show
  1. package/CHANGELOG.md +247 -267
  2. package/README.md +2 -2
  3. package/dist/Cache.d.ts +3 -3
  4. package/dist/Cache.js +10 -6
  5. package/dist/Cache.js.map +1 -1
  6. package/dist/CodeActionUtil.js.map +1 -1
  7. package/dist/CommentFlagProcessor.d.ts +4 -4
  8. package/dist/CommentFlagProcessor.js +5 -3
  9. package/dist/CommentFlagProcessor.js.map +1 -1
  10. package/dist/DependencyGraph.js.map +1 -1
  11. package/dist/DiagnosticFilterer.js +1 -1
  12. package/dist/DiagnosticFilterer.js.map +1 -1
  13. package/dist/LanguageServer.d.ts +1 -6
  14. package/dist/LanguageServer.js +5 -14
  15. package/dist/LanguageServer.js.map +1 -1
  16. package/dist/Logger.js.map +1 -1
  17. package/dist/PluginInterface.d.ts +3 -3
  18. package/dist/PluginInterface.js +3 -0
  19. package/dist/PluginInterface.js.map +1 -1
  20. package/dist/Program.d.ts +35 -20
  21. package/dist/Program.js +132 -67
  22. package/dist/Program.js.map +1 -1
  23. package/dist/ProgramBuilder.js +4 -4
  24. package/dist/ProgramBuilder.js.map +1 -1
  25. package/dist/Scope.d.ts +22 -13
  26. package/dist/Scope.js +85 -70
  27. package/dist/Scope.js.map +1 -1
  28. package/dist/SymbolTable.d.ts +1 -1
  29. package/dist/SymbolTable.js +2 -2
  30. package/dist/SymbolTable.js.map +1 -1
  31. package/dist/XmlScope.d.ts +2 -2
  32. package/dist/XmlScope.js +5 -5
  33. package/dist/XmlScope.js.map +1 -1
  34. package/dist/astUtils/AstEditor.d.ts +27 -0
  35. package/dist/astUtils/AstEditor.js +97 -0
  36. package/dist/astUtils/AstEditor.js.map +1 -0
  37. package/dist/{bscPlugin/semanticTokens/SemanticTokensProcessor.spec.d.ts → astUtils/AstEditor.spec.d.ts} +0 -0
  38. package/dist/astUtils/AstEditor.spec.js +133 -0
  39. package/dist/astUtils/AstEditor.spec.js.map +1 -0
  40. package/dist/astUtils/creators.spec.js +4 -4
  41. package/dist/astUtils/creators.spec.js.map +1 -1
  42. package/dist/astUtils/reflection.d.ts +4 -2
  43. package/dist/astUtils/reflection.js +10 -1
  44. package/dist/astUtils/reflection.js.map +1 -1
  45. package/dist/astUtils/reflection.spec.js +116 -116
  46. package/dist/astUtils/reflection.spec.js.map +1 -1
  47. package/dist/astUtils/stackedVisitor.js.map +1 -1
  48. package/dist/astUtils/stackedVisitor.spec.js +13 -13
  49. package/dist/astUtils/stackedVisitor.spec.js.map +1 -1
  50. package/dist/astUtils/visitors.js +1 -1
  51. package/dist/astUtils/visitors.js.map +1 -1
  52. package/dist/astUtils/visitors.spec.js +26 -26
  53. package/dist/astUtils/visitors.spec.js.map +1 -1
  54. package/dist/astUtils/xml.d.ts +1 -0
  55. package/dist/astUtils/xml.js +6 -1
  56. package/dist/astUtils/xml.js.map +1 -1
  57. package/dist/bscPlugin/BscPlugin.js +5 -2
  58. package/dist/bscPlugin/BscPlugin.js.map +1 -1
  59. package/dist/bscPlugin/codeActions/CodeActionsProcessor.js +3 -3
  60. package/dist/bscPlugin/codeActions/CodeActionsProcessor.js.map +1 -1
  61. package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js +17 -17
  62. package/dist/bscPlugin/codeActions/CodeActionsProcessor.spec.js.map +1 -1
  63. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.d.ts +8 -0
  64. package/dist/bscPlugin/semanticTokens/{SemanticTokensProcessor.js → BrsFileSemanticTokensProcessor.js} +13 -15
  65. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.js.map +1 -0
  66. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.d.ts +1 -0
  67. package/dist/bscPlugin/semanticTokens/{SemanticTokensProcessor.spec.js → BrsFileSemanticTokensProcessor.spec.js} +5 -5
  68. package/dist/bscPlugin/semanticTokens/BrsFileSemanticTokensProcessor.spec.js.map +1 -0
  69. package/dist/diagnosticUtils.d.ts +1 -0
  70. package/dist/diagnosticUtils.js +14 -7
  71. package/dist/diagnosticUtils.js.map +1 -1
  72. package/dist/examples/plugins/removePrint.js +2 -2
  73. package/dist/examples/plugins/removePrint.js.map +1 -1
  74. package/dist/files/BrsFile.Class.spec.js +444 -269
  75. package/dist/files/BrsFile.Class.spec.js.map +1 -1
  76. package/dist/files/BrsFile.d.ts +17 -11
  77. package/dist/files/BrsFile.js +220 -153
  78. package/dist/files/BrsFile.js.map +1 -1
  79. package/dist/files/BrsFile.spec.js +620 -272
  80. package/dist/files/BrsFile.spec.js.map +1 -1
  81. package/dist/files/XmlFile.d.ts +6 -5
  82. package/dist/files/XmlFile.js +14 -9
  83. package/dist/files/XmlFile.js.map +1 -1
  84. package/dist/files/XmlFile.spec.js +238 -191
  85. package/dist/files/XmlFile.spec.js.map +1 -1
  86. package/dist/files/tests/imports.spec.js +29 -27
  87. package/dist/files/tests/imports.spec.js.map +1 -1
  88. package/dist/globalCallables.d.ts +3 -1
  89. package/dist/globalCallables.js +198 -99
  90. package/dist/globalCallables.js.map +1 -1
  91. package/dist/index.d.ts +12 -3
  92. package/dist/index.js +22 -4
  93. package/dist/index.js.map +1 -1
  94. package/dist/interfaces.d.ts +71 -10
  95. package/dist/lexer/Lexer.d.ts +5 -1
  96. package/dist/lexer/Lexer.js +52 -35
  97. package/dist/lexer/Lexer.js.map +1 -1
  98. package/dist/lexer/Lexer.spec.js +564 -534
  99. package/dist/lexer/Lexer.spec.js.map +1 -1
  100. package/dist/lexer/TokenKind.d.ts +4 -0
  101. package/dist/lexer/TokenKind.js +44 -1
  102. package/dist/lexer/TokenKind.js.map +1 -1
  103. package/dist/parser/Expression.d.ts +1 -1
  104. package/dist/parser/Expression.js +66 -66
  105. package/dist/parser/Expression.js.map +1 -1
  106. package/dist/parser/Parser.Class.spec.js +107 -106
  107. package/dist/parser/Parser.Class.spec.js.map +1 -1
  108. package/dist/parser/Parser.d.ts +17 -5
  109. package/dist/parser/Parser.js +431 -315
  110. package/dist/parser/Parser.js.map +1 -1
  111. package/dist/parser/Parser.spec.js +418 -296
  112. package/dist/parser/Parser.spec.js.map +1 -1
  113. package/dist/parser/SGParser.js +2 -2
  114. package/dist/parser/SGParser.js.map +1 -1
  115. package/dist/parser/SGParser.spec.js +22 -22
  116. package/dist/parser/SGParser.spec.js.map +1 -1
  117. package/dist/parser/SGTypes.d.ts +3 -0
  118. package/dist/parser/SGTypes.js +12 -7
  119. package/dist/parser/SGTypes.js.map +1 -1
  120. package/dist/parser/SGTypes.spec.js +84 -84
  121. package/dist/parser/SGTypes.spec.js.map +1 -1
  122. package/dist/parser/Statement.d.ts +3 -3
  123. package/dist/parser/Statement.js +61 -61
  124. package/dist/parser/Statement.js.map +1 -1
  125. package/dist/parser/Statement.spec.js +10 -10
  126. package/dist/parser/Statement.spec.js.map +1 -1
  127. package/dist/parser/tests/Parser.spec.d.ts +3 -3
  128. package/dist/parser/tests/Parser.spec.js +4 -4
  129. package/dist/parser/tests/Parser.spec.js.map +1 -1
  130. package/dist/parser/tests/controlFlow/For.spec.js +58 -58
  131. package/dist/parser/tests/controlFlow/For.spec.js.map +1 -1
  132. package/dist/parser/tests/controlFlow/ForEach.spec.js +40 -39
  133. package/dist/parser/tests/controlFlow/ForEach.spec.js.map +1 -1
  134. package/dist/parser/tests/controlFlow/If.spec.js +201 -200
  135. package/dist/parser/tests/controlFlow/If.spec.js.map +1 -1
  136. package/dist/parser/tests/controlFlow/While.spec.js +37 -37
  137. package/dist/parser/tests/controlFlow/While.spec.js.map +1 -1
  138. package/dist/parser/tests/expression/Additive.spec.js +30 -30
  139. package/dist/parser/tests/expression/Additive.spec.js.map +1 -1
  140. package/dist/parser/tests/expression/ArrayLiterals.spec.js +119 -119
  141. package/dist/parser/tests/expression/ArrayLiterals.spec.js.map +1 -1
  142. package/dist/parser/tests/expression/AssociativeArrayLiterals.spec.js +141 -141
  143. package/dist/parser/tests/expression/AssociativeArrayLiterals.spec.js.map +1 -1
  144. package/dist/parser/tests/expression/Boolean.spec.js +24 -24
  145. package/dist/parser/tests/expression/Boolean.spec.js.map +1 -1
  146. package/dist/parser/tests/expression/Call.spec.js +41 -40
  147. package/dist/parser/tests/expression/Call.spec.js.map +1 -1
  148. package/dist/parser/tests/expression/Exponential.spec.js +17 -17
  149. package/dist/parser/tests/expression/Exponential.spec.js.map +1 -1
  150. package/dist/parser/tests/expression/Function.spec.js +256 -256
  151. package/dist/parser/tests/expression/Function.spec.js.map +1 -1
  152. package/dist/parser/tests/expression/Indexing.spec.js +87 -87
  153. package/dist/parser/tests/expression/Indexing.spec.js.map +1 -1
  154. package/dist/parser/tests/expression/Multiplicative.spec.js +37 -37
  155. package/dist/parser/tests/expression/Multiplicative.spec.js.map +1 -1
  156. package/dist/parser/tests/expression/NullCoalescenceExpression.spec.js +74 -62
  157. package/dist/parser/tests/expression/NullCoalescenceExpression.spec.js.map +1 -1
  158. package/dist/parser/tests/expression/PrefixUnary.spec.js +41 -41
  159. package/dist/parser/tests/expression/PrefixUnary.spec.js.map +1 -1
  160. package/dist/parser/tests/expression/Primary.spec.js +41 -41
  161. package/dist/parser/tests/expression/Primary.spec.js.map +1 -1
  162. package/dist/parser/tests/expression/RegexLiteralExpression.spec.js +110 -2
  163. package/dist/parser/tests/expression/RegexLiteralExpression.spec.js.map +1 -1
  164. package/dist/parser/tests/expression/Relational.spec.js +43 -43
  165. package/dist/parser/tests/expression/Relational.spec.js.map +1 -1
  166. package/dist/parser/tests/expression/SourceLiteralExpression.spec.js +6 -6
  167. package/dist/parser/tests/expression/SourceLiteralExpression.spec.js.map +1 -1
  168. package/dist/parser/tests/expression/TemplateStringExpression.spec.js +18 -18
  169. package/dist/parser/tests/expression/TemplateStringExpression.spec.js.map +1 -1
  170. package/dist/parser/tests/expression/TernaryExpression.spec.js +100 -100
  171. package/dist/parser/tests/expression/TernaryExpression.spec.js.map +1 -1
  172. package/dist/parser/tests/statement/AssignmentOperators.spec.js +36 -36
  173. package/dist/parser/tests/statement/AssignmentOperators.spec.js.map +1 -1
  174. package/dist/parser/tests/statement/Declaration.spec.js +44 -44
  175. package/dist/parser/tests/statement/Declaration.spec.js.map +1 -1
  176. package/dist/parser/tests/statement/Dim.spec.js +21 -21
  177. package/dist/parser/tests/statement/Dim.spec.js.map +1 -1
  178. package/dist/parser/tests/statement/Function.spec.js +198 -197
  179. package/dist/parser/tests/statement/Function.spec.js.map +1 -1
  180. package/dist/parser/tests/statement/Goto.spec.js +15 -14
  181. package/dist/parser/tests/statement/Goto.spec.js.map +1 -1
  182. package/dist/parser/tests/statement/Increment.spec.js +50 -50
  183. package/dist/parser/tests/statement/Increment.spec.js.map +1 -1
  184. package/dist/parser/tests/statement/InterfaceStatement.spec.js +14 -2
  185. package/dist/parser/tests/statement/InterfaceStatement.spec.js.map +1 -1
  186. package/dist/parser/tests/statement/LibraryStatement.spec.js +17 -17
  187. package/dist/parser/tests/statement/LibraryStatement.spec.js.map +1 -1
  188. package/dist/parser/tests/statement/Misc.spec.js +91 -90
  189. package/dist/parser/tests/statement/Misc.spec.js.map +1 -1
  190. package/dist/parser/tests/statement/PrintStatement.spec.js +34 -34
  191. package/dist/parser/tests/statement/PrintStatement.spec.js.map +1 -1
  192. package/dist/parser/tests/statement/ReturnStatement.spec.js +46 -46
  193. package/dist/parser/tests/statement/ReturnStatement.spec.js.map +1 -1
  194. package/dist/parser/tests/statement/Set.spec.js +83 -83
  195. package/dist/parser/tests/statement/Set.spec.js.map +1 -1
  196. package/dist/parser/tests/statement/Stop.spec.js +12 -11
  197. package/dist/parser/tests/statement/Stop.spec.js.map +1 -1
  198. package/dist/parser/tests/statement/Throw.spec.js +5 -5
  199. package/dist/parser/tests/statement/Throw.spec.js.map +1 -1
  200. package/dist/parser/tests/statement/TryCatch.spec.js +13 -13
  201. package/dist/parser/tests/statement/TryCatch.spec.js.map +1 -1
  202. package/dist/preprocessor/Chunk.d.ts +1 -1
  203. package/dist/preprocessor/Chunk.js.map +1 -1
  204. package/dist/preprocessor/Manifest.d.ts +1 -1
  205. package/dist/preprocessor/Preprocessor.d.ts +1 -1
  206. package/dist/preprocessor/Preprocessor.js +8 -8
  207. package/dist/preprocessor/Preprocessor.js.map +1 -1
  208. package/dist/preprocessor/Preprocessor.spec.js +49 -49
  209. package/dist/preprocessor/Preprocessor.spec.js.map +1 -1
  210. package/dist/preprocessor/PreprocessorParser.spec.js +72 -72
  211. package/dist/preprocessor/PreprocessorParser.spec.js.map +1 -1
  212. package/dist/types/ArrayType.d.ts +8 -5
  213. package/dist/types/ArrayType.js +48 -12
  214. package/dist/types/ArrayType.js.map +1 -1
  215. package/dist/types/ArrayType.spec.js +69 -10
  216. package/dist/types/ArrayType.spec.js.map +1 -1
  217. package/dist/types/BooleanType.js +3 -3
  218. package/dist/types/BooleanType.js.map +1 -1
  219. package/dist/types/BooleanType.spec.js +2 -2
  220. package/dist/types/BooleanType.spec.js.map +1 -1
  221. package/dist/types/BscType.d.ts +1 -1
  222. package/dist/types/BscType.js +1 -1
  223. package/dist/types/BscType.js.map +1 -1
  224. package/dist/types/CustomType.d.ts +1 -1
  225. package/dist/types/CustomType.js +6 -4
  226. package/dist/types/CustomType.js.map +1 -1
  227. package/dist/types/DoubleType.js +7 -7
  228. package/dist/types/DoubleType.js.map +1 -1
  229. package/dist/types/DoubleType.spec.js +2 -2
  230. package/dist/types/DoubleType.spec.js.map +1 -1
  231. package/dist/types/DynamicType.js +1 -1
  232. package/dist/types/DynamicType.js.map +1 -1
  233. package/dist/types/DynamicType.spec.js +2 -2
  234. package/dist/types/DynamicType.spec.js.map +1 -1
  235. package/dist/types/FloatType.js +7 -7
  236. package/dist/types/FloatType.js.map +1 -1
  237. package/dist/types/FloatType.spec.js +2 -2
  238. package/dist/types/FloatType.spec.js.map +1 -1
  239. package/dist/types/FunctionType.d.ts +5 -5
  240. package/dist/types/FunctionType.js +13 -13
  241. package/dist/types/FunctionType.js.map +1 -1
  242. package/dist/types/FunctionType.spec.js +7 -7
  243. package/dist/types/FunctionType.spec.js.map +1 -1
  244. package/dist/types/IntegerType.js +7 -7
  245. package/dist/types/IntegerType.js.map +1 -1
  246. package/dist/types/IntegerType.spec.js +2 -2
  247. package/dist/types/IntegerType.spec.js.map +1 -1
  248. package/dist/types/InterfaceType.js +3 -3
  249. package/dist/types/InterfaceType.js.map +1 -1
  250. package/dist/types/InterfaceType.spec.js +7 -7
  251. package/dist/types/InterfaceType.spec.js.map +1 -1
  252. package/dist/types/InvalidType.js +4 -4
  253. package/dist/types/InvalidType.js.map +1 -1
  254. package/dist/types/InvalidType.spec.js +2 -2
  255. package/dist/types/InvalidType.spec.js.map +1 -1
  256. package/dist/types/LazyType.d.ts +1 -2
  257. package/dist/types/LazyType.js +1 -5
  258. package/dist/types/LazyType.js.map +1 -1
  259. package/dist/types/LongIntegerType.js +8 -8
  260. package/dist/types/LongIntegerType.js.map +1 -1
  261. package/dist/types/LongIntegerType.spec.js +2 -2
  262. package/dist/types/LongIntegerType.spec.js.map +1 -1
  263. package/dist/types/ObjectType.js +3 -3
  264. package/dist/types/ObjectType.js.map +1 -1
  265. package/dist/types/ObjectType.spec.js +2 -2
  266. package/dist/types/ObjectType.spec.js.map +1 -1
  267. package/dist/types/StringType.js +3 -3
  268. package/dist/types/StringType.js.map +1 -1
  269. package/dist/types/StringType.spec.js +2 -2
  270. package/dist/types/StringType.spec.js.map +1 -1
  271. package/dist/types/UninitializedType.js +3 -3
  272. package/dist/types/UninitializedType.js.map +1 -1
  273. package/dist/types/VoidType.js +3 -3
  274. package/dist/types/VoidType.js.map +1 -1
  275. package/dist/types/VoidType.spec.js +2 -2
  276. package/dist/types/VoidType.spec.js.map +1 -1
  277. package/dist/types/helpers.js +6 -6
  278. package/dist/types/helpers.js.map +1 -1
  279. package/dist/util.d.ts +15 -9
  280. package/dist/util.js +104 -57
  281. package/dist/util.js.map +1 -1
  282. package/dist/validators/ClassValidator.js +40 -40
  283. package/dist/validators/ClassValidator.js.map +1 -1
  284. package/package.json +10 -9
  285. package/dist/astUtils/index.d.ts +0 -7
  286. package/dist/astUtils/index.js +0 -26
  287. package/dist/astUtils/index.js.map +0 -1
  288. package/dist/bscPlugin/semanticTokens/SemanticTokensProcessor.d.ts +0 -7
  289. package/dist/bscPlugin/semanticTokens/SemanticTokensProcessor.js.map +0 -1
  290. package/dist/bscPlugin/semanticTokens/SemanticTokensProcessor.spec.js.map +0 -1
  291. package/dist/lexer/index.d.ts +0 -3
  292. package/dist/lexer/index.js +0 -17
  293. package/dist/lexer/index.js.map +0 -1
  294. package/dist/parser/index.d.ts +0 -3
  295. package/dist/parser/index.js +0 -16
  296. package/dist/parser/index.js.map +0 -1
  297. package/dist/preprocessor/index.d.ts +0 -3
  298. package/dist/preprocessor/index.js +0 -16
  299. package/dist/preprocessor/index.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,114 @@ 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.14](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) - 2022-02-08
10
+ ### Added
11
+ - array type support for parameters and return types ([#499](https://github.com/rokucommunity/brighterscript/pull/499))
12
+ - all changes from [v0.42.0](#0420---2022-01-10)
13
+
14
+
15
+
16
+ ## [0.44.0](https://github.com/rokucommunity/brighterscript/compare/v0.43.1...v0.44.0) - 2022-02-08
17
+ ### Added
18
+ - `onScopeValidate` plugin event useful when plugins want to contribute scope validations ([#505](https://github.com/rokucommunity/brighterscript/pull/505))
19
+ ### Changed
20
+ - show plugin transpile modifications in the `getTranspiledFile` callback (used for "show preview" functionality in vscode) ([#502](https://github.com/rokucommunity/brighterscript/pull/502))
21
+ - make `Program.getFile` more flexible, and deprecate `Program.getFileByPkgPath`, `Program.getFileByPathAbsolute` ([#506](https://github.com/rokucommunity/brighterscript/pull/506))
22
+ - add `Program.getFiles` and deprecate `Program.getFilesByPkgPath` ([#506](https://github.com/rokucommunity/brighterscript/pull/506))
23
+ - 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))
24
+ - support generics for `Cache` class ([#503](https://github.com/rokucommunity/brighterscript/pull/503))
25
+ ### Fixed
26
+ - bug in hover showing required params as optional and optional params as required ([#501](https://github.com/rokucommunity/brighterscript/pull/501))
27
+
28
+
29
+
30
+ ## [0.43.1](https://github.com/rokucommunity/brighterscript/compare/v0.43.0...v0.43.1) - 2022-01-28
31
+ ### Fixed
32
+ - crash when hovering over global functions ([#497](https://github.com/rokucommunity/brighterscript/pull/497))
33
+
34
+
35
+
36
+ ## [0.43.0](https://github.com/rokucommunity/brighterscript/compare/v0.42.0...v0.43.0) - 2022-01-28
37
+ ### Added
38
+ - show function documentation when hovering over functions. ([#495](https://github.com/rokucommunity/brighterscript/pull/495))
39
+ - for plugin authors:
40
+ - added `beforeFileValidate` and `onFileValidate` plugin hooks ([#490](https://github.com/rokucommunity/brighterscript/pull/490))
41
+ - 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))
42
+ ### Changed
43
+ - For plugin authors:
44
+ - 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))
45
+ - 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))
46
+ - use `Map` for `ClassValidator` class lookup instead of an object. ([#481](https://github.com/rokucommunity/brighterscript/pull/481))
47
+ ### Fixed
48
+ - bug preventing code to come after an interface statement. ([#493](https://github.com/rokucommunity/brighterscript/pull/493))
49
+ - don't crash on null options in `printDiagnostics`. ([3147202](https://github.com/rokucommunity/brighterscript/commit/3147202b948d08be198255c068f082857c9de1f0))
50
+
51
+
52
+
53
+ ## [1.0.0-alpha.13](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) - 2022-01-10
54
+ ### Added
55
+ - all changes from [v0.42.0](#0420---2022-01-10)
56
+
57
+
58
+
59
+ ## [0.42.0](https://github.com/rokucommunity/brighterscript/compare/v0.41.6...v0.42.0) - 2022-01-10
60
+ ### Added
61
+ - 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))
62
+ ### Fixed
63
+ - bug in global function parameter checking that was not properly enforcing optional/required status for parameters. ([#479](https://github.com/rokucommunity/brighterscript/pull/479))
64
+
65
+
66
+
67
+ ## [0.41.6](https://github.com/rokucommunity/brighterscript/compare/v0.41.5...v0.41.6) - 2022-01-05
68
+ ### Fixed
69
+ - 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))
70
+
71
+
72
+
73
+ ## [0.41.5](https://github.com/rokucommunity/brighterscript/compare/v0.41.4...v0.41.5) - 2021-11-23
74
+ ### Fixed
75
+ - 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))
76
+
77
+
78
+
79
+ ## [0.41.4](https://github.com/rokucommunity/brighterscript/compare/v0.41.3...v0.41.4) - 2021-10-28
80
+ ### Fixed
81
+ - bug transpiling instant resume xml elements ([#465](https://github.com/rokucommunity/brighterscript/pull/465))
82
+
83
+
84
+
85
+ ## [0.41.3](https://github.com/rokucommunity/brighterscript/compare/v0.41.2...v0.41.3) - 2021-10-27
86
+ ### Changed
87
+ - 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))
88
+ ### Fixed
89
+ - Allow diagnostic non-numeric disable code comments ([#463](https://github.com/rokucommunity/brighterscript/pull/463)).
90
+
91
+
92
+
93
+ ## [1.0.0-alpha.12](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) - 2021-10-17
94
+ ### Added
95
+ - all changes from [v0.41.2](#0411---2021-10-17)
96
+
97
+
98
+
99
+ ## [0.41.2](https://github.com/rokucommunity/brighterscript/compare/v0.41.1...v0.41.2) - 2021-10-17
100
+ ### Fixed
101
+ - crash when subclass field has same name as ancestor method ([#460](https://github.com/rokucommunity/brighterscript/pull/460)).
102
+
103
+
104
+
105
+ ## [v1.0.0-alpha.11](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) - 2021-10-12
106
+ ### Added
107
+ - all changes from [v0.41.1](#0411---2021-10-07)
108
+
109
+
110
+
111
+ ## [0.41.1](https://github.com/rokucommunity/brighterscript/compare/v0.41.0...v0.41.1) - 2021-10-07
112
+ ### Fixed
113
+ - parse issue with regex literals ([#458](https://github.com/rokucommunity/brighterscript/pull/458)).
114
+
115
+
116
+
9
117
  ## [1.0.0-alpha.10](https://github.com/rokucommunity/brighterscript/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) - 2021-09-27
10
118
  ### Added
11
119
  - all changes from [v0.41.0](#0410---2021-09-27)
@@ -43,8 +151,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
43
151
 
44
152
 
45
153
 
46
- ## [0.40.0] - 2021-08-02
47
- [0.40.0]: https://github.com/rokucommunity/brighterscript/compare/v0.39.4...v0.40.0
154
+ ## [0.40.0](https://github.com/rokucommunity/brighterscript/compare/v0.39.4...v0.40.0) - 2021-08-02
48
155
  ### Added
49
156
  - language support for Interface statements ([#426](https://github.com/rokucommunity/brighterscript/pull/426))
50
157
  ### Changed
@@ -52,8 +159,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
52
159
 
53
160
 
54
161
 
55
- ## [0.39.4] - 2021-06-27
56
- [0.39.4]: https://github.com/rokucommunity/brighterscript/compare/v0.39.3...v0.39.4
162
+ ## [0.39.4](https://github.com/rokucommunity/brighterscript/compare/v0.39.3...v0.39.4) - 2021-06-27
57
163
  ### Fixed
58
164
  - incorrect block range for inline if/then branch ([#424](https://github.com/rokucommunity/brighterscript/pull/424))
59
165
  - extract associative array comma when parsing ([#427](https://github.com/rokucommunity/brighterscript/pull/424))
@@ -62,15 +168,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
62
168
 
63
169
 
64
170
 
65
- ## [0.39.3] - 2021-06-01
66
- [0.39.3]: https://github.com/rokucommunity/brighterscript/compare/v0.39.2...v0.39.3
171
+ ## [0.39.3](https://github.com/rokucommunity/brighterscript/compare/v0.39.2...v0.39.3) - 2021-06-01
67
172
  ### Changed
68
173
  - 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
69
174
 
70
175
 
71
176
 
72
- ## [0.39.2] - 2021-05-28
73
- [0.39.2]: https://github.com/rokucommunity/brighterscript/compare/v0.39.1...v0.39.2
177
+ ## [0.39.2](https://github.com/rokucommunity/brighterscript/compare/v0.39.1...v0.39.2) - 2021-05-28
74
178
  ### Changed
75
179
  - 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
76
180
 
@@ -90,8 +194,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
90
194
 
91
195
 
92
196
 
93
- ## [0.39.1] - 2021-05-24
94
- [0.39.1]: https://github.com/rokucommunity/brighterscript/compare/v0.39.0...v0.39.1
197
+ ## [0.39.1](https://github.com/rokucommunity/brighterscript/compare/v0.39.0...v0.39.1) - 2021-05-24
95
198
  ### Changed
96
199
  - re-export `CodeActionKind` so plugins don't need to import from vscode-brightscript-language directly.
97
200
  ### Fixed
@@ -112,8 +215,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
112
215
 
113
216
 
114
217
 
115
- ## [0.39.0] - 2021-05-18
116
- [0.39.0]: https://github.com/rokucommunity/brighterscript/compare/v0.38.2...v0.39.0
218
+ ## [0.39.0](https://github.com/rokucommunity/brighterscript/compare/v0.38.2...v0.39.0) - 2021-05-18
117
219
  ### Added
118
220
  - semantic token support for plugins
119
221
  - basic semantic tokens for `new` statements and namespace usage
@@ -127,8 +229,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
127
229
 
128
230
 
129
231
 
130
- ## [0.38.2] - 2021-05-17
131
- [0.38.2]: https://github.com/rokucommunity/brighterscript/compare/v0.38.1...v0.38.2
232
+ ## [0.38.2](https://github.com/rokucommunity/brighterscript/compare/v0.38.1...v0.38.2) - 2021-05-17
132
233
  ### Fixed
133
234
  - language server crash when namespaced function or class didn't have a name ([#419](https://github.com/rokucommunity/brighterscript/pull/419))
134
235
 
@@ -146,8 +247,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
146
247
 
147
248
 
148
249
 
149
- ## [0.38.1] - 2021-05-14
150
- [0.38.1]: https://github.com/rokucommunity/brighterscript/compare/v0.38.0...v0.38.1
250
+ ## [0.38.1](https://github.com/rokucommunity/brighterscript/compare/v0.38.0...v0.38.1) - 2021-05-14
151
251
  ### Changed
152
252
  - 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))
153
253
  ### Fixed
@@ -170,7 +270,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170
270
 
171
271
 
172
272
 
173
- ## [0.38.0] - 2021-05-04
273
+ ## [0.38.0](https://github.com/rokucommunity/brighterscript/compare/v0.37.4...v0.38.0) - 2021-05-04
174
274
  ### Added
175
275
  - warning for mismatched class method accessibility ([#402](https://github.com/rokucommunity/brighterscript/pull/402))
176
276
  - allow class field overrides in child classes as long as they are the same type ([#394](https://github.com/rokucommunity/brighterscript/pull/394))
@@ -194,39 +294,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
194
294
 
195
295
 
196
296
 
197
- ## [0.37.4] - 2021-04-20
297
+ ## [0.37.4](https://github.com/rokucommunity/brighterscript/compare/v0.37.3...v0.37.4) - 2021-04-20
198
298
  ### Fixed
199
299
  - bug validating namespace function calls ([#390](https://github.com/rokucommunity/brighterscript/pull/390))
200
300
 
201
301
 
202
302
 
203
- ## [0.37.3] - 2021-04-12
303
+ ## [0.37.3](https://github.com/rokucommunity/brighterscript/compare/v0.37.2...v0.37.3) - 2021-04-12
204
304
  ### Fixed
205
305
  - 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))
206
306
  - bug in xml file ignoring `needsTranspiled` flag when set by plugins ([#384](https://github.com/rokucommunity/brighterscript/pull/384))
207
307
 
208
308
 
209
309
 
210
- ## [0.37.2] - 2021-04-08
310
+ ## [0.37.2](https://github.com/rokucommunity/brighterscript/compare/v0.37.1...v0.37.2) - 2021-04-08
211
311
  ### Fixed
212
312
  - erraneous syntax issue when concatenating a template string and a regular string. ([#383](https://github.com/rokucommunity/brighterscript/pull/383))
213
313
  - prevent circular import causing stack overflow crash. ([#381](https://github.com/rokucommunity/brighterscript/pull/381))
214
314
 
215
315
 
216
316
 
217
- ## [0.37.1] - 2021-03-30
317
+ ## [0.37.1](https://github.com/rokucommunity/brighterscript/compare/v0.37.0...v0.37.1) - 2021-03-30
218
318
  ### Fixed
219
319
  - 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))
220
320
 
221
321
 
222
322
 
223
- ## [0.37.0] - 2021-03-18
323
+ ## [0.37.0](https://github.com/rokucommunity/brighterscript/compare/v0.36.0...v0.37.0) - 2021-03-18
224
324
  ### Added
225
325
  - support for `bs:disable` comments in xml files ([#363](https://github.com/rokucommunity/brighterscript/pull/363))
226
326
 
227
327
 
228
328
 
229
- ## [0.36.0] - 2021-03-15
329
+ ## [0.36.0](https://github.com/rokucommunity/brighterscript/compare/v0.35.0...v0.36.0) - 2021-03-15
230
330
  ### Added
231
331
  - class import code actions ([#365](https://github.com/rokucommunity/brighterscript/pull/365))
232
332
  ### Changed
@@ -239,7 +339,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
239
339
 
240
340
 
241
341
 
242
- ## [0.35.0] - 2021-03-09
342
+ ## [0.35.0](https://github.com/rokucommunity/brighterscript/compare/v0.34.3...v0.35.0) - 2021-03-09
243
343
  ### Added
244
344
  - code actions for suggesting import statements in brighterscript files ([#347](https://github.com/rokucommunity/brighterscript/pull/347))
245
345
  ### Fixed
@@ -247,13 +347,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
247
347
 
248
348
 
249
349
 
250
- ## [0.34.3] -2021-03-05
350
+ ## [0.34.3](https://github.com/rokucommunity/brighterscript/compare/v0.34.2...v0.34.3) -2021-03-05
251
351
  ### Fixed
252
352
  - bug when transpiling bsc with custom function and parameter return types
253
353
 
254
354
 
255
355
 
256
- ## [0.34.2] - 2021-03-04
356
+ ## [0.34.2](https://github.com/rokucommunity/brighterscript/compare/v0.34.1...v0.34.2) - 2021-03-04
257
357
  ### Added
258
358
  - support for loading bslib without alias (i.e. `@rokucommunity/bslib`).
259
359
  ### Fixed
@@ -263,19 +363,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
263
363
 
264
364
 
265
365
 
266
- ## [0.34.1] - 2021-03-02
366
+ ## [0.34.1](https://github.com/rokucommunity/brighterscript/compare/v0.34.0...v0.34.1) - 2021-03-02
267
367
  ### Fixed
268
368
  - syntax parsing bugs within single-line if statements
269
369
 
270
370
 
271
371
 
272
- ## [0.34.0] - 2021-02-28
372
+ ## [0.34.0](https://github.com/rokucommunity/brighterscript/compare/v0.33.0...v0.34.0) - 2021-02-28
273
373
  ### Added
274
374
  - language server file path completions inside strings that start with `pkg:` or `libpkg:`
275
375
 
276
376
 
277
377
 
278
- ## [0.33.0] - 2021-02-27
378
+ ## [0.33.0](https://github.com/rokucommunity/brighterscript/compare/v0.32.3...v0.33.0) - 2021-02-27
279
379
  ### Added
280
380
  - support for ropm version of bslib.([#334](https://github.com/rokucommunity/brighterscript/pull/334))
281
381
  ### Fixed
@@ -285,7 +385,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
285
385
 
286
386
 
287
387
 
288
- ## [0.32.3] - 2021-02-25
388
+ ## [0.32.3](https://github.com/rokucommunity/brighterscript/compare/v0.32.2...v0.32.3) - 2021-02-25
289
389
  ### Fixed
290
390
  - fix significant performance bug in diagnostic filtering
291
391
  - tweaks to the logging system to make `logLevel=verbose` less chatty
@@ -294,25 +394,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
294
394
 
295
395
 
296
396
 
297
- ## [0.32.2] - 2021-02-20
397
+ ## [0.31.2](https://github.com/rokucommunity/brighterscript/compare/v0.31.1...v0.31.2) - 2021-02-20
298
398
  ### Fixed
299
399
  - transpile bug when a template string starts with an expression ([#327](https://github.com/rokucommunity/brighterscript/pull/327))
300
-
301
-
302
-
303
- ## [0.31.2] - 2021-02-18
304
400
  ### Changed
305
- - parent class names in typedefs for class `extends` expressions now always include their full namespace name.
401
+ - when generating type definition files, include the namespace for every extends statement ([#324](https://github.com/rokucommunity/brighterscript/pull/324))
306
402
 
307
403
 
308
404
 
309
- ## [0.31.1] - 2021-02-18
405
+ ## [0.31.1](https://github.com/rokucommunity/brighterscript/compare/v0.31.0...v0.31.1) - 2021-02-18
310
406
  ### Fixed
311
407
  - prevent exception in codeAction functionality when file cannot be found in a `Program`
312
408
 
313
409
 
314
410
 
315
- ## [0.31.0] - 2021-02-17
411
+ ## [0.31.0](https://github.com/rokucommunity/brighterscript/compare/v0.30.9...v0.31.0) - 2021-02-17
316
412
  ### Added
317
413
  - plugin and language server support for [codeActions](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_codeAction)
318
414
  - codeAction to add missing `extends` attribute in components
@@ -322,7 +418,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
322
418
 
323
419
 
324
420
 
325
- ## [0.30.9] - 2021-02-15
421
+ ## [0.30.9](https://github.com/rokucommunity/brighterscript/compare/v0.30.8...v0.30.9) - 2021-02-15
326
422
  ### Fixed
327
423
  - prevent excess validations when non-workspace files are changed ([#315](https://github.com/rokucommunity/brighterscript/pull/315))
328
424
  - catch errors when getting signatures ([#285](https://github.com/rokucommunity/brighterscript/pull/285))
@@ -330,7 +426,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
330
426
 
331
427
 
332
428
 
333
- ## [0.30.8] - 2021-02-12
429
+ ## [0.30.8](https://github.com/rokucommunity/brighterscript/compare/v0.30.7...v0.30.8) - 2021-02-12
334
430
  ### Changed
335
431
  - add additional logging in `Program.removeFile`
336
432
  ### Fixed
@@ -339,20 +435,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
339
435
 
340
436
 
341
437
 
342
- ## [0.30.7] - 2021-02-11
438
+ ## [0.30.7](https://github.com/rokucommunity/brighterscript/compare/v0.30.6...v0.30.7) - 2021-02-11
343
439
  ### Fixed
344
440
  - bug in `getSignatureHelp` that wouldn't work for function calls with no leading whitespace. ([#307](https://github.com/rokucommunity/brighterscript/issues/307))
345
441
 
346
442
 
347
443
 
348
- ## [0.30.6] - 2021-02-07
444
+ ## [0.30.6](https://github.com/rokucommunity/brighterscript/compare/v0.30.5...v0.30.6) - 2021-02-07
349
445
  ### Fixed
350
446
  - bad transpile for nested class method super calls
351
447
  - SceneGraph node attributes being wrongly removed when modifying attributes
352
448
 
353
449
 
354
450
 
355
- ## [0.30.5] - 2021-02-03
451
+ ## [0.30.5](https://github.com/rokucommunity/brighterscript/compare/v0.30.4...v0.30.5) - 2021-02-03
356
452
  ### Added
357
453
  - syntax support for dim statements
358
454
  - completion and code navigation for labels
@@ -361,33 +457,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
361
457
 
362
458
 
363
459
 
364
- ## [0.30.4] - 2021-02-02
460
+ ## [0.30.4](https://github.com/rokucommunity/brighterscript/compare/v0.30.3...v0.30.4) - 2021-02-02
365
461
  ### Fixed
366
462
  - fixed crash during validation caused by a missing function body when parsing malformed code
367
463
 
368
464
 
369
465
 
370
- ## [0.30.3] - 2021-02-01
466
+ ## [0.30.3](https://github.com/rokucommunity/brighterscript/compare/v0.30.2...v0.30.3) - 2021-02-01
371
467
  ### Fixed
372
468
  - performance issue when transpiling larger projects, even when no brighterscript code was used
373
469
 
374
470
 
375
471
 
376
- ## [0.30.2] - 2021-01-31
472
+ ## [0.30.2](https://github.com/rokucommunity/brighterscript/compare/v0.30.1...v0.30.2) - 2021-01-31
377
473
  ### Fixed
378
474
  - xml parse error crashing validation ((#294)[https://github.com/rokucommunity/brighterscript/pull/294])
379
475
  - better handling for `createStringLiteral` ((#292)[https://github.com/rokucommunity/brighterscript/pull/292])
380
476
 
381
477
 
382
478
 
383
- ## [0.30.1] - 2021-01-29
479
+ ## [0.30.1](https://github.com/rokucommunity/brighterscript/compare/v0.30.0...v0.30.1) - 2021-01-29
384
480
  ### Fixed
385
481
  - bug that would crash while transpiling if a script tag didn't have a `type` attribute
386
482
  - XML transpile now honors the `sourceMap` option
387
483
 
388
484
 
389
485
 
390
- ## [0.30.0] - 2021-01-26
486
+ ## [0.30.0](https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0) - 2021-01-26
391
487
  ### Added
392
488
  - null coalescing operator (see [the docs](https://github.com/rokucommunity/brighterscript/blob/master/docs/null-coalescing-operator.md) for more information)
393
489
  ### Fixed
@@ -395,13 +491,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
395
491
 
396
492
 
397
493
 
398
- ## [0.29.0] - 2021-01-25
494
+ ## [0.29.0](https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0) - 2021-01-25
399
495
  ### Added
400
496
  - ternary operator (see [the docs](https://github.com/rokucommunity/brighterscript/blob/master/docs/ternary-operator.md) for more information)
401
497
 
402
498
 
403
499
 
404
- ## [0.28.2] - 2021-01-22
500
+ ## [0.28.2](https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0) - 2021-01-22
405
501
  ### Changed
406
502
  - config loading functions from `util.ts` are now run synchronously
407
503
  ### Fixed
@@ -410,7 +506,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
410
506
 
411
507
 
412
508
 
413
- ## [0.28.1] - 2021-01-19
509
+ ## [0.28.1](https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0) - 2021-01-19
414
510
  ### Changed
415
511
  - (For plugin authors) refactored many async methods into sync methods to simplify file creation/management. ([#278](https://github.com/rokucommunity/brighterscript/pull/278))
416
512
  ### Fixed
@@ -419,7 +515,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
419
515
 
420
516
 
421
517
 
422
- ## [0.28.0] - 2021-01-16
518
+ ## [0.28.0](https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0) - 2021-01-16
423
519
  ### Added
424
520
  - annotation support for classes and class methods ([#270](https://github.com/rokucommunity/brighterscript/pull/270))
425
521
  ### fixed
@@ -427,13 +523,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
427
523
 
428
524
 
429
525
 
430
- ## [0.27.0] - 2021-01-15
526
+ ## [0.27.0](https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0) - 2021-01-15
431
527
  ### Changed
432
528
  - plugin system changed to require a factory function instead of a singleton object ([#272](https://github.com/rokucommunity/brighterscript/pull/272))
433
529
 
434
530
 
435
531
 
436
- ## [0.26.0] - 2021-01-14
532
+ ## [0.26.0](https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0) - 2021-01-14
437
533
  ### Added
438
534
  - proper XML AST support
439
535
  - component interface validation
@@ -441,25 +537,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
441
537
 
442
538
 
443
539
 
444
- ## [0.25.0] - 2021-01-12
540
+ ## [0.25.0](https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0) - 2021-01-12
445
541
  ### Added
446
542
  - support for passing custom types as function parameters and return types ([#262](https://github.com/rokucommunity/brighterscript/issues/262))
447
543
 
448
544
 
449
545
 
450
- ## [0.24.2] - 2021-01-11
546
+ ## [0.24.2](https://github.com/rokucommunity/brighterscript/compare/v0.24.1...v0.24.2) - 2021-01-11
451
547
  ### Fixed
452
548
  - bug with transpiled child classes causing on-device stack overflows ([#267](https://github.com/rokucommunity/brighterscript/issues/267))
453
549
 
454
550
 
455
551
 
456
- ## [0.24.1] - 2021-01-09
552
+ ## [0.24.1](https://github.com/rokucommunity/brighterscript/compare/v0.24.0...v0.24.1) - 2021-01-09
457
553
  ### Changed
458
554
  - upgraded to [roku-deploy@3.2.4](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#324---2021-01-08)
459
555
 
460
556
 
461
557
 
462
- ## [0.24.0] - 2021-01-08
558
+ ## [0.24.0](https://github.com/rokucommunity/brighterscript/compare/v0.23.2...v0.24.0) - 2021-01-08
463
559
  ### Added
464
560
  - `sourceMap` option to enable/disable generating sourcemaps
465
561
  ### Changed
@@ -467,14 +563,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
467
563
 
468
564
 
469
565
 
470
- ## [0.23.2] - 2020-01-06
566
+ ## [0.23.2](https://github.com/rokucommunity/brighterscript/compare/v0.23.1...v0.23.2) - 2020-01-06
471
567
  ### Fixed
472
568
  - `isLiteralInvalid` was causing infinite recursion.
473
569
  - lock `vscode-languageserver-protocol` package version to prevent issues with vscode not following semantic versioning.
474
570
 
475
571
 
476
572
 
477
- ## [0.23.1] - 2020-12-22
573
+ ## [0.23.1](https://github.com/rokucommunity/brighterscript/compare/v0.23.0...v0.23.1) - 2020-12-22
478
574
  ### Changed
479
575
  - renamed `Scope.getFiles()` to `Scope.getAllFiles()` and added a new function called `Scope.getOwnFiles()`
480
576
  ### Fixed
@@ -482,7 +578,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
482
578
 
483
579
 
484
580
 
485
- ## [0.23.0] - 2020-12-18
581
+ ## [0.23.0](https://github.com/rokucommunity/brighterscript/compare/v0.22.1...v0.23.0) - 2020-12-18
486
582
  ### Changed
487
583
  - AST parser refactoring ([#244](https://github.com/rokucommunity/brighterscript/pull/244))
488
584
  - Make `ElseIf` into an `ElseIfStatement`
@@ -497,19 +593,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
497
593
 
498
594
 
499
595
 
500
- ## [0.22.1] - 2020-12-14
596
+ ## [0.22.1](https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1) - 2020-12-14
501
597
  ### Fixed
502
598
  - small bug introduced by vscode-languageserver causing crashes anytime negative range values are provided.
503
599
 
504
600
 
505
601
 
506
- ## [0.22.0] - 2020-11-23
602
+ ## [0.22.0](https://github.com/rokucommunity/brighterscript/compare/v0.21.0...v0.22.0) - 2020-11-23
507
603
  ### Added
508
604
  - `try/catch` and `throw` syntax support [#218](https://github.com/rokucommunity/brighterscript/issues/218)
509
605
 
510
606
 
511
607
 
512
- ## [0.21.0] - 2020-11-19
608
+ ## [0.21.0](https://github.com/rokucommunity/brighterscript/compare/v0.20.1...v0.21.0) - 2020-11-19
513
609
  ### Added
514
610
  - Catch when local variables and scope functions have the same name as a class. ([#246](https://github.com/rokucommunity/brighterscript/pull/246))
515
611
  - Catch when functions use keyword names ([#247](https://github.com/rokucommunity/brighterscript/pull/247))
@@ -525,20 +621,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
525
621
  - remove eliminated `BrsType` items from `reflection.ts`.
526
622
 
527
623
 
528
- ## [0.20.1] - 2020-11-16
624
+ ## [0.20.1](https://github.com/rokucommunity/brighterscript/compare/v0.20.0...v0.20.1) - 2020-11-16
529
625
  ### Changed
530
626
  - load plugins relatively to the project ([#242](https://github.com/rokucommunity/brighterscript/pull/242))
531
627
  - modified reflection utilities so they are compatible with TS strict null checks ([#243](https://github.com/rokucommunity/brighterscript/pull/243))
532
628
 
533
629
 
534
630
 
535
- ## [0.20.0] - 2020-11-13
631
+ ## [0.20.0](https://github.com/rokucommunity/brighterscript/compare/v0.19.0...v0.20.0) - 2020-11-13
536
632
  ### Added
537
633
  - more language server features: onWorkspaceSymbol, onSignatureHelp, onDocumentSymbol, onReferences, improve onDefinition ([#191](https://github.com/rokucommunity/brighterscript/pull/191))
538
634
 
539
635
 
540
636
 
541
- ## [0.19.0] - 2020-11-04
637
+ ## [0.19.0](https://github.com/rokucommunity/brighterscript/compare/v0.18.2...v0.19.0) - 2020-11-04
542
638
  ### Changed
543
639
  - `emitDefinitions` now defaults to `false` (it previously defaulted to `true`)
544
640
  ### Fixed
@@ -546,13 +642,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
546
642
 
547
643
 
548
644
 
549
- ## [0.18.2] - 2020-11-2
645
+ ## [0.18.2](https://github.com/rokucommunity/brighterscript/compare/v0.18.1...v0.18.2) - 2020-11-2
550
646
  ### Fixed
551
647
  - support on-demand parse for typedef-shadowed files ([#237](https://github.com/rokucommunity/brighterscript/pull/237))
552
648
 
553
649
 
554
650
 
555
- ## [0.18.1] - 2020-10-30
651
+ ## [0.18.1](https://github.com/rokucommunity/brighterscript/compare/v0.18.0...v0.18.1) - 2020-10-30
556
652
  ### Fixed
557
653
  - exclude bs1100 for typedef files (`Missing "super()" call in class constructor method.`)
558
654
  - fix some invalid class field types in typedef files
@@ -560,25 +656,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
560
656
 
561
657
 
562
658
 
563
- ## [0.18.0] - 2020-10-30
659
+ ## [0.18.0](https://github.com/rokucommunity/brighterscript/compare/v0.17.0...v0.18.0) - 2020-10-30
564
660
  ### Added
565
661
  - support for consuming and producing type definitions. ([188](https://github.com/rokucommunity/brighterscript/pull/188))
566
662
 
567
663
 
568
664
 
569
- ## [0.17.0] - 2020-10-27
665
+ ## [0.17.0](https://github.com/rokucommunity/brighterscript/compare/v0.16.12...v0.17.0) - 2020-10-27
570
666
  ### Added
571
667
  - Annotation syntax and AST support ([#234](https://github.com/rokucommunity/brighterscript/pull/234))
572
668
 
573
669
 
574
670
 
575
- ## [0.16.12] - 2020-10-21
671
+ ## [0.16.12](https://github.com/rokucommunity/brighterscript/compare/v0.16.11...v0.16.12) - 2020-10-21
576
672
  ### Fixed
577
673
  - parser bug when there was a trailing colon after `for` or `while` loop statements ([#230](https://github.com/rokucommunity/brighterscript/pull/230))
578
674
 
579
675
 
580
676
 
581
- ## [0.16.11] - 2020-10-20
677
+ ## [0.16.11](https://github.com/rokucommunity/brighterscript/compare/v0.16.10...v0.16.11 - 2020-10-20
582
678
  ### Fixed
583
679
  - bug when using single quotes in an xml script tag
584
680
  ### Changed
@@ -586,14 +682,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
586
682
 
587
683
 
588
684
 
589
- ## [0.16.10] - 2020-10-20
685
+ ## [0.16.10](https://github.com/rokucommunity/brighterscript/compare/v0.16.9...v0.16.10) - 2020-10-20
590
686
  ### Fixed
591
687
  - prevent crash when a callable has the same name as a javascript reserved name ([#226](https://github.com/rokucommunity/brighterscript/pull/226))
592
688
  - prevent crash when `import` statement is malformed ([#224](https://github.com/rokucommunity/brighterscript/pull/224))
593
689
 
594
690
 
595
691
 
596
- ## [0.16.9] - 2020-10-18
692
+ ## [0.16.9](https://github.com/rokucommunity/brighterscript/compare/v0.16.8...v0.16.9) - 2020-10-18
597
693
  ### Fixed
598
694
  - reduce language server throttle for validation and parsing now that those have improved performance.
599
695
  - massively improve validation performance by refactoring `getFileByPkgPath`
@@ -602,33 +698,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
602
698
 
603
699
 
604
700
 
605
- ## [0.16.8] - 2020-10-15
701
+ ## [0.16.8](https://github.com/rokucommunity/brighterscript/compare/v0.16.7...v0.16.8) - 2020-10-15
606
702
  ### Fixed
607
703
  - 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))
608
704
  - Drop expensive AST walking for collecting property names and instead collect them as part of parsing
609
705
 
610
706
 
611
707
 
612
- ## [0.16.7] - 2020-10-13
708
+ ## [0.16.7](https://github.com/rokucommunity/brighterscript/compare/v0.16.6...v0.16.7) - 2020-10-13
613
709
  ### Fixed
614
710
  - bug when finding `bsconfig.json` that would use the wrong cwd in multi-workspace language server situations.
615
711
  - bug when transpiling in-memory-only files. ([#212](https://github.com/rokucommunity/brighterscript/pull/212))
616
712
 
617
713
 
618
714
 
619
- ## [0.16.6] - 2020-10-13
715
+ ## [0.16.6](https://github.com/rokucommunity/brighterscript/compare/v0.16.5...v0.16.6) - 2020-10-13
620
716
  ### Fixed
621
717
  - quirk in the GitHub actions workflow that didn't publish the correct code.
622
718
 
623
719
 
624
720
 
625
- ## [0.16.5] - 2020-10-13
721
+ ## [0.16.5](https://github.com/rokucommunity/brighterscript/compare/v0.16.4...v0.16.5) - 2020-10-13
626
722
  ### Fixed
627
723
  - performance issue during the parse phase. We now defer certain collections until needed. ([#210](https://github.com/rokucommunity/brighterscript/pull/210))
628
724
 
629
725
 
630
726
 
631
- ## [0.16.4] - 2020-10-12
727
+ ## [0.16.4](https://github.com/rokucommunity/brighterscript/compare/v0.16.3...v0.16.4) - 2020-10-12
632
728
  ### Changed
633
729
  - 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))
634
730
  ### Fixed
@@ -637,7 +733,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
637
733
 
638
734
 
639
735
 
640
- ## [0.16.3] - 2020-10-11
736
+ ## [0.16.3](https://github.com/rokucommunity/brighterscript/compare/v0.16.2...v0.16.3) - 2020-10-11
641
737
  ### Changed
642
738
  - Add generic type parameter for `Program` add functions.
643
739
  - Export `BscType` type to simplify `BrsFile | XmlFile` usage everywhere.
@@ -646,13 +742,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
646
742
 
647
743
 
648
744
 
649
- ## [0.16.2] - 2020-10-09
745
+ ## [0.16.2](https://github.com/rokucommunity/brighterscript/compare/v0.16.1...v0.16.2) - 2020-10-09
650
746
  ### Fixed
651
747
  - critical bug in diagnostic printing that would crash the program if a diagnostic was missing a valid range.
652
748
 
653
749
 
654
750
 
655
- ## [0.16.1] - 2020-10-03
751
+ ## [0.16.1](https://github.com/rokucommunity/brighterscript/compare/v0.16.0...v0.16.1) - 2020-10-03
656
752
  ### Changed
657
753
  - rename `isEscapedCharCodeLiteral` to `isEscapedCharCodeLiteralExpression` to match other expression class names
658
754
  - rename `FunctionParameter` to `FunctionParameterExpression` to match other expression class names
@@ -663,7 +759,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
663
759
 
664
760
 
665
761
 
666
- ## [0.16.0] - 2020-10-02
762
+ ## [0.16.0](https://github.com/rokucommunity/brighterscript/compare/v0.15.2...v0.16.0) - 2020-10-02
667
763
  ### Added
668
764
  - `Expression.walk` and `Statement.walk` functions which provide shallow or deep walking of the AST
669
765
  - Many `ast` reflection methods to be used instead of `instanceof`.
@@ -676,38 +772,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
676
772
 
677
773
 
678
774
 
679
- ## [0.15.2] - 2020-10-01
775
+ ## [0.15.2](https://github.com/rokucommunity/brighterscript/compare/v0.15.1...v0.15.2) - 2020-10-01
680
776
  ### Fixed
681
777
  - 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))
682
778
 
683
779
 
684
780
 
685
- ## [0.15.1] - 2020-09-30
781
+ ## [0.15.1](https://github.com/rokucommunity/brighterscript/compare/v0.15.0...v0.15.1) - 2020-09-30
686
782
  ### Fixed
687
783
  - improved performance in the lexer and parser
688
784
  - potential for accidentally changing `cwd` during bsconfig resolving
689
785
 
690
786
 
691
787
 
692
- ## [0.15.0] - 2020-09-18
788
+ ## [0.15.0](https://github.com/rokucommunity/brighterscript/compare/v0.14.0...v0.15.0) - 2020-09-18
693
789
  ### Added
694
790
  - plugin API to allow visibility into the various compiler phases. This is currently in alpha. ([#170](https://github.com/rokucommunity/brighterscript/pull/170))
695
791
 
696
792
 
697
793
 
698
- ## [0.14.0] - 2020-09-04
794
+ ## [0.14.0](https://github.com/rokucommunity/brighterscript/compare/v0.13.2...v0.14.0) - 2020-09-04
699
795
  ### Changed
700
796
  - Add error diagnostic BS1115 which flags duplicate component names [#186](https://github.com/rokucommunity/brighterscript/pull/186)
701
797
 
702
798
 
703
799
 
704
- ## [0.13.2] - 2020-08-31
800
+ ## [0.13.2](https://github.com/rokucommunity/brighterscript/compare/v0.13.1...v0.13.2) - 2020-08-31
705
801
  ### Changed
706
802
  - Upgraded BS1104 to error (previously a warning) and refined the messaging.
707
803
 
708
804
 
709
805
 
710
- ## [0.13.1] - 2020-08-14
806
+ ## [0.13.1](https://github.com/rokucommunity/brighterscript/compare/v0.13.0...v0.13.1) - 2020-08-14
711
807
  ### Changed
712
808
  - upgraded to [roku-deploy@3.2.3](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#323---2020-08-14)
713
809
  - throw exception when copying to staging folder and `rootDir` does not exist in the file system
@@ -715,26 +811,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
715
811
 
716
812
 
717
813
 
718
- ## [0.13.0] - 2020-08-10
814
+ ## [0.13.0](https://github.com/rokucommunity/brighterscript/compare/v0.12.4...v0.13.0) - 2020-08-10
719
815
  ### Added
720
816
  - ability to mark the `extends` and `project` options in `bsconfig.json`, API and CLI as optional.
721
817
 
722
818
 
723
819
 
724
- ## [0.12.4] - 2020-08-06
820
+ ## [0.12.4](https://github.com/rokucommunity/brighterscript/compare/v0.12.3...v0.12.4) - 2020-08-06
725
821
  ### Fixed
726
822
  - bug in cli that wouldn't properly read bsconfig values. [#167](https://github.com/rokucommunity/brighterscript/issues/167)
727
823
  - bug in cli that doesn't use `retain-staging-folder` argument properly. [#168](https://github.com/rokucommunity/brighterscript/issues/168)
728
824
 
729
825
 
730
826
 
731
- ## [0.12.3] - 2020-08-03
827
+ ## [0.12.3](https://github.com/rokucommunity/brighterscript/compare/v0.12.2...v0.12.3) - 2020-08-03
732
828
  ### Fixed
733
829
  - 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.
734
830
 
735
831
 
736
832
 
737
- ## [0.12.2] - 2020-07-16
833
+ ## [0.12.2](https://github.com/rokucommunity/brighterscript/compare/v0.12.1...v0.12.2) - 2020-07-16
738
834
  ### Added
739
835
  - Expose `ProgramBuilder.transpile()` method to make it easier for tools to transpile programmatically. [#154](https://github.com/rokucommunity/brighterscript/issues/154)
740
836
  ### Fixed
@@ -742,7 +838,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
742
838
 
743
839
 
744
840
 
745
- ## [0.12.1] - 2020-07-15
841
+ ## [0.12.1](https://github.com/rokucommunity/brighterscript/compare/v0.12.0...v0.12.1) - 2020-07-15
746
842
  ### Changed
747
843
  - upgraded to [roku-deploy@3.2.2](https://github.com/rokucommunity/roku-deploy/blob/master/CHANGELOG.md#322---2020-07-14)
748
844
  ### Fixed
@@ -750,7 +846,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
750
846
 
751
847
 
752
848
 
753
- ## [0.12.0] - 2020-07-09
849
+ ## [0.12.0](https://github.com/rokucommunity/brighterscript/compare/v0.11.2...v0.12.0) - 2020-07-09
754
850
  ### Added
755
851
  - `diagnosticLevel` option to limit/control the noise in the console diagnostics
756
852
  ### Changed
@@ -762,7 +858,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
762
858
 
763
859
 
764
860
 
765
- ## [0.11.2] - 2020-07-09
861
+ ## [0.11.2](https://github.com/rokucommunity/brighterscript/compare/v0.11.1...v0.11.2) - 2020-07-09
766
862
  ### Changed
767
863
  - add 350ms debounce in LanguageServer `onDidChangeWatchedFiles` to increase performance by reducing the number of times a file is parsed and validated.
768
864
  ### Fixed
@@ -772,7 +868,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
772
868
 
773
869
 
774
870
 
775
- ## [0.11.1] - 2020-07-07
871
+ ## [0.11.1](https://github.com/rokucommunity/brighterscript/compare/v0.11.0...v0.11.1) - 2020-07-07
776
872
  ### Added
777
873
  - diagnostic for unknown file reference in import statements ([#139](https://github.com/rokucommunity/brighterscript/pull/139))
778
874
  ### Changed
@@ -785,7 +881,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
785
881
 
786
882
 
787
883
 
788
- ## [0.11.0] - 2020-07-06
884
+ ## [0.11.0](https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.11.0) - 2020-07-06
789
885
  ### Added
790
886
  - [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))
791
887
  - `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))
@@ -795,18 +891,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
795
891
 
796
892
 
797
893
 
798
- ## [0.10.11] - 2020-07-05
894
+ ## [0.10.11](https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.10.11) - 2020-07-05
799
895
  - Fix bug that would fail to copy files to staging without explicitly specifying `stagingFolderpath`. [#129](https://github.com/rokucommunity/brighterscript/issues/129)
800
896
 
801
897
 
802
898
 
803
- ## [0.10.10] - 2020-06-12
899
+ ## [0.10.10](https://github.com/rokucommunity/brighterscript/compare/v0.10.9...v0.10.10) - 2020-06-12
804
900
  ### Fixed
805
901
  - include the missing `bslib.brs` file in the npm package which was causing errors during transpile.
806
902
 
807
903
 
808
904
 
809
- ## [0.10.9] 2020-06-12
905
+ ## [0.10.9](https://github.com/rokucommunity/brighterscript/compare/v0.10.8...v0.10.9) 2020-06-12
810
906
  ### Added
811
907
  - bslib.brs gets copied to `pkg:/source` and added as an import to every component on transpile.
812
908
  - several timing logs under the `"info"` log level.
@@ -818,32 +914,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
818
914
 
819
915
 
820
916
 
821
- ## [0.10.8] - 2020-06-09
917
+ ## [0.10.8](https://github.com/rokucommunity/brighterscript/compare/v0.10.7...v0.10.8) - 2020-06-09
822
918
  ### Fixed
823
919
  - Allow leading spcaes for `bs:disable-line` and `bs:disable-next-line` comments ([#108](https://github.com/rokucommunity/brighterscript/pull/108))
824
920
 
825
921
 
826
922
 
827
- ## [0.10.7] - 2020-06-08
923
+ ## [0.10.7](https://github.com/rokucommunity/brighterscript/compare/v0.10.6...v0.10.7) - 2020-06-08
828
924
  ### Fixed
829
925
  - bug in cli that was always returning a nonzero error code
830
926
 
831
927
 
832
928
 
833
- ## [0.10.6] - 2020-06-05
929
+ ## [0.10.6](https://github.com/rokucommunity/brighterscript/compare/v0.10.5...v0.10.6) - 2020-06-05
834
930
  ### Fixed
835
931
  - incorrect definition for global `Left()` function. ([#100](https://github.com/rokucommunity/brighterscript/issues/100))
836
932
  - missing definition for global `Tab()` and `Pos()` functions ([#101](https://github.com/rokucommunity/brighterscript/issues/101))
837
933
 
838
934
 
839
935
 
840
- ## [0.10.5] - 2020-06-04
936
+ ## [0.10.5](https://github.com/rokucommunity/brighterscript/compare/v0.10.4...v0.10.5) - 2020-06-04
841
937
  ### Changed
842
938
  - added better logging for certain critical language server crashes
843
939
 
844
940
 
845
941
 
846
- ## [0.10.4] - 2020-05-28
942
+ ## [0.10.4](https://github.com/rokucommunity/brighterscript/compare/v0.10.3...v0.10.4) - 2020-05-28
847
943
  ### Fixed
848
944
  - 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))
849
945
  - flag parameter with same name as namespace
@@ -852,14 +948,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
852
948
 
853
949
 
854
950
 
855
- ## [0.10.3] - 2020-05-27
951
+ ## [0.10.3](https://github.com/rokucommunity/brighterscript/compare/v0.10.2...v0.10.3) - 2020-05-27
856
952
  ### Changed
857
953
  - tokenizing a string with no closing quote will now include all of the text until the end of the line.
858
954
  - language server `TranspileFile` command now waits until the program is finished building before trying to transpile.
859
955
 
860
956
 
861
957
 
862
- ## [0.10.2] - 2020-05-23
958
+ ## [0.10.2](https://github.com/rokucommunity/brighterscript/compare/v0.10.1...v0.10.2) - 2020-05-23
863
959
  ### Added
864
960
  - language server command `TranspileFile` which will return the transpiled contents of the requested file.
865
961
  ### Fixed
@@ -868,7 +964,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
868
964
 
869
965
 
870
966
 
871
- ## [0.10.1] - 2020-05-22
967
+ ## [0.10.1](https://github.com/rokucommunity/brighterscript/compare/v0.10.0...v0.10.1) - 2020-05-22
872
968
  ### Fixed
873
969
  - transpile bug for compound assignment statements (such as `+=`, `-=`) ([#87](https://github.com/rokucommunity/brighterscript/issues/87))
874
970
  - transpile bug that was inserting function parameter types before default values ([#88](https://github.com/rokucommunity/brighterscript/issues/88))
@@ -876,13 +972,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
876
972
 
877
973
 
878
974
 
879
- ## [0.10.0] - 2020-05-19
975
+ ## [0.10.0](https://github.com/rokucommunity/brighterscript/compare/v0.9.8...v0.10.0) - 2020-05-19
880
976
  ### Added
881
977
  - new callfunc operator.
882
978
 
883
979
 
884
980
 
885
- ## [0.9.8] - 2020-05-16
981
+ ## [0.9.8](https://github.com/rokucommunity/brighterscript/compare/v0.9.7...v0.9.8) - 2020-05-16
886
982
  ### Changed
887
983
  - the inner event system handling file changes. This should fix several race conditions causing false negatives during CLI runs.
888
984
  ### Fixed
@@ -890,7 +986,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
890
986
 
891
987
 
892
988
 
893
- ## [0.9.7] - 2020-05-14
989
+ ## [0.9.7](https://github.com/rokucommunity/brighterscript/compare/v0.9.6...v0.9.7) - 2020-05-14
894
990
  ### Changed
895
991
  - TypeScript target to "ES2017" which provides a significant performance boost in lexer (~30%) and parser (~175%)
896
992
  ### Fixed
@@ -900,7 +996,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
900
996
 
901
997
 
902
998
 
903
- ## [0.9.6] - 2020-05-11
999
+ ## [0.9.6](https://github.com/rokucommunity/brighterscript/compare/v0.9.5...v0.9.6) - 2020-05-11
904
1000
  ### Added
905
1001
  - `logLevel` option from the bsconfig.json and command prompt that allows specifying how much detain the logging should contain.
906
1002
  - additional messages during cli run
@@ -912,7 +1008,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
912
1008
 
913
1009
 
914
1010
 
915
- ## [0.9.5] - 2020-05-06
1011
+ ## [0.9.5](https://github.com/rokucommunity/brighterscript/compare/v0.9.4...v0.9.5) - 2020-05-06
916
1012
  ### Added
917
1013
  - new config option called `showDiagnosticsInConsole` which disables printing diagnostics to the console
918
1014
  ### Fixed
@@ -922,7 +1018,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
922
1018
 
923
1019
 
924
1020
 
925
- ## [0.9.4] - 2020-05-05
1021
+ ## [0.9.4](https://github.com/rokucommunity/brighterscript/compare/v0.9.3...v0.9.4) - 2020-05-05
926
1022
  ### Added
927
1023
  - diagnostic for detecting unnecessary script imports when `autoImportComponentScript` is enabled
928
1024
  ### Changed
@@ -935,7 +1031,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
935
1031
 
936
1032
 
937
1033
 
938
- ## [0.9.3] - 2020-05-04
1034
+ ## [0.9.3](https://github.com/rokucommunity/brighterscript/compare/v0.9.2...v0.9.3) - 2020-05-04
939
1035
  ### Changed
940
1036
  - do not show BRS1013 for standalone files ([#72](https://github.com/rokucommunity/brighterscript/issues/72))
941
1037
  - 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))
@@ -944,7 +1040,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
944
1040
 
945
1041
 
946
1042
 
947
- ## [0.9.2] - 2020-05-02
1043
+ ## [0.9.2](https://github.com/rokucommunity/brighterscript/compare/v0.9.1...v0.9.2) - 2020-05-02
948
1044
  ### Changed
949
1045
  - intellisense anywhere other than next to a dot now includes keywords (#67)
950
1046
 
@@ -955,19 +1051,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
955
1051
 
956
1052
 
957
1053
 
958
- ## [0.9.1] - 2020-05-01
1054
+ ## [0.9.1](https://github.com/rokucommunity/brighterscript/compare/v0.9.0...v0.9.1) - 2020-05-01
959
1055
  ### Fixed
960
1056
  - bug with upper-case two-word conditional compile tokens (`#ELSE IF` and `#END IF`) (#63)
961
1057
 
962
1058
 
963
1059
 
964
- ## [0.9.0] - 2020-05-01
1060
+ ## [0.9.0](https://github.com/rokucommunity/brighterscript/compare/v0.8.2...v0.9.0) - 2020-05-01
965
1061
  ### Added
966
1062
  - new compile flag `autoImportComponentScript` which will automatically import a script for a component with the same name if it exists.
967
1063
 
968
1064
 
969
1065
 
970
- ## [0.8.2] - 2020-04-29
1066
+ ## [0.8.2](https://github.com/rokucommunity/brighterscript/compare/v0.8.1...v0.8.2) - 2020-04-29
971
1067
  ### Fixed
972
1068
  - bugs in namespace transpilation
973
1069
  - bugs in class transpilation
@@ -976,14 +1072,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
976
1072
 
977
1073
 
978
1074
 
979
- ## [0.8.1] - 2020-04-27
1075
+ ## [0.8.1](https://github.com/rokucommunity/brighterscript/compare/v0.8.0...v0.8.1) - 2020-04-27
980
1076
  ### Fixed
981
1077
  - Bug where class property initializers would cause parse error
982
1078
  - better parse recovery for incomplete class members
983
1079
 
984
1080
 
985
1081
 
986
- ## [0.8.0] - 2020-04-26
1082
+ ## [0.8.0](https://github.com/rokucommunity/brighterscript/compare/v0.7.2...v0.8.0) - 2020-04-26
987
1083
  ### Added
988
1084
  - new `import` syntax for BrighterScript projects.
989
1085
  - experimental transpile support for xml files (converts `.bs` extensions to `.brs`, auto-appends the `import` statments to each xml component)
@@ -991,19 +1087,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
991
1087
  - upgraded to vscode-languageserver@6.1.1
992
1088
 
993
1089
 
994
- ## [0.7.2] - 2020-04-24
1090
+ ## [0.7.2](https://github.com/rokucommunity/brighterscript/compare/v0.7.1...v0.7.2) - 2020-04-24
995
1091
  ### Fixed
996
1092
  - runtime bug in the language server when validating incomplete class statements
997
1093
 
998
1094
 
999
1095
 
1000
- ## [0.7.1] - 2020-04-23
1096
+ ## [0.7.1](https://github.com/rokucommunity/brighterscript/compare/v0.7.0...v0.7.1) - 2020-04-23
1001
1097
  ### Fixed
1002
1098
  - dependency issue: `glob` is required but was not listed as a dependency
1003
1099
 
1004
1100
 
1005
1101
 
1006
- ## [0.7.0] - 2020-04-23
1102
+ ## [0.7.0](https://github.com/rokucommunity/brighterscript/compare/v0.6.0...v0.7.0) - 2020-04-23
1007
1103
  ### Added
1008
1104
  - basic support for namespaces
1009
1105
  - experimental parser support for import statements (no transpile yet)
@@ -1012,7 +1108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1012
1108
 
1013
1109
 
1014
1110
 
1015
- ## [0.6.0] 2020-04-15
1111
+ ## [0.6.0](https://github.com/rokucommunity/brighterscript/compare/v0.5.4...v0.6.0) 2020-04-15
1016
1112
  ### Added
1017
1113
  - ability to filter out diagnostics by using the `diagnosticFilters` option in bsconfig
1018
1114
  ### Changed
@@ -1022,14 +1118,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1022
1118
 
1023
1119
 
1024
1120
 
1025
- ## [0.5.4] 2020-04-13
1121
+ ## [0.5.4](https://github.com/rokucommunity/brighterscript/compare/v0.5.3...v0.5.4) 2020-04-13
1026
1122
  ### Fixed
1027
1123
  - Syntax bug that wasn't allowing period before indexed get expression (example: `prop.["key"]`) (#58)
1028
1124
  - Syntax bug preventing comments from being used in various locations within a class
1029
1125
 
1030
1126
 
1031
1127
 
1032
- ## [0.5.3] - 2020-04-12
1128
+ ## [0.5.3](https://github.com/rokucommunity/brighterscript/compare/v0.5.2...v0.5.3) - 2020-04-12
1033
1129
  ### Added
1034
1130
  - syntax support for the xml attribute operator (`node@someAttr`) (#34)
1035
1131
  - syntax support for bitshift operators (`<<` and `>>`) (#50)
@@ -1039,7 +1135,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1039
1135
 
1040
1136
 
1041
1137
 
1042
- ## [0.5.2] - 2020-04-11
1138
+ ## [0.5.2](https://github.com/rokucommunity/brighterscript/compare/v0.5.1...v0.5.2) - 2020-04-11
1043
1139
  ### Changed
1044
1140
  - 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)
1045
1141
  ### Fixed
@@ -1048,13 +1144,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1048
1144
 
1049
1145
 
1050
1146
 
1051
- ## [0.5.1] - 2020-04-10
1147
+ ## [0.5.1](https://github.com/rokucommunity/brighterscript/compare/v0.5.0...v0.5.1) - 2020-04-10
1052
1148
  ### Changed
1053
1149
  - 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)
1054
1150
 
1055
1151
 
1056
1152
 
1057
- ## [0.5.0] - 2020-04-10
1153
+ ## [0.5.0](https://github.com/rokucommunity/brighterscript/compare/v0.4.4...v0.5.0) - 2020-04-10
1058
1154
  ### Added
1059
1155
  - several new diagnostics for conditional compiles. Some of them allow the parser to recover and continue.
1060
1156
  - experimental class transpile support. There is still no intellisense for classes yet though.
@@ -1067,31 +1163,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1067
1163
 
1068
1164
 
1069
1165
 
1070
- ## [0.4.4] - 2020-04-04
1166
+ ## [0.4.4](https://github.com/rokucommunity/brighterscript/compare/v0.4.3...v0.4.4) - 2020-04-04
1071
1167
  ### Fixed
1072
1168
  - bug in the ProgramBuilder that would terminate the program on first run if an error diagnostic was found, even when in watch mode.
1073
1169
 
1074
1170
 
1075
1171
 
1076
- ## [0.4.3] - 2020-04-03
1172
+ ## [0.4.3](https://github.com/rokucommunity/brighterscript/compare/v0.4.2...v0.4.3) - 2020-04-03
1077
1173
  ### Changed
1078
1174
  - the `bsc` cli now emits a nonzero return code whenever parse errors are encountered, which allows tools to detect compile-time errors. (#43)
1079
1175
 
1080
1176
 
1081
1177
 
1082
- ## [0.4.2] - 2020-04-01
1178
+ ## [0.4.2](https://github.com/rokucommunity/brighterscript/compare/v0.4.1...v0.4.2) - 2020-04-01
1083
1179
  ### Changed
1084
1180
  - upgraded to [roku-deploy@3.0.0](https://www.npmjs.com/package/roku-deploy/v/3.0.0)
1085
1181
 
1086
1182
 
1087
1183
 
1088
- ## [0.4.1] - 2020-01-11
1184
+ ## [0.4.1](https://github.com/rokucommunity/brighterscript/compare/v0.4.0...v0.4.1) - 2020-01-11
1089
1185
  ### Changed
1090
1186
  - 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.
1091
1187
 
1092
1188
 
1093
1189
 
1094
- ## [0.4.0] - 2020-01-07
1190
+ ## [0.4.0](https://github.com/rokucommunity/brighterscript/compare/v0.3.1...v0.4.0) - 2020-01-07
1095
1191
  ### Added
1096
1192
  - ability to specify the pkgPath of a file when adding to the project.
1097
1193
  ### Changed
@@ -1104,14 +1200,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1104
1200
 
1105
1201
 
1106
1202
 
1107
- ## [0.3.1] - 2019-11-08
1203
+ ## [0.3.1](https://github.com/rokucommunity/brighterscript/compare/v0.3.0...v0.3.1) - 2019-11-08
1108
1204
  ### Fixed
1109
1205
  - language server bug that was showing error messages in certain startup race conditions.
1110
1206
  - error during hover caused by race condition during file re-parse.
1111
1207
 
1112
1208
 
1113
1209
 
1114
- ## [0.3.0] - 2019-10-03
1210
+ ## [0.3.0](https://github.com/rokucommunity/brighterscript/compare/v0.2.2...v0.3.0) - 2019-10-03
1115
1211
  ### Added
1116
1212
  - support for parsing opened files not included in any project.
1117
1213
  ### Fixed
@@ -1119,13 +1215,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1119
1215
 
1120
1216
 
1121
1217
 
1122
- ## [0.2.2] - 2019-09-27
1218
+ ## [0.2.2](https://github.com/rokucommunity/brighterscript/compare/v0.2.1...v0.2.2) - 2019-09-27
1123
1219
  ### Fixed
1124
1220
  - 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.
1125
1221
 
1126
1222
 
1127
1223
 
1128
- ## [0.2.1] - 2019-09-24
1224
+ ## [0.2.1](https://github.com/rokucommunity/brighterscript/compare/v0.2.0...v0.2.1) - 2019-09-24
1129
1225
  ### Changed
1130
1226
  - the text for diagnostic 1010 to say "override" instead of "shadows"
1131
1227
  ### Fixed
@@ -1136,7 +1232,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1136
1232
 
1137
1233
 
1138
1234
 
1139
- ## [0.2.0] - 2019-09-20
1235
+ ## [0.2.0](https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.2.0) - 2019-09-20
1140
1236
  ### Added
1141
1237
  - bsconfig.json validation
1142
1238
  - slightly smarter intellisense that knows when you're trying to complete an object property.
@@ -1151,132 +1247,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1151
1247
  - Bug during file creation that wouldn't recognize the file
1152
1248
 
1153
1249
 
1154
- ## [0.1.0] - 2019-08-10
1250
+ ## [0.1.0](https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.1.0) - 2019-08-10
1155
1251
  ### Changed
1156
1252
  - Cloned from [brightscript-language](https://github.com/rokucommunity/brightscript-language)
1157
1253
 
1158
1254
 
1159
- [0.1.0]: https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.1.0
1160
- [0.2.0]: https://github.com/rokucommunity/brighterscript/compare/v0.1.0...v0.2.0
1161
- [0.2.1]: https://github.com/rokucommunity/brighterscript/compare/v0.2.0...v0.2.1
1162
- [0.2.2]: https://github.com/rokucommunity/brighterscript/compare/v0.2.1...v0.2.2
1163
- [0.3.0]: https://github.com/rokucommunity/brighterscript/compare/v0.2.2...v0.3.0
1164
- [0.3.1]: https://github.com/rokucommunity/brighterscript/compare/v0.3.0...v0.3.1
1165
- [0.4.0]: https://github.com/rokucommunity/brighterscript/compare/v0.3.1...v0.4.0
1166
- [0.4.1]: https://github.com/rokucommunity/brighterscript/compare/v0.4.0...v0.4.1
1167
- [0.4.2]: https://github.com/rokucommunity/brighterscript/compare/v0.4.1...v0.4.2
1168
- [0.4.3]: https://github.com/rokucommunity/brighterscript/compare/v0.4.2...v0.4.3
1169
- [0.4.4]: https://github.com/rokucommunity/brighterscript/compare/v0.4.3...v0.4.4
1170
- [0.5.0]: https://github.com/rokucommunity/brighterscript/compare/v0.4.4...v0.5.0
1171
- [0.5.1]: https://github.com/rokucommunity/brighterscript/compare/v0.5.0...v0.5.1
1172
- [0.5.2]: https://github.com/rokucommunity/brighterscript/compare/v0.5.1...v0.5.2
1173
- [0.5.3]: https://github.com/rokucommunity/brighterscript/compare/v0.5.2...v0.5.3
1174
- [0.5.4]: https://github.com/rokucommunity/brighterscript/compare/v0.5.3...v0.5.4
1175
- [0.6.0]: https://github.com/rokucommunity/brighterscript/compare/v0.5.4...v0.6.0
1176
- [0.7.0]: https://github.com/rokucommunity/brighterscript/compare/v0.6.0...v0.7.0
1177
- [0.7.1]: https://github.com/rokucommunity/brighterscript/compare/v0.7.0...v0.7.1
1178
- [0.7.2]: https://github.com/rokucommunity/brighterscript/compare/v0.7.1...v0.7.2
1179
- [0.8.0]: https://github.com/rokucommunity/brighterscript/compare/v0.7.2...v0.8.0
1180
- [0.8.1]: https://github.com/rokucommunity/brighterscript/compare/v0.8.0...v0.8.1
1181
- [0.8.2]: https://github.com/rokucommunity/brighterscript/compare/v0.8.1...v0.8.2
1182
- [0.9.0]: https://github.com/rokucommunity/brighterscript/compare/v0.8.2...v0.9.0
1183
- [0.9.1]: https://github.com/rokucommunity/brighterscript/compare/v0.9.0...v0.9.1
1184
- [0.9.2]: https://github.com/rokucommunity/brighterscript/compare/v0.9.1...v0.9.2
1185
- [0.9.3]: https://github.com/rokucommunity/brighterscript/compare/v0.9.2...v0.9.3
1186
- [0.9.4]: https://github.com/rokucommunity/brighterscript/compare/v0.9.3...v0.9.4
1187
- [0.9.5]: https://github.com/rokucommunity/brighterscript/compare/v0.9.4...v0.9.5
1188
- [0.9.6]: https://github.com/rokucommunity/brighterscript/compare/v0.9.5...v0.9.6
1189
- [0.9.7]: https://github.com/rokucommunity/brighterscript/compare/v0.9.6...v0.9.7
1190
- [0.9.8]: https://github.com/rokucommunity/brighterscript/compare/v0.9.7...v0.9.8
1191
- [0.10.0]: https://github.com/rokucommunity/brighterscript/compare/v0.9.8...v0.10.0
1192
- [0.10.1]: https://github.com/rokucommunity/brighterscript/compare/v0.10.0...v0.10.1
1193
- [0.10.2]: https://github.com/rokucommunity/brighterscript/compare/v0.10.1...v0.10.2
1194
- [0.10.3]: https://github.com/rokucommunity/brighterscript/compare/v0.10.2...v0.10.3
1195
- [0.10.4]: https://github.com/rokucommunity/brighterscript/compare/v0.10.3...v0.10.4
1196
- [0.10.5]: https://github.com/rokucommunity/brighterscript/compare/v0.10.4...v0.10.5
1197
- [0.10.6]: https://github.com/rokucommunity/brighterscript/compare/v0.10.5...v0.10.6
1198
- [0.10.7]: https://github.com/rokucommunity/brighterscript/compare/v0.10.6...v0.10.7
1199
- [0.10.8]: https://github.com/rokucommunity/brighterscript/compare/v0.10.7...v0.10.8
1200
- [0.10.9]: https://github.com/rokucommunity/brighterscript/compare/v0.10.8...v0.10.9
1201
- [0.10.10]: https://github.com/rokucommunity/brighterscript/compare/v0.10.9...v0.10.10
1202
- [0.11.0]: https://github.com/rokucommunity/brighterscript/compare/v0.10.10...v0.11.0
1203
- [0.11.1]: https://github.com/rokucommunity/brighterscript/compare/v0.11.0...v0.11.1
1204
- [0.11.2]: https://github.com/rokucommunity/brighterscript/compare/v0.11.1...v0.11.2
1205
- [0.11.3]: https://github.com/rokucommunity/brighterscript/compare/v0.11.2...v0.11.3
1206
- [0.12.0]: https://github.com/rokucommunity/brighterscript/compare/v0.11.3...v0.12.0
1207
- [0.12.1]: https://github.com/rokucommunity/brighterscript/compare/v0.12.0...v0.12.1
1208
- [0.12.2]: https://github.com/rokucommunity/brighterscript/compare/v0.12.1...v0.12.2
1209
- [0.12.3]: https://github.com/rokucommunity/brighterscript/compare/v0.12.2...v0.12.3
1210
- [0.12.4]: https://github.com/rokucommunity/brighterscript/compare/v0.12.3...v0.12.4
1211
- [0.13.0]: https://github.com/rokucommunity/brighterscript/compare/v0.12.4...v0.13.0
1212
- [0.13.1]: https://github.com/rokucommunity/brighterscript/compare/v0.13.0...v0.13.1
1213
- [0.13.2]: https://github.com/rokucommunity/brighterscript/compare/v0.13.1...v0.13.2
1214
- [0.14.0]: https://github.com/rokucommunity/brighterscript/compare/v0.13.2...v0.14.0
1215
- [0.15.0]: https://github.com/rokucommunity/brighterscript/compare/v0.14.0...v0.15.0
1216
- [0.15.1]: https://github.com/rokucommunity/brighterscript/compare/v0.15.0...v0.15.1
1217
- [0.15.2]: https://github.com/rokucommunity/brighterscript/compare/v0.15.1...v0.15.2
1218
- [0.16.0]: https://github.com/rokucommunity/brighterscript/compare/v0.15.2...v0.16.0
1219
- [0.16.1]: https://github.com/rokucommunity/brighterscript/compare/v0.16.0...v0.16.1
1220
- [0.16.2]: https://github.com/rokucommunity/brighterscript/compare/v0.16.1...v0.16.2
1221
- [0.16.3]: https://github.com/rokucommunity/brighterscript/compare/v0.16.2...v0.16.3
1222
- [0.16.4]: https://github.com/rokucommunity/brighterscript/compare/v0.16.3...v0.16.4
1223
- [0.16.5]: https://github.com/rokucommunity/brighterscript/compare/v0.16.4...v0.16.5
1224
- [0.16.6]: https://github.com/rokucommunity/brighterscript/compare/v0.16.5...v0.16.6
1225
- [0.16.7]: https://github.com/rokucommunity/brighterscript/compare/v0.16.6...v0.16.7
1226
- [0.16.8]: https://github.com/rokucommunity/brighterscript/compare/v0.16.7...v0.16.8
1227
- [0.16.9]: https://github.com/rokucommunity/brighterscript/compare/v0.16.8...v0.16.9
1228
- [0.16.10]: https://github.com/rokucommunity/brighterscript/compare/v0.16.9...v0.16.10
1229
- [0.16.11]: https://github.com/rokucommunity/brighterscript/compare/v0.16.10...v0.16.11
1230
- [0.16.12]: https://github.com/rokucommunity/brighterscript/compare/v0.16.11...v0.16.12
1231
- [0.17.0]: https://github.com/rokucommunity/brighterscript/compare/v0.16.12...v0.17.0
1232
- [0.18.0]: https://github.com/rokucommunity/brighterscript/compare/v0.17.0...v0.18.0
1233
- [0.18.1]: https://github.com/rokucommunity/brighterscript/compare/v0.18.0...v0.18.1
1234
- [0.18.2]: https://github.com/rokucommunity/brighterscript/compare/v0.18.1...v0.18.2
1235
- [0.19.0]: https://github.com/rokucommunity/brighterscript/compare/v0.18.2...v0.19.0
1236
- [0.20.0]: https://github.com/rokucommunity/brighterscript/compare/v0.19.0...v0.20.0
1237
- [0.20.1]: https://github.com/rokucommunity/brighterscript/compare/v0.20.0...v0.20.1
1238
- [0.21.0]: https://github.com/rokucommunity/brighterscript/compare/v0.20.1...v0.21.0
1239
- [0.22.0]: https://github.com/rokucommunity/brighterscript/compare/v0.21.0...v0.22.0
1240
- [0.22.1]: https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1
1241
- [0.22.1]: https://github.com/rokucommunity/brighterscript/compare/v0.22.0...v0.22.1
1242
- [0.23.0]: https://github.com/rokucommunity/brighterscript/compare/v0.22.1...v0.23.0
1243
- [0.23.1]: https://github.com/rokucommunity/brighterscript/compare/v0.23.0...v0.23.1
1244
- [0.23.2]: https://github.com/rokucommunity/brighterscript/compare/v0.23.1...v0.23.2
1245
- [0.24.0]: https://github.com/rokucommunity/brighterscript/compare/v0.23.2...v0.24.0
1246
- [0.24.1]: https://github.com/rokucommunity/brighterscript/compare/v0.24.0...v0.24.1
1247
- [0.24.2]: https://github.com/rokucommunity/brighterscript/compare/v0.24.1...v0.24.2
1248
- [0.25.0]: https://github.com/rokucommunity/brighterscript/compare/v0.24.2...v0.25.0
1249
- [0.26.0]: https://github.com/rokucommunity/brighterscript/compare/v0.25.0...v0.26.0
1250
- [0.27.0]: https://github.com/rokucommunity/brighterscript/compare/v0.26.0...v0.27.0
1251
- [0.28.0]: https://github.com/rokucommunity/brighterscript/compare/v0.27.0...v0.28.0
1252
- [0.28.1]: https://github.com/rokucommunity/brighterscript/compare/v0.28.0...v0.28.1
1253
- [0.28.2]: https://github.com/rokucommunity/brighterscript/compare/v0.28.1...v0.28.2
1254
- [0.29.0]: https://github.com/rokucommunity/brighterscript/compare/v0.28.2...v0.29.0
1255
- [0.30.0]: https://github.com/rokucommunity/brighterscript/compare/v0.29.0...v0.30.0
1256
- [0.30.1]: https://github.com/rokucommunity/brighterscript/compare/v0.30.0...v0.30.1
1257
- [0.30.2]: https://github.com/rokucommunity/brighterscript/compare/v0.30.1...v0.30.2
1258
- [0.30.3]: https://github.com/rokucommunity/brighterscript/compare/v0.30.2...v0.30.3
1259
- [0.30.4]: https://github.com/rokucommunity/brighterscript/compare/v0.30.3...v0.30.4
1260
- [0.30.5]: https://github.com/rokucommunity/brighterscript/compare/v0.30.4...v0.30.5
1261
- [0.30.6]: https://github.com/rokucommunity/brighterscript/compare/v0.30.5...v0.30.6
1262
- [0.30.7]: https://github.com/rokucommunity/brighterscript/compare/v0.30.6...v0.30.7
1263
- [0.30.8]: https://github.com/rokucommunity/brighterscript/compare/v0.30.7...v0.30.8
1264
- [0.30.9]: https://github.com/rokucommunity/brighterscript/compare/v0.30.8...v0.30.9
1265
- [0.31.0]: https://github.com/rokucommunity/brighterscript/compare/v0.30.9...v0.31.0
1266
- [0.31.1]: https://github.com/rokucommunity/brighterscript/compare/v0.31.0...v0.31.1
1267
- [0.31.2]: https://github.com/rokucommunity/brighterscript/compare/v0.31.1...v0.31.2
1268
- [0.32.2]: https://github.com/rokucommunity/brighterscript/compare/v0.31.2...v0.32.2
1269
- [0.32.3]: https://github.com/rokucommunity/brighterscript/compare/v0.32.2...v0.32.3
1270
- [0.33.0]: https://github.com/rokucommunity/brighterscript/compare/v0.32.3...v0.33.0
1271
- [0.34.0]: https://github.com/rokucommunity/brighterscript/compare/v0.33.0...v0.34.0
1272
- [0.34.1]: https://github.com/rokucommunity/brighterscript/compare/v0.34.0...v0.34.1
1273
- [0.34.2]: https://github.com/rokucommunity/brighterscript/compare/v0.34.1...v0.34.2
1274
- [0.34.3]: https://github.com/rokucommunity/brighterscript/compare/v0.34.2...v0.34.3
1275
- [0.35.0]: https://github.com/rokucommunity/brighterscript/compare/v0.34.3...v0.35.0
1276
- [0.36.0]: https://github.com/rokucommunity/brighterscript/compare/v0.35.0...v0.36.0
1277
- [0.37.0]: https://github.com/rokucommunity/brighterscript/compare/v0.36.0...v0.37.0
1278
- [0.37.1]: https://github.com/rokucommunity/brighterscript/compare/v0.37.0...v0.37.1
1279
- [0.37.2]: https://github.com/rokucommunity/brighterscript/compare/v0.37.1...v0.37.2
1280
- [0.37.3]: https://github.com/rokucommunity/brighterscript/compare/v0.37.2...v0.37.3
1281
- [0.37.4]: https://github.com/rokucommunity/brighterscript/compare/v0.37.3...v0.37.4
1282
- [0.38.0]: https://github.com/rokucommunity/brighterscript/compare/v0.37.4...v0.38.0
1255
+
1256
+
1257
+
1258
+
1259
+
1260
+
1261
+
1262
+