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

Interfaces that extend imported interfaces don't get extended fields #59

Closed
rictic opened this issue Jul 7, 2019 · 2 comments
Closed

Comments

@rictic
Copy link
Collaborator

rictic commented Jul 7, 2019

Consider a project like:

// base.ts
export interface Checked {
  checked: boolean;
}
// main.ts
import {Checked} from './base';

interface CheckableElement extends HTMLElement, Checked {}

declare global {
  interface HTMLElementTagNameMap {
    'checkable-element': CheckableElement;
  }
}

web-component-analyzer appears not to know that <checkable-element> has a .checked property. The issue seems to be specific to interfaces that extend imported interfaces. Specifically, I checked these cases:

  • ✅class extending another class declared in the same file
  • ✅class extending another class imported from another file
  • ✅interface extending an interface declared in the same file
  • ❌interface extending an interface imported from another file

Standalone repro at https://github.com/rictic/repro-wca-import-interface-issue

@runem runem closed this as completed in 793b587 Jul 16, 2019
@runem
Copy link
Owner

runem commented Jul 16, 2019

Thank you so much for this issue and the repro. I have now fixed the problem and added test cases to this file so it won't happen again 🎉

@rictic
Copy link
Collaborator Author

rictic commented Jul 20, 2019

Nice! I can confirm that that fixes the bug here.

I think there's something still up with the original code that I reduced this down from, which is that the plugin can't find the checked property on <paper-checkbox>. I'm working on coming up with a minimal repro now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants