This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 887
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix no-unnecessary-qualifier handling of implicit arguments (#2555)
- Loading branch information
1 parent
8c7644a
commit 6f1f1ad
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace N { | ||
export type T = number; | ||
export const x: N.T = 0; | ||
~ [N] | ||
export function f() { | ||
if (arguments.length > 0) { | ||
console.log('arguments should not break this rule'); | ||
} | ||
} | ||
} | ||
|
||
[N]: Qualifier is unnecessary since 'N' is in scope. |