This repository has been archived by the owner on Jan 19, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: visiting superTypeParameters in classes (#561)
* Fix: visiting superTypeParameters in classes * Add missing decorators in TSAbstractClassDeclaration its already supported in visitClass * Add missing typeParameters in TSAbstractClassDeclaration its using same logic as ClassDeclaration
- Loading branch information
1 parent
83dbabb
commit cc92044
Showing
4 changed files
with
405 additions
and
3 deletions.
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,11 @@ | ||
abstract class Foo extends Bar<Baz> { | ||
|
||
} | ||
|
||
declare class Foo2 extends Bar<Baz> { | ||
|
||
} | ||
|
||
class Foo3 extends Bar<Baz> { | ||
|
||
} |
Oops, something went wrong.