Skip to content

Commit 90f1965

Browse files
committed
Fixes #927, update uglify and esprima
1 parent f667f33 commit 90f1965

File tree

11 files changed

+3504
-2811
lines changed

11 files changed

+3504
-2811
lines changed

build/jslib/esprima.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1325,6 +1325,7 @@
13251325
try {
13261326
return new RegExp(pattern, flags);
13271327
} catch (exception) {
1328+
/* istanbul ignore next */
13281329
return null;
13291330
}
13301331
}
@@ -1521,7 +1522,7 @@
15211522
return value && (value.length > 1) && (value[0] >= 'a') && (value[0] <= 'z');
15221523
}
15231524

1524-
previous = extra.tokenValues[extra.tokens.length - 1];
1525+
previous = extra.tokenValues[extra.tokenValues.length - 1];
15251526
regex = (previous !== null);
15261527

15271528
switch (previous) {
@@ -5707,7 +5708,7 @@
57075708
}
57085709

57095710
// Sync with *.json manifests.
5710-
exports.version = '2.7.2';
5711+
exports.version = '2.7.3';
57115712

57125713
exports.tokenize = tokenize;
57135714

0 commit comments

Comments
 (0)