Update v1.1.7
Posted: 07 Aug 2016, 11:51
Update: v1.1.7
- Fixed bug when assigning a variable to a ternary operation.
Let's help each other out
https://www.autohotkey.com:443/boards/
https://www.autohotkey.com:443/boards/viewtopic.php?f=6&t=13565
- Fixed bug when assigning a variable to a ternary operation.
Code: Select all
var := 99
MsgBox var=%var%
mycode := "var2 := var+2`nMsgBox, var2 from within ahkExec = `%var2`%"
MsgBox, mycode to dynamically execute:`n`n%mycode%
ahkExec(mycode)
MsgBox, var2 from main script = %var2%
* Fixed bugs in math operations with subtraction.
* Fixed bug with negative signs before parenthesis.
* Fixed bug in assignments.
* Fixed subtraction problem.
Another attempt to fix the problems with negative numbers in math operations. This time instead of trying to fix the compiled expression I've removed one line of the compiler that was causing the issue, so if anyone finds another problem because of this change, please let me know because I have no idea what that line was supposed to do...
- Fixing bugs with subtraction.
- Fixed math operations as strings being evaluated (removed temporary fix from v1.2.0).
- Fixed bug when assigning {} object.
- Fixed bug with key-pair objects.
- Fixed problem with quoted strings inside objects.
- Fixed bug with multiple compare operators.
- Fixes issue with strings concatenation.
- Fixed problems with quotes in strings.
- Fixed bug with named operators.