Skip to content

Commit

Permalink
Add BigInt64Array and BigUint64Array IDL types
Browse files Browse the repository at this point in the history
Types added recently to WebIDL:
whatwg/webidl#936
  • Loading branch information
tidoust committed Jul 2, 2021
1 parent 225b18a commit 69a84af
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cli/parse-webidl.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ function parseType(idltype, idlReport, contextName) {
}
var wellKnownTypes = ["undefined", "any", "boolean", "byte", "octet", "short", "unsigned short", "long", "unsigned long", "long long", "unsigned long long", "float", "unrestricted float", "double", "unrestricted double", "DOMString", "ByteString", "USVString", "object",
"RegExp", "Error", "DOMException", "ArrayBuffer", "DataView", "Int8Array", "Int16Array", "Int32Array", "Uint8Array", "Uint16Array", "Uint32Array", "Uint8ClampedArray", "Float32Array", "Float64Array",
"BigUint64Array", "BigInt64Array",
"ArrayBufferView", "BufferSource", "DOMTimeStamp", "Function", "VoidFunction"];
if (wellKnownTypes.indexOf(idltype.idlType) === -1) {
addDependency(idltype.idlType, idlReport.idlNames, idlReport.externalDependencies);
Expand Down

0 comments on commit 69a84af

Please sign in to comment.