Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/node-red/node_modules/jshint/src/ drwxr-xr-x | |
| Viewing file: Select action/file-type: /**
* This module defines a set of enum-like values intended for use as bit
* "flags" during parsing. The ECMAScript grammar defines a number of such
* "production parameters" to control how certain forms are parsed in context.
* JSHint implements additional parameters to facilitate detection of lint
* warnings.
*
* An equivalent implementation which described the context in terms of a
* "lookup table" object would be more idiomatic for a JavaScript project like
* JSHint. However, because the number of contexts scales with the number of
* expressions in the input program, this would have non-negligible impact on
* the process's memory footprint.
*/
module.exports = {
/**
* Enabled when parsing expressions within ES2015 "export" declarations,
* allowing otherwise-unreferenced bindings to be considered "used".
*/
export: 1,
/**
* Enabled when parsing expressions within the head of `for` statements,
* allowing to distinguish between `for-in` and "C-style" `for` statements.
*/
noin: 2,
/**
* Enabled when the expression begins the statement, allowing the parser to
* correctly select between the null denotation ("nud") and first null
* denotation ("fud") parsing strategy.
*/
initial: 4,
preAsync: 8,
async: 16,
/**
* Enabled when any exception thrown by the expression will be caught by a
* TryStatement.
*/
tryClause: 32,
/**
* Enabled when parsing the body of a generator function.
*/
yield: 64
};
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0052 ]-- |