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

Interface type casing is not being removed in compiled JS #187

Open
peteshand opened this issue Sep 1, 2013 · 0 comments
Open

Interface type casing is not being removed in compiled JS #187

peteshand opened this issue Sep 1, 2013 · 0 comments

Comments

@peteshand
Copy link

Interface type casing is not being removed resulting in:
Uncaught ReferenceError: 'InterfaceClassName' is not defined.

In the following example the class "TestInterface" implements "ITestInterface"
AS source code:

Window.console.log(ITestInterface(new TestInterface()));

Should compile to:

console.log(new tests.TestInterface());

However is currently compiling to:

console.log(ITestInterface(new tests.TestInterface()));
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