Skip to content

Commit

Permalink
fix(parser): improved optional chaining implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
KFlash committed Aug 13, 2019
1 parent a1dc375 commit 90c139c
Show file tree
Hide file tree
Showing 9 changed files with 169 additions and 717 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "meriyah",
"version": "1.6.5",
"version": "1.6.6",
"description": "A 100% compliant, self-hosted javascript parser with high focus on both performance and stability",
"main": "dist/meriyah.umd.js",
"module": "dist/meriyah.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion src/meriyah.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ export function parse(source: string, options?: Options): ESTree.Program {
export { Options, ESTree };

// Export current version
export const version = '1.6.4';
export const version = '1.6.6';

0 comments on commit 90c139c

Please sign in to comment.