diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-11-29 18:57:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-29 18:57:29 +0800 |
commit | 1283d738539b4f899e4941f556b516c071bfa55a (patch) | |
tree | e563bbcfbe2932579f2f1778a0946ac3df945445 /test/mocha/number-literal.js | |
parent | 1b61a81b5d6c9489466fe4707c1b01810a01d03a (diff) | |
download | tracifyjs-1283d738539b4f899e4941f556b516c071bfa55a.tar.gz tracifyjs-1283d738539b4f899e4941f556b516c071bfa55a.zip |
fix corner case in parsing directives (#3615)
Diffstat (limited to 'test/mocha/number-literal.js')
-rw-r--r-- | test/mocha/number-literal.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/mocha/number-literal.js b/test/mocha/number-literal.js index c7560eb5..b87c88bb 100644 --- a/test/mocha/number-literal.js +++ b/test/mocha/number-literal.js @@ -2,10 +2,18 @@ var assert = require("assert"); var UglifyJS = require("../node"); describe("Number literals", function() { + it("Should allow legacy octal literals in non-strict mode", function() { + [ + "'use strict'\n.slice()\n00", + '"use strict"\n.slice()\nvar foo = 00', + ].forEach(function(input) { + UglifyJS.parse(input); + }); + }); it("Should not allow legacy octal literals in strict mode", function() { var inputs = [ '"use strict";00;', - '"use strict"; var foo = 00;' + '"use strict"; var foo = 00;', ]; var test = function(input) { return function() { |