1 Jan 2021, v3.0.0-alpha.0
Pre-release
Pre-release
MuhammadSawalhy
released this
01 Jan 19:23
·
78 commits
to master
since this release
Breaking
- Node of type "function", when its args is
[{ type: "block", name: "()", ... }]
, function's args is assigned to parenthesis args. In other words, in this case it will beArray
not{ type: "block", ... }
. - Removing node type
delimeter
:f(1,3,4)
when parsed as function, it will have args with length 3.(1,3,4)
will be parsed withtype = "tuple"
.
Added
- Built-in function
sqrt
- Node of type "tuple":
(1, 2, x, ...)