Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(scope-manager): correctly reference generic parameters when decorator metadata is enabled #2975

Merged
merged 1 commit into from Jan 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,6 +1,6 @@
import rule from '../../../src/rules/no-unused-vars';
import { collectUnusedVariables } from '../../../src/util';
import { noFormat, RuleTester } from '../../RuleTester';
import { getFixturesRootDir, noFormat, RuleTester } from '../../RuleTester';

const ruleTester = new RuleTester({
parserOptions: {
Expand All @@ -11,6 +11,11 @@ const ruleTester = new RuleTester({
parser: '@typescript-eslint/parser',
});

const withMetaParserOptions = {
tsconfigRootDir: getFixturesRootDir(),
project: './tsconfig-withmeta.json',
};

// this is used to ensure that the caching the utility does does not impact the results done by no-unused-vars
ruleTester.defineRule('collect-unused-vars', context => {
collectUnusedVariables(context);
Expand Down Expand Up @@ -978,6 +983,19 @@ declare module 'next-auth' {
}
}
`,
// https://github.com/typescript-eslint/typescript-eslint/issues/2972
{
code: `
import { TestGeneric, Test } from 'fake-module';

declare function deco(..._param: any): any;
export class TestClass {
@deco
public test(): TestGeneric<Test> {}
}
`,
parserOptions: withMetaParserOptions,
},
],

invalid: [
Expand Down
11 changes: 8 additions & 3 deletions packages/scope-manager/src/referencer/ClassVisitor.ts
Expand Up @@ -295,9 +295,14 @@ class ClassVisitor extends Visitor {
}

if (withDecorators) {
return this.#referencer
.currentScope()
.referenceDualValueType(identifier);
this.#referencer.currentScope().referenceDualValueType(identifier);

if (node.typeAnnotation.typeParameters) {
this.visitType(node.typeAnnotation.typeParameters);
}

// everything is handled now
return;
}
}
this.visitType(node);
Expand Down
@@ -0,0 +1,9 @@
//// @emitDecoratorMetadata = true

import { TestGeneric, Test } from 'fake-module';

declare function deco(..._param: any): any;
export class TestClass {
@deco
public test(): TestGeneric<Test> {}
}
@@ -0,0 +1,191 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`class emit-metadata method-return-generic 1`] = `
ScopeManager {
variables: Array [
ImplicitGlobalConstTypeVariable,
Variable$2 {
defs: Array [
ImportBindingDefinition$1 {
name: Identifier<"TestGeneric">,
node: ImportSpecifier$1,
},
],
name: "TestGeneric",
references: Array [
Reference$1 {
identifier: Identifier<"TestGeneric">,
isRead: true,
isTypeReference: true,
isValueReference: true,
isWrite: false,
resolved: Variable$2,
},
],
isValueVariable: true,
isTypeVariable: true,
},
Variable$3 {
defs: Array [
ImportBindingDefinition$2 {
name: Identifier<"Test">,
node: ImportSpecifier$2,
},
],
name: "Test",
references: Array [
Reference$2 {
identifier: Identifier<"Test">,
isRead: true,
isTypeReference: true,
isValueReference: false,
isWrite: false,
resolved: Variable$3,
},
],
isValueVariable: true,
isTypeVariable: true,
},
Variable$4 {
defs: Array [
FunctionNameDefinition$3 {
name: Identifier<"deco">,
node: TSDeclareFunction$3,
},
],
name: "deco",
references: Array [
Reference$3 {
identifier: Identifier<"deco">,
isRead: true,
isTypeReference: false,
isValueReference: true,
isWrite: false,
resolved: Variable$4,
},
],
isValueVariable: true,
isTypeVariable: false,
},
Variable$5 {
defs: Array [],
name: "arguments",
references: Array [],
isValueVariable: true,
isTypeVariable: true,
},
Variable$6 {
defs: Array [
ParameterDefinition$4 {
name: Identifier<"_param">,
node: TSDeclareFunction$3,
},
],
name: "_param",
references: Array [],
isValueVariable: true,
isTypeVariable: false,
},
Variable$7 {
defs: Array [
ClassNameDefinition$5 {
name: Identifier<"TestClass">,
node: ClassDeclaration$4,
},
],
name: "TestClass",
references: Array [],
isValueVariable: true,
isTypeVariable: true,
},
Variable$8 {
defs: Array [
ClassNameDefinition$6 {
name: Identifier<"TestClass">,
node: ClassDeclaration$4,
},
],
name: "TestClass",
references: Array [],
isValueVariable: true,
isTypeVariable: true,
},
Variable$9 {
defs: Array [],
name: "arguments",
references: Array [],
isValueVariable: true,
isTypeVariable: true,
},
],
scopes: Array [
GlobalScope$1 {
block: Program$5,
isStrict: false,
references: Array [],
set: Map {
"const" => ImplicitGlobalConstTypeVariable,
"TestGeneric" => Variable$2,
"Test" => Variable$3,
"deco" => Variable$4,
"TestClass" => Variable$7,
},
type: "global",
upper: null,
variables: Array [
ImplicitGlobalConstTypeVariable,
Variable$2,
Variable$3,
Variable$4,
Variable$7,
],
},
FunctionScope$2 {
block: TSDeclareFunction$3,
isStrict: false,
references: Array [],
set: Map {
"arguments" => Variable$5,
"_param" => Variable$6,
},
type: "function",
upper: GlobalScope$1,
variables: Array [
Variable$5,
Variable$6,
],
},
ClassScope$3 {
block: ClassDeclaration$4,
isStrict: true,
references: Array [
Reference$3,
],
set: Map {
"TestClass" => Variable$8,
},
type: "class",
upper: GlobalScope$1,
variables: Array [
Variable$8,
],
},
FunctionScope$4 {
block: FunctionExpression$6,
isStrict: true,
references: Array [
Reference$1,
Reference$2,
],
set: Map {
"arguments" => Variable$9,
},
type: "function",
upper: ClassScope$3,
variables: Array [
Variable$9,
],
},
],
}
`;