From bf228cf71139d5a6274689c12c2d8418898f1ba0 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 31 Oct 2011 15:14:54 +0100 Subject: [PATCH] no globals --- source/Ox/js/JavaScript.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Ox/js/JavaScript.js b/source/Ox/js/JavaScript.js index c4e8da28..f7441a26 100644 --- a/source/Ox/js/JavaScript.js +++ b/source/Ox/js/JavaScript.js @@ -465,7 +465,7 @@ Ox.tokenize = (function() { // other '.', ',', ';' ], - regexp = 'abcdefghijklmnopqrstuvwxyz' + regexp = 'abcdefghijklmnopqrstuvwxyz', string = '\'"', whitespace = ' \t', word = { @@ -746,4 +746,4 @@ Ox.tokenize = (function() { }; -}()); \ No newline at end of file +}());