diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-03-08 04:38:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-08 12:38:53 +0800 |
commit | 077512d1515d9fbd4e19bce79be75a09df8d5619 (patch) | |
tree | 43f7a322bb8db5a2fb70266c65e67654013dc0ba /lib/parse.js | |
parent | e4848a7f5a819f78515c487e64d46de3c3d2d743 (diff) | |
download | tracifyjs-077512d1515d9fbd4e19bce79be75a09df8d5619.tar.gz tracifyjs-077512d1515d9fbd4e19bce79be75a09df8d5619.zip |
fix corner case in `inline` (#4754)
fixes #4753
Diffstat (limited to 'lib/parse.js')
-rw-r--r-- | lib/parse.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/parse.js b/lib/parse.js index 835ac21c..5a4d9811 100644 --- a/lib/parse.js +++ b/lib/parse.js @@ -1743,7 +1743,7 @@ function parse($TEXT, options) { name: "new.target", start: start, end: prev(), - }) + }); } var newexp = expr_atom(false), args; if (is("punc", "(")) { |