From: Mihai Bazon Date: Sun, 22 Dec 2013 18:52:19 +0000 (+0200) Subject: Mark `yield` as reserved word. Close #375. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=aa9de76370ee83883f19a6d410ad8207d0fe1769;p=UglifyJS.git Mark `yield` as reserved word. Close #375. --- diff --git a/lib/parse.js b/lib/parse.js index 4933649c..1a3895d9 100644 --- a/lib/parse.js +++ b/lib/parse.js @@ -46,7 +46,7 @@ var KEYWORDS = 'break case catch const continue debugger default delete do else finally for function if in instanceof new return switch throw try typeof var void while with'; var KEYWORDS_ATOM = 'false null true'; -var RESERVED_WORDS = 'abstract boolean byte char class double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized this throws transient volatile' +var RESERVED_WORDS = 'abstract boolean byte char class double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized this throws transient volatile yield' + " " + KEYWORDS_ATOM + " " + KEYWORDS; var KEYWORDS_BEFORE_EXPRESSION = 'return new delete throw else case';