🤖 Merge PR #47252 [webidl2] Restore missing inheritance field by @saschanaz

This commit is contained in:
Kagami Sascha Rosylight 2020-09-03 20:03:37 +02:00 committed by GitHub
parent caf7752c1a
commit dd630d1e58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -161,6 +161,7 @@ export interface AbstractContainer extends AbstractBase {
export interface CallbackInterfaceType extends AbstractContainer {
type: "callback interface";
members: IDLCallbackInterfaceMemberType[];
inheritance: null;
parent: null;
}

View File

@ -29,6 +29,7 @@ for (const rootType of parsed) {
break;
case "callback interface":
rootType; // $ExpectType CallbackInterfaceType
console.log(rootType.inheritance);
logMembers(rootType.members);
console.log(rootType.partial);
break;