From 69a84afa0b38704593b9ee5e11a8ba9ef9770562 Mon Sep 17 00:00:00 2001 From: Francois Daoust Date: Fri, 2 Jul 2021 14:26:40 +0200 Subject: [PATCH] Add BigInt64Array and BigUint64Array IDL types Types added recently to WebIDL: https://github.com/heycam/webidl/pull/936 --- src/cli/parse-webidl.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/parse-webidl.js b/src/cli/parse-webidl.js index 5d2d884b..db4768b2 100644 --- a/src/cli/parse-webidl.js +++ b/src/cli/parse-webidl.js @@ -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);