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
B implements A
Trying to parse the ammo.idl file last updated in commit 1a601e4 with the WebIDL2.js online checker yields the following error:
ammo.idl
WebIDLParseError: Syntax error at line 49, since `interface btVector4`: btVector4 implements btVector3; ^ Unrecognised tokens
Inheritance is currently done with
interface A {}; interface B {}; B implements A;
while according to the WebIDL specification it should apparently be done with
interface A {}; interface B : A {};
I wonder if this is a bug in the WebIDL2.js library or in this one as I'm not experienced in WebIDL.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Trying to parse the
ammo.idl
file last updated in commit 1a601e4 with the WebIDL2.js online checker yields the following error:Inheritance is currently done with
while according to the WebIDL specification it should apparently be done with
I wonder if this is a bug in the WebIDL2.js library or in this one as I'm not experienced in WebIDL.
The text was updated successfully, but these errors were encountered: