Socket
Socket
Sign inDemoInstall

@typescript-eslint/scope-manager

Package Overview
Dependencies
Maintainers
1
Versions
3096
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typescript-eslint/scope-manager - npm Package Compare versions

Comparing version 3.10.2-alpha.0 to 3.10.2-alpha.16

7

dist/referencer/Referencer.d.ts

@@ -21,2 +21,3 @@ import { Lib, TSESTree } from '@typescript-eslint/types';

protected visitClass(node: TSESTree.ClassDeclaration | TSESTree.ClassExpression): void;
protected visitClassProperty(node: TSESTree.TSAbstractClassProperty | TSESTree.ClassProperty): void;
protected visitForIn(node: TSESTree.ForInStatement | TSESTree.ForOfStatement): void;

@@ -32,3 +33,3 @@ protected visitFunctionParameterTypeAnnotation(node: TSESTree.Parameter): void;

protected BreakStatement(): void;
protected CallExpression(node: TSESTree.CallExpression | TSESTree.OptionalCallExpression): void;
protected CallExpression(node: TSESTree.CallExpression): void;
protected CatchClause(node: TSESTree.CatchClause): void;

@@ -50,8 +51,6 @@ protected ClassExpression(node: TSESTree.ClassExpression): void;

protected LabeledStatement(node: TSESTree.LabeledStatement): void;
protected MemberExpression(node: TSESTree.MemberExpression | TSESTree.OptionalMemberExpression): void;
protected MemberExpression(node: TSESTree.MemberExpression): void;
protected MetaProperty(): void;
protected MethodDefinition(node: TSESTree.MethodDefinition): void;
protected NewExpression(node: TSESTree.NewExpression): void;
protected OptionalCallExpression(node: TSESTree.OptionalCallExpression): void;
protected OptionalMemberExpression(node: TSESTree.OptionalMemberExpression): void;
protected Program(node: TSESTree.Program): void;

@@ -58,0 +57,0 @@ protected Property(node: TSESTree.Property): void;

@@ -97,2 +97,6 @@ "use strict";

}
visitClassProperty(node) {
this.visitProperty(node);
this.visitType(node.typeAnnotation);
}
visitForIn(node) {

@@ -270,4 +274,3 @@ if (node.left.type === types_1.AST_NODE_TYPES.VariableDeclaration &&

ClassProperty(node) {
this.visitProperty(node);
this.visitType(node.typeAnnotation);
this.visitClassProperty(node);
}

@@ -347,8 +350,2 @@ ContinueStatement() {

}
OptionalCallExpression(node) {
this.CallExpression(node);
}
OptionalMemberExpression(node) {
this.MemberExpression(node);
}
Program(node) {

@@ -386,3 +383,3 @@ const globalScope = this.scopeManager.nestGlobalScope(node);

TSAbstractClassProperty(node) {
this.visitProperty(node);
this.visitClassProperty(node);
}

@@ -389,0 +386,0 @@ TSAbstractMethodDefinition(node) {

{
"name": "@typescript-eslint/scope-manager",
"version": "3.10.2-alpha.0+43b1201a",
"version": "3.10.2-alpha.16+4ff8c43f",
"description": "TypeScript scope analyser for ESLint",

@@ -42,7 +42,8 @@ "keywords": [

"dependencies": {
"@typescript-eslint/types": "3.10.2-alpha.0+43b1201a",
"@typescript-eslint/visitor-keys": "3.10.2-alpha.0+43b1201a"
"@typescript-eslint/types": "3.10.2-alpha.16+4ff8c43f",
"@typescript-eslint/visitor-keys": "3.10.2-alpha.16+4ff8c43f"
},
"devDependencies": {
"@typescript-eslint/typescript-estree": "3.10.2-alpha.0+43b1201a",
"@types/glob": "*",
"@typescript-eslint/typescript-estree": "3.10.2-alpha.16+4ff8c43f",
"glob": "*",

@@ -52,3 +53,3 @@ "jest-specific-snapshot": "*",

"prettier": "*",
"pretty-format": "^25.5.0",
"pretty-format": "^26.4.2",
"rimraf": "*",

@@ -68,3 +69,3 @@ "typescript": "*"

},
"gitHead": "43b1201a73687e29f19a16b0b26f68569f3c7a2e"
"gitHead": "4ff8c43fcb0905635665aa05cb3d98421e7fa0b1"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc