We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 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()));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
Should compile to:
However is currently compiling to:
The text was updated successfully, but these errors were encountered: