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
Missing visitor-keys #555
Labels
Comments
small update |
This was referenced Nov 21, 2018
@mysticatea i have question about
|
No. TypeScript has two namespaces: variables and types. // Those are not redeclaration
// because `interface` defines only in types and `const` defines only in variables.
interface A {}
const A = 0
// On the other hand, `class` defines in both types and variables.
class B {} Then, the |
ok, i was thinking correctly, i just wanted to confirm that :) |
This was referenced Nov 25, 2018
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I did some checking what we can and what we are not able to visit and i found some missing stuff:
missing
typeParameters
new foo<Foo>()
Fix: visiting typeParameters in expressions #565foo<Foo>()
Fix: visiting typeParameters in expressions #565abstract class Foo<Bar> {}
missing
superTypeParameters
class foo extends bar<Foo>
missing
implements
class foo implements bar
,class foo implements bar, baz
missing import equals
import foo = require('foo')
invalid order:
missing decorators:
The text was updated successfully, but these errors were encountered: