????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.148.211.202 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/appsrv.astacus.se/forge/node_modules/eslint/lib/rules/ |
Upload File : |
/** * @fileoverview A rule to disallow `this` keywords outside of classes or class-like objects. * @author Toru Nagashima */ "use strict"; //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ const astUtils = require("../util/ast-utils"); //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { type: "suggestion", docs: { description: "disallow `this` keywords outside of classes or class-like objects", category: "Best Practices", recommended: false, url: "https://eslint.org/docs/rules/no-invalid-this" }, schema: [] }, create(context) { const stack = [], sourceCode = context.getSourceCode(); /** * Gets the current checking context. * * The return value has a flag that whether or not `this` keyword is valid. * The flag is initialized when got at the first time. * * @returns {{valid: boolean}} * an object which has a flag that whether or not `this` keyword is valid. */ stack.getCurrent = function() { const current = this[this.length - 1]; if (!current.init) { current.init = true; current.valid = !astUtils.isDefaultThisBinding( current.node, sourceCode ); } return current; }; /** * Pushs new checking context into the stack. * * The checking context is not initialized yet. * Because most functions don't have `this` keyword. * When `this` keyword was found, the checking context is initialized. * * @param {ASTNode} node - A function node that was entered. * @returns {void} */ function enterFunction(node) { // `this` can be invalid only under strict mode. stack.push({ init: !context.getScope().isStrict, node, valid: true }); } /** * Pops the current checking context from the stack. * @returns {void} */ function exitFunction() { stack.pop(); } return { /* * `this` is invalid only under strict mode. * Modules is always strict mode. */ Program(node) { const scope = context.getScope(), features = context.parserOptions.ecmaFeatures || {}; stack.push({ init: true, node, valid: !( scope.isStrict || node.sourceType === "module" || (features.globalReturn && scope.childScopes[0].isStrict) ) }); }, "Program:exit"() { stack.pop(); }, FunctionDeclaration: enterFunction, "FunctionDeclaration:exit": exitFunction, FunctionExpression: enterFunction, "FunctionExpression:exit": exitFunction, // Reports if `this` of the current context is invalid. ThisExpression(node) { const current = stack.getCurrent(); if (current && !current.valid) { context.report({ node, message: "Unexpected 'this'." }); } } }; } };