| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| The production CharacterClassEscape :: W evaluates by returning the set of all characters not |
| included in the set returned by CharacterClassEscape :: w |
| for (var alpha = 0x0030; alpha <= 0x0039; alpha++) { |
| if (regexp_W.exec(String.fromCharCode(alpha)) !== null) { |
| if (regexp_W.exec("_") !== null) { |
| var arr = regexp_W.exec(" "); |
| if ((arr === null) || (arr[0] !== "\u0020")) { |