v1.0.0
New features:
- Support for parsing and generating JSX. (See the
JsxParser
class andToJsx
extension methods, respectively).
Improvements:
- Minor improvement to the AST and visitors.
- Minor performance improvements.
Breaking changes:
- Change the parameter order in the constructor of
ObjectProperty
(themethod
parameter comes last). - Remove the
VisitProperty
method from the visitors and introduceVisitAssignmentProperty
andVisitObjectProperty
instead. - Introduce the
VisitFunctionBody
method to the visitors. Visitation of function bodies are no longer dispatched toVisitBlockStatement
. - Rename the
ToJavaScriptString
extension methods toToJavaScript
. - Rename the
ToJsonString
extension methods toToJson
. - Hide the constructors of
RegExpValue
andTemplateValue
and provide factory methods (From
) instead.