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

deep namespace: validate when imported just as a name #189

Closed
benmosher opened this issue Feb 24, 2016 · 0 comments
Closed

deep namespace: validate when imported just as a name #189

benmosher opened this issue Feb 24, 2016 · 0 comments
Labels
Milestone

Comments

@benmosher
Copy link
Member

given:

// ./module/foo.js
export function something() { /* whatever */ }
// ./module/index.js
export * as foo from './foo'

should report on

// works
import * as mod from './module'
mod.foo.somethingElse() // 'somethingElse' not found in deeply imported namespace 'mod.foo'.

// should work
import { foo } from './module'
foo.somethingElse() // 'somethingElse' not found in deeply imported namespace 'foo'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

1 participant