|
1 | 1 | #!/usr/bin/env rhino |
2 | 2 | var window = {}; |
3 | | -/*! 2.13.2 */ |
| 3 | +/*! 2.13.3 */ |
4 | 4 | var JSHINT; |
5 | 5 | if (typeof window === 'undefined') window = {}; |
6 | 6 | (function () { |
@@ -22388,7 +22388,8 @@ exports.val = { |
22388 | 22388 | * Notable additions: optional catch bindings. |
22389 | 22389 | * - `11` - To enable language features introduced by ECMAScript 11. Notable |
22390 | 22390 | * additions: "export * as ns from 'module'", `import.meta`, the nullish |
22391 | | - * coalescing operator, and optional chaining, and dynamic import. |
| 22391 | + * coalescing operator, the BigInt type, the `globalThis` binding, |
| 22392 | + * optional chaining, and dynamic import. |
22392 | 22393 | */ |
22393 | 22394 | esversion: 5 |
22394 | 22395 | }; |
@@ -24572,7 +24573,8 @@ exports.ecmaIdentifiers = { |
24572 | 24573 | SharedArrayBuffer : false |
24573 | 24574 | }, |
24574 | 24575 | 11: { |
24575 | | - BigInt : false |
| 24576 | + BigInt : false, |
| 24577 | + globalThis : false |
24576 | 24578 | } |
24577 | 24579 | }; |
24578 | 24580 |
|
@@ -25028,8 +25030,8 @@ exports.node = { |
25028 | 25030 | clearInterval : true, |
25029 | 25031 | setImmediate : true, // v0.9.1+ |
25030 | 25032 | clearImmediate : true, // v0.9.1+ |
25031 | | - URL : true, // v6.13.0+ |
25032 | | - URLSearchParams: true // v6.13.0+ |
| 25033 | + URL : true, // v10.0.0+ |
| 25034 | + URLSearchParams: true // v10.0.0+ |
25033 | 25035 | }; |
25034 | 25036 |
|
25035 | 25037 | exports.browserify = { |
@@ -25562,6 +25564,10 @@ var JSHINT = (function() { |
25562 | 25564 | combine(predefined, vars.ecmaIdentifiers[8]); |
25563 | 25565 | } |
25564 | 25566 |
|
| 25567 | + if (state.inES11()) { |
| 25568 | + combine(predefined, vars.ecmaIdentifiers[11]); |
| 25569 | + } |
| 25570 | + |
25565 | 25571 | /** |
25566 | 25572 | * Use `in` to check for the presence of any explicitly-specified value for |
25567 | 25573 | * `globalstrict` because both `true` and `false` should trigger an error. |
|
0 commit comments