You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example the first lines of the impl for Node.prototype.insertBefore are currently
insertBefore(newChildImpl,refChildImpl){// TODO brandingif(!newChildImpl||!(newChildImplinstanceofNodeImpl)){thrownewTypeError("First argument to Node.prototype.insertBefore must be a Node");}if(refChildImpl!==null&&!(refChildImplinstanceofNodeImpl)){thrownewTypeError("Second argument to Node.prototype.insertBefore must be a Node or null or undefined");}
This should not be necessary; webidl2js should generate the type-checks against Node for the first and Node? for the second.
The text was updated successfully, but these errors were encountered:
For example the first lines of the impl for Node.prototype.insertBefore are currently
This should not be necessary; webidl2js should generate the type-checks against Node for the first and Node? for the second.
The text was updated successfully, but these errors were encountered: