You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed an error in the way empty JSON literals are parsed so that they now
return an empty string to match the Python and JavaScript implementations.
Removed functions from runtimes. Instead there is now a function dispatcher
class, FnDispatcher, that provides function implementations behind a single
dispatch function.
Removed ExprNode in lieu of just using a PHP callable with bound variables.
Removed debug methods from runtimes and instead into a new Debugger class.
Heavily cleaned up function argument validation.
Slice syntax is now properly validated (i.e., colons are followed by the
appropriate value).
Lots of code cleanup and performance improvements.