@markw65/monkeyc-optimizer 1.0.44 → 1.0.45

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.
package/README.md CHANGED
@@ -528,3 +528,21 @@ Bug Fixes
528
528
 
529
529
  - Add more parsing of expressions embedded in resource files. This should now be complete, in that the analasis pass should see every symbol definition and reference from anywhere in the project.
530
530
  - Generalize constant folding to (nearly) all supported types. We don't fold additions between Float or Double and String, because the exact behavior is [buggy and upredictable](https://forums.garmin.com/developer/connect-iq/i/bug-reports/sdk-4-1-7-constant-folds-floats-strings-incorrectly)
531
+
532
+ ### 1.0.45
533
+
534
+ - Update to [@markw65/prettier-plugin-monkeyc@1.0.41](https://github.com/markw65/prettier-plugin-monkeyc#1041)
535
+
536
+ - Fixes a few parser edge cases
537
+
538
+ - Bug fixes
539
+
540
+ - Fix a bug constant folding == and !=
541
+ - Make sure to include all languages, even for devices that don't support them, because they're still supported in settings. Do this in a way that avoids creating warnings.
542
+ - Look at all build dependencies when deciding whether to regenerate the optimized files.
543
+ - Don't produce errors when "-" is used as the first character of an id in a resource file (although in most cases, this is not a good idea, and will fail at compile time)
544
+
545
+ - Improvements
546
+ - Better typing for resources
547
+ - Refactor PRE
548
+ - Improve accuracy of whether or not a function can modify a particular global (resulting in better PRE)