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

Overrides not resolved for entities extending external objects #33

Closed
Schahen opened this issue Jun 3, 2019 · 0 comments
Closed

Overrides not resolved for entities extending external objects #33

Schahen opened this issue Jun 3, 2019 · 0 comments
Milestone

Comments

@Schahen
Copy link
Contributor

Schahen commented Jun 3, 2019

For instance this

interface AppEvent extends Event {
    preventDefault(): any;
}

converts to

external interface AppEvent : Event {
    fun preventDefault(): Any 
}

While actually it should be converted to:

external interface AppEvent : Event {
    override fun preventDefault(): Any 
}
@Schahen Schahen added the bug label Jun 3, 2019
@Schahen Schahen added this to the 0.0.7 milestone Jun 3, 2019
@Schahen Schahen closed this as completed Jun 5, 2019
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

1 participant