123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- "use strict";
- const astUtils = require("./utils/ast-utils");
- function isCodePathWithLexicalThis(codePath, node) {
- return codePath.origin === "function" && node.type === "ArrowFunctionExpression";
- }
- module.exports = {
- meta: {
- type: "suggestion",
- docs: {
- description: "Disallow use of `this` in contexts where the value of `this` is `undefined`",
- recommended: false,
- url: "https://eslint.org/docs/latest/rules/no-invalid-this"
- },
- schema: [
- {
- type: "object",
- properties: {
- capIsConstructor: {
- type: "boolean",
- default: true
- }
- },
- additionalProperties: false
- }
- ],
- messages: {
- unexpectedThis: "Unexpected 'this'."
- }
- },
- create(context) {
- const options = context.options[0] || {};
- const capIsConstructor = options.capIsConstructor !== false;
- const stack = [],
- sourceCode = context.sourceCode;
-
- stack.getCurrent = function() {
- const current = this[this.length - 1];
- if (!current.init) {
- current.init = true;
- current.valid = !astUtils.isDefaultThisBinding(
- current.node,
- sourceCode,
- { capIsConstructor }
- );
- }
- return current;
- };
- return {
- onCodePathStart(codePath, node) {
- if (isCodePathWithLexicalThis(codePath, node)) {
- return;
- }
- if (codePath.origin === "program") {
- const scope = sourceCode.getScope(node);
- const features = context.languageOptions.parserOptions.ecmaFeatures || {};
-
- stack.push({
- init: true,
- node,
- valid: !(
- node.sourceType === "module" ||
- (features.globalReturn && scope.childScopes[0].isStrict)
- )
- });
- return;
- }
-
- stack.push({
- init: !sourceCode.getScope(node).isStrict,
- node,
- valid: true
- });
- },
- onCodePathEnd(codePath, node) {
- if (isCodePathWithLexicalThis(codePath, node)) {
- return;
- }
- stack.pop();
- },
-
- ThisExpression(node) {
- const current = stack.getCurrent();
- if (current && !current.valid) {
- context.report({
- node,
- messageId: "unexpectedThis"
- });
- }
- }
- };
- }
- };
|