brighterscript 1.0.0-alpha.1 → 1.0.0-alpha.13

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