Socket
Socket
Sign inDemoInstall

webidl2

Package Overview
Dependencies
Maintainers
4
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webidl2 - npm Package Compare versions

Comparing version 10.2.1 to 10.3.0

8

CHANGELOG.md
# Change Log
## [v10.2.1](https://github.com/w3c/webidl2.js/tree/v10.2.1) (2018-03-09)
[Full Changelog](https://github.com/w3c/webidl2.js/compare/v10.2.0...v10.2.1)
**Merged pull requests:**
- Optimise tokenisation and whitespace skipping [\#139](https://github.com/w3c/webidl2.js/pull/139) ([ricea](https://github.com/ricea))
- refactor: small syntax changes [\#137](https://github.com/w3c/webidl2.js/pull/137) ([saschanaz](https://github.com/saschanaz))
## [v10.2.0](https://github.com/w3c/webidl2.js/tree/v10.2.0) (2018-01-30)

@@ -4,0 +12,0 @@ [Full Changelog](https://github.com/w3c/webidl2.js/compare/v10.1.0...v10.2.0)

0

index.js
module.exports = require("./lib/webidl2.js");

8

lib/webidl2.js

@@ -274,3 +274,3 @@ "use strict";

const prim = primitive_type();
const ret = { type: typeName || null, sequence: false, generic: null, nullable: false, union: false };
const ret = { type: typeName || null, sequence: false, generic: null, nullable: false, union: false, extAttrs: [] };
let name;

@@ -304,5 +304,5 @@ let value;

}
if (types[0].extAttrs) error("Record key cannot have extended attribute");
if (types[0].extAttrs.length) error("Record key cannot have extended attribute");
} else if (value === "Promise") {
if (types[0].extAttrs) error("Promise type cannot have extended attribute");
if (types[0].extAttrs.length) error("Promise type cannot have extended attribute");
}

@@ -328,3 +328,3 @@ ret.idlType = types.length === 1 ? types[0] : types;

if (!consume(OTHER, "(")) return;
const ret = { type: typeName || null, sequence: false, generic: null, nullable: false, union: true, idlType: [] };
const ret = { type: typeName || null, sequence: false, generic: null, nullable: false, union: true, idlType: [], extAttrs: [] };
const fst = type_with_extended_attributes() || error("Union type with no content");

@@ -331,0 +331,0 @@ ret.idlType.push(fst);

@@ -0,0 +0,0 @@ "use strict";

{
"name": "webidl2",
"description": "A WebIDL Parser",
"version": "10.2.1",
"version": "10.3.0",
"contributors": [

@@ -6,0 +6,0 @@ "Robin Berjon <robin@berjon.com> (https://berjon.com)",

@@ -96,7 +96,9 @@

{
"type": "attribute-type",
"sequence": false,
"generic": null,
"idlType": "void",
"idlType": "unsigned short",
"nullable": false,
"union": false,
"extAttrs": [...]
}

@@ -107,2 +109,3 @@ ```

* `type`: String indicating where this type is used. Can be `null` if not applicable.
* `sequence`: Boolean indicating if it is a sequence. Same as `generic === "sequence"`.

@@ -118,2 +121,3 @@ * `generic`: String indicating the generic type (e.g. "Promise", "sequence"). `null`

* `union`: Boolean indicating whether this is a union type or not.
* `extAttrs`: A list of [extended attributes](#extended-attributes).

@@ -217,2 +221,3 @@ ### Interface

"idlType": {
"type": "return-type",
"sequence": false,

@@ -251,2 +256,3 @@ "generic": null,

"idlType": {
"type": "dictionary-type",
"sequence": false,

@@ -319,2 +325,3 @@ "generic": null,

"idlType": {
"type": "typedef-type",
"sequence": true,

@@ -325,2 +332,3 @@ "generic": "sequence",

"idlType": {
"type": "typedef-type",
"sequence": false,

@@ -398,2 +406,3 @@ "generic": null,

"idlType": {
"type": "return-type",
"sequence": false,

@@ -411,2 +420,3 @@ "generic": null,

"idlType": {
"type": "argument-type",
"sequence": false,

@@ -449,2 +459,3 @@ "generic": null,

"idlType": {
"type": "attribute-type",
"sequence": false,

@@ -480,3 +491,6 @@ "generic": null,

"nullable": false,
"idlType": "boolean",
"idlType": {
"type": "const-type",
"idlType": "boolean"
},
"name": "DEBUG",

@@ -495,3 +509,3 @@ "value": {

* `nullable`: Whether its type is nullable.
* `idlType`: The type of the constant (a simple type, the type name).
* `idlType`: An [IDL Type](#idl-type) of the constant that represents a simple type, the type name.
* `name`: The name of the constant.

@@ -512,2 +526,3 @@ * `value`: The constant value as described by [Const Values](#default-and-const-values)

"idlType": {
"type": "argument-type",
"sequence": false,

@@ -514,0 +529,0 @@ "generic": null,

@@ -0,0 +0,0 @@ // NOTES:

@@ -0,0 +0,0 @@ {

@@ -0,0 +0,0 @@ "use strict";

@@ -20,3 +20,4 @@ [

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -40,3 +41,4 @@ "name": "g",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -55,3 +57,4 @@ "name": "g",

"union": false,
"idlType": "B"
"idlType": "B",
"extAttrs": []
},

@@ -76,3 +79,4 @@ "name": "b"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -98,3 +102,4 @@ "name": "g",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -101,0 +106,0 @@ "name": "s"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned short"
"idlType": "unsigned short",
"extAttrs": []
},

@@ -22,0 +23,0 @@ "name": "age",

@@ -11,3 +11,4 @@ [

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -25,3 +26,4 @@ "arguments": [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -51,3 +53,4 @@ "name": "status"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -66,3 +69,4 @@ "name": "eventOccurred",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -87,3 +91,4 @@ "name": "details"

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -101,3 +106,4 @@ "arguments": [

"union": false,
"idlType": "any"
"idlType": "any",
"extAttrs": []
},

@@ -116,3 +122,4 @@ "name": "a"

"union": false,
"idlType": "any"
"idlType": "any",
"extAttrs": []
},

@@ -119,0 +126,0 @@ "name": "b"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -37,3 +38,4 @@ "name": "r",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -55,3 +57,4 @@ "name": "cx",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -73,3 +76,4 @@ "name": "cy",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -101,3 +105,4 @@ "name": "circumference",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -104,0 +109,0 @@ "name": "radius"

@@ -17,3 +17,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -36,3 +37,4 @@ "extAttrs": [],

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -54,3 +56,4 @@ "extAttrs": [],

"union": false,
"idlType": "Point"
"idlType": "Point",
"extAttrs": []
},

@@ -78,3 +81,4 @@ "extAttrs": []

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -81,0 +85,0 @@ "extAttrs": []

@@ -17,3 +17,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -36,3 +37,4 @@ "extAttrs": [],

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -54,3 +56,4 @@ "extAttrs": [],

"union": false,
"idlType": "Point"
"idlType": "Point",
"extAttrs": []
},

@@ -75,4 +78,6 @@ "extAttrs": []

"union": false,
"idlType": "long"
}
"idlType": "long",
"extAttrs": []
},
"extAttrs": []
},

@@ -95,3 +100,4 @@ "extAttrs": [],

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -119,3 +125,4 @@ "extAttrs": []

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -134,3 +141,4 @@ "extAttrs": []

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -137,0 +145,0 @@ "extAttrs": []

@@ -38,3 +38,4 @@ [

"union": false,
"idlType": "MealType"
"idlType": "MealType",
"extAttrs": []
},

@@ -56,3 +57,4 @@ "name": "type",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -75,3 +77,4 @@ "name": "size",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -90,3 +93,4 @@ "name": "initialize",

"union": false,
"idlType": "MealType"
"idlType": "MealType",
"extAttrs": []
},

@@ -105,3 +109,4 @@ "name": "type"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -108,0 +113,0 @@ "name": "size"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -38,3 +39,4 @@ "name": "propertyCount",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -53,3 +55,4 @@ "name": "getProperty",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -74,3 +77,4 @@ "name": "propertyName"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -89,3 +93,4 @@ "name": "setProperty",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -104,3 +109,4 @@ "name": "propertyName"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -133,3 +139,4 @@ "name": "propertyValue"

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -152,3 +159,4 @@ "name": "propertyCount",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -167,3 +175,4 @@ "name": "getProperty",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -188,3 +197,4 @@ "name": "propertyName"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -203,3 +213,4 @@ "name": "setProperty",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -218,3 +229,4 @@ "name": "propertyName"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -239,3 +251,4 @@ "name": "propertyValue"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -254,3 +267,4 @@ "name": null,

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -275,3 +289,4 @@ "name": "propertyName"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -290,3 +305,4 @@ "name": null,

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -305,3 +321,4 @@ "name": "propertyName"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -308,0 +325,0 @@ "name": "propertyValue"

@@ -85,3 +85,4 @@ [

"union": false,
"idlType": "double"
"idlType": "double",
"extAttrs": []
},

@@ -103,3 +104,4 @@ "name": "r",

"union": false,
"idlType": "double"
"idlType": "double",
"extAttrs": []
},

@@ -121,3 +123,4 @@ "name": "cx",

"union": false,
"idlType": "double"
"idlType": "double",
"extAttrs": []
},

@@ -139,3 +142,4 @@ "name": "cy",

"union": false,
"idlType": "double"
"idlType": "double",
"extAttrs": []
},

@@ -167,3 +171,4 @@ "name": "circumference",

"union": false,
"idlType": "double"
"idlType": "double",
"extAttrs": []
},

@@ -202,3 +207,4 @@ "name": "radius"

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -211,3 +217,4 @@ {

"union": false,
"idlType": "Node"
"idlType": "Node",
"extAttrs": []
}

@@ -214,0 +221,0 @@ ],

@@ -38,6 +38,10 @@ [

"union": false,
"idlType": "DOMString"
}
}
}
"idlType": "DOMString",
"extAttrs": []
},
"extAttrs": []
},
"extAttrs": []
},
"extAttrs": []
},

@@ -66,4 +70,6 @@ "name": "bar",

"union": false,
"idlType": "DOMString"
}
"idlType": "DOMString",
"extAttrs": []
},
"extAttrs": []
},

@@ -101,4 +107,6 @@ "name": "baz",

"union": false,
"idlType": "Client"
}
"idlType": "Client",
"extAttrs": []
},
"extAttrs": []
},

@@ -128,4 +136,6 @@ "name": "getServiced",

"union": false,
"idlType": "any"
}
"idlType": "any",
"extAttrs": []
},
"extAttrs": []
},

@@ -164,4 +174,6 @@ "name": "reloadAll",

"union": false,
"idlType": "any"
}
"idlType": "any",
"extAttrs": []
},
"extAttrs": []
},

@@ -168,0 +180,0 @@ "name": "default",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -38,3 +39,4 @@ "name": "propertyCount",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -53,3 +55,4 @@ "name": null,

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -74,3 +77,4 @@ "name": "propertyName"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -89,3 +93,4 @@ "name": null,

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -104,3 +109,4 @@ "name": "propertyName"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -107,0 +113,0 @@ "name": "propertyValue"

@@ -10,3 +10,4 @@ [

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -34,3 +35,4 @@ "name": "number",

"union": false,
"idlType": "object"
"idlType": "object",
"extAttrs": []
},

@@ -49,3 +51,4 @@ "name": "createObject",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -70,3 +73,4 @@ "name": "interface"

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -85,3 +89,4 @@ "name": null,

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -114,3 +119,4 @@ "name": "keyName"

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -132,3 +138,4 @@ "name": "const",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -160,3 +167,4 @@ "name": "value",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -175,3 +183,4 @@ "name": "op",

"union": false,
"idlType": "object"
"idlType": "object",
"extAttrs": []
},

@@ -178,0 +187,0 @@ "name": "interface"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned short"
"idlType": "unsigned short",
"extAttrs": []
},

@@ -47,3 +48,4 @@ "name": "nodeType",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -62,3 +64,4 @@ "name": "addEventListener",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -77,3 +80,4 @@ "name": "type"

"union": false,
"idlType": "EventListener"
"idlType": "EventListener",
"extAttrs": []
},

@@ -92,3 +96,4 @@ "name": "listener"

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -95,0 +100,0 @@ "name": "useCapture"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -38,3 +39,4 @@ "name": "size",

"union": false,
"idlType": "any"
"idlType": "any",
"extAttrs": []
},

@@ -53,3 +55,4 @@ "name": "getByIndex",

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -74,3 +77,4 @@ "name": "index"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -89,3 +93,4 @@ "name": "setByIndex",

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -104,3 +109,4 @@ "name": "index"

"union": false,
"idlType": "any"
"idlType": "any",
"extAttrs": []
},

@@ -125,3 +131,4 @@ "name": "value"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -140,3 +147,4 @@ "name": "removeByIndex",

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -161,3 +169,4 @@ "name": "index"

"union": false,
"idlType": "any"
"idlType": "any",
"extAttrs": []
},

@@ -176,3 +185,4 @@ "name": "get",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -197,3 +207,4 @@ "name": "name"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -212,3 +223,4 @@ "name": "set",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -227,3 +239,4 @@ "name": "name"

"union": false,
"idlType": "any"
"idlType": "any",
"extAttrs": []
},

@@ -248,3 +261,4 @@ "name": "value"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -263,3 +277,4 @@ "name": "remove",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -266,0 +281,0 @@ "name": "name"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -46,3 +47,4 @@ "name": "name",

"union": false,
"idlType": "unsigned short"
"idlType": "unsigned short",
"extAttrs": []
},

@@ -64,3 +66,4 @@ "name": "age",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -67,0 +70,0 @@ "name": "name",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -46,3 +47,4 @@ "name": "name",

"union": false,
"idlType": "Dog"
"idlType": "Dog",
"extAttrs": []
},

@@ -73,3 +75,4 @@ "name": "pet",

"union": false,
"idlType": "Human"
"idlType": "Human",
"extAttrs": []
},

@@ -76,0 +79,0 @@ "name": "owner",

@@ -16,3 +16,4 @@ [

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
}

@@ -40,3 +41,4 @@ ],

"union": false,
"idlType": "short"
"idlType": "short",
"extAttrs": []
},

@@ -49,3 +51,4 @@ {

"union": false,
"idlType": "double"
"idlType": "double",
"extAttrs": []
}

@@ -52,0 +55,0 @@ ],

@@ -16,3 +16,4 @@ [

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
}

@@ -19,0 +20,0 @@ ],

@@ -16,3 +16,4 @@ [

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -25,3 +26,4 @@ {

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
}

@@ -50,3 +52,4 @@ ],

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -59,3 +62,4 @@ {

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
}

@@ -62,0 +66,0 @@ ],

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "Crypto"
"idlType": "Crypto",
"extAttrs": []
},

@@ -57,3 +58,4 @@ "name": "crypto",

"union": false,
"idlType": "Crypto"
"idlType": "Crypto",
"extAttrs": []
},

@@ -60,0 +62,0 @@ "name": "crypto",

@@ -31,3 +31,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -34,0 +35,0 @@ "name": "src"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "Vector"
"idlType": "Vector",
"extAttrs": []
},

@@ -38,3 +39,4 @@ "name": "unit",

"union": false,
"idlType": "double"
"idlType": "double",
"extAttrs": []
},

@@ -53,3 +55,4 @@ "name": "dotProduct",

"union": false,
"idlType": "Vector"
"idlType": "Vector",
"extAttrs": []
},

@@ -68,3 +71,4 @@ "name": "x"

"union": false,
"idlType": "Vector"
"idlType": "Vector",
"extAttrs": []
},

@@ -89,3 +93,4 @@ "name": "y"

"union": false,
"idlType": "Vector"
"idlType": "Vector",
"extAttrs": []
},

@@ -104,3 +109,4 @@ "name": "crossProduct",

"union": false,
"idlType": "Vector"
"idlType": "Vector",
"extAttrs": []
},

@@ -119,3 +125,4 @@ "name": "x"

"union": false,
"idlType": "Vector"
"idlType": "Vector",
"extAttrs": []
},

@@ -122,0 +129,0 @@ "name": "y"

@@ -20,3 +20,4 @@ [

"union": false,
"idlType": "any"
"idlType": "any",
"extAttrs": []
},

@@ -35,3 +36,4 @@ "name": "lookupEntry",

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -38,0 +40,0 @@ "name": "key"

@@ -42,3 +42,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -45,0 +46,0 @@ "name": "namespaceURI",

@@ -36,3 +36,4 @@ [

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -51,3 +52,4 @@ "name": "f",

"union": false,
"idlType": "A"
"idlType": "A",
"extAttrs": []
},

@@ -72,3 +74,4 @@ "name": "x"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -87,3 +90,4 @@ "name": "f",

"union": false,
"idlType": "B"
"idlType": "B",
"extAttrs": []
},

@@ -90,0 +94,0 @@ "name": "x"

@@ -20,3 +20,4 @@ [

"union": false,
"idlType": "object"
"idlType": "object",
"extAttrs": []
},

@@ -35,3 +36,4 @@ "name": "createColor",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -50,3 +52,4 @@ "name": "v1"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -65,3 +68,4 @@ "name": "v2"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -80,3 +84,4 @@ "name": "v3"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -83,0 +88,0 @@ "name": "alpha",

@@ -36,3 +36,4 @@ [

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -51,3 +52,4 @@ "name": "f",

"union": false,
"idlType": "A"
"idlType": "A",
"extAttrs": []
},

@@ -72,3 +74,4 @@ "name": "x"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -87,3 +90,4 @@ "name": "f",

"union": false,
"idlType": "B"
"idlType": "B",
"extAttrs": []
},

@@ -117,3 +121,4 @@ "name": "x"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -132,3 +137,4 @@ "name": "f",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -153,3 +159,4 @@ "name": "a"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -175,3 +182,4 @@ "name": "f",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -190,3 +198,4 @@ "name": "a"

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -205,3 +214,4 @@ "name": "b"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -226,3 +236,4 @@ "name": "c"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -246,3 +257,4 @@ "name": "f",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -261,3 +273,4 @@ "name": "f",

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -276,3 +289,4 @@ "name": "a"

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -291,3 +305,4 @@ "name": "b"

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -306,3 +321,4 @@ "name": "c"

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -309,0 +325,0 @@ "name": "d"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -38,3 +39,4 @@ "name": "length",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -53,3 +55,4 @@ "name": "lookup",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -56,0 +59,0 @@ "name": "key"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -46,3 +47,4 @@ "name": "bar",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -49,0 +51,0 @@ "name": "quux",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -37,3 +38,4 @@ "name": "truth",

"union": false,
"idlType": "byte"
"idlType": "byte",
"extAttrs": []
},

@@ -55,3 +57,4 @@ "name": "character",

"union": false,
"idlType": "octet"
"idlType": "octet",
"extAttrs": []
},

@@ -73,3 +76,4 @@ "name": "value",

"union": false,
"idlType": "short"
"idlType": "short",
"extAttrs": []
},

@@ -91,3 +95,4 @@ "name": "number",

"union": false,
"idlType": "unsigned short"
"idlType": "unsigned short",
"extAttrs": []
},

@@ -109,3 +114,4 @@ "name": "positive",

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -127,3 +133,4 @@ "name": "big",

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -145,3 +152,4 @@ "name": "bigpositive",

"union": false,
"idlType": "long long"
"idlType": "long long",
"extAttrs": []
},

@@ -163,3 +171,4 @@ "name": "bigbig",

"union": false,
"idlType": "unsigned long long"
"idlType": "unsigned long long",
"extAttrs": []
},

@@ -181,3 +190,4 @@ "name": "bigbigpositive",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -199,3 +209,4 @@ "name": "real",

"union": false,
"idlType": "double"
"idlType": "double",
"extAttrs": []
},

@@ -217,3 +228,4 @@ "name": "bigreal",

"union": false,
"idlType": "unrestricted float"
"idlType": "unrestricted float",
"extAttrs": []
},

@@ -235,3 +247,4 @@ "name": "realwithinfinity",

"union": false,
"idlType": "unrestricted double"
"idlType": "unrestricted double",
"extAttrs": []
},

@@ -253,3 +266,4 @@ "name": "bigrealwithinfinity",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -271,3 +285,4 @@ "name": "string",

"union": false,
"idlType": "ByteString"
"idlType": "ByteString",
"extAttrs": []
},

@@ -289,3 +304,4 @@ "name": "bytes",

"union": false,
"idlType": "Date"
"idlType": "Date",
"extAttrs": []
},

@@ -307,3 +323,4 @@ "name": "date",

"union": false,
"idlType": "RegExp"
"idlType": "RegExp",
"extAttrs": []
},

@@ -310,0 +327,0 @@ "name": "regexp",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned short"
"idlType": "unsigned short",
"extAttrs": []
},

@@ -22,0 +23,0 @@ "name": "nodeType",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "Name"
"idlType": "Name",
"extAttrs": []
},

@@ -47,3 +48,4 @@ "name": "name",

"union": false,
"idlType": "unsigned short"
"idlType": "unsigned short",
"extAttrs": []
},

@@ -50,0 +52,0 @@ "name": "age",

@@ -20,3 +20,4 @@ [

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -48,3 +49,4 @@ "name": "foo",

"union": false,
"idlType": "ByteString"
"idlType": "ByteString",
"extAttrs": []
},

@@ -57,6 +59,9 @@ {

"union": false,
"idlType": "any"
"idlType": "any",
"extAttrs": []
}
]
}
],
"extAttrs": []
},
"extAttrs": []
},

@@ -88,3 +93,4 @@ "name": "param"

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -104,3 +110,4 @@ {

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -113,7 +120,10 @@ {

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
}
]
],
"extAttrs": []
}
]
],
"extAttrs": []
},

@@ -137,3 +147,4 @@ "name": "bar",

"union": false,
"idlType": "record"
"idlType": "record",
"extAttrs": []
},

@@ -167,3 +178,4 @@ "name": "baz",

"union": false,
"idlType": "USVString"
"idlType": "USVString",
"extAttrs": []
},

@@ -176,5 +188,7 @@ {

"union": false,
"idlType": "USVString"
"idlType": "USVString",
"extAttrs": []
}
]
],
"extAttrs": []
},

@@ -214,3 +228,4 @@ "name": "init"

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -233,3 +248,4 @@ {

}
]
],
"extAttrs": []
},

@@ -236,0 +252,0 @@ "name": "bar",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -37,3 +38,4 @@ "name": "width",

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -65,3 +67,4 @@ "name": "height",

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -85,3 +88,4 @@ "name": "isMouseOver",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -100,3 +104,4 @@ "name": "setDimensions",

"union": false,
"idlType": "Dimensions"
"idlType": "Dimensions",
"extAttrs": []
},

@@ -121,3 +126,4 @@ "name": "size"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -136,3 +142,4 @@ "name": "setDimensions",

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -151,3 +158,4 @@ "name": "width"

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -154,0 +162,0 @@ "name": "height"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -45,3 +46,4 @@ "name": "value",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -48,0 +50,0 @@ "name": "increment",

@@ -20,3 +20,4 @@ [

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -41,4 +42,6 @@ "name": "drawPolygon",

"union": false,
"idlType": "float"
}
"idlType": "float",
"extAttrs": []
},
"extAttrs": []
},

@@ -69,4 +72,6 @@ "name": "coordinates"

"union": false,
"idlType": "float"
}
"idlType": "float",
"extAttrs": []
},
"extAttrs": []
},

@@ -99,3 +104,4 @@ "name": "getInflectionPoints",

"union": false,
"idlType": "sequence"
"idlType": "sequence",
"extAttrs": []
},

@@ -128,3 +134,4 @@ "name": "bar",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -158,3 +165,4 @@ "name": "f1",

]
}
},
"extAttrs": []
},

@@ -161,0 +169,0 @@ "name": "arg"

@@ -16,3 +16,4 @@ [

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
}

@@ -41,3 +42,4 @@ ],

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
}

@@ -44,0 +46,0 @@ ],

@@ -27,3 +27,4 @@ [

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -45,3 +46,4 @@ "name": "cx",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -63,3 +65,4 @@ "name": "cy",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -81,3 +84,4 @@ "name": "radius",

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -100,3 +104,4 @@ "name": "triangulationCount",

"union": false,
"idlType": "Point"
"idlType": "Point",
"extAttrs": []
},

@@ -115,3 +120,4 @@ "name": "triangulate",

"union": false,
"idlType": "Circle"
"idlType": "Circle",
"extAttrs": []
},

@@ -130,3 +136,4 @@ "name": "c1"

"union": false,
"idlType": "Circle"
"idlType": "Circle",
"extAttrs": []
},

@@ -145,3 +152,4 @@ "name": "c2"

"union": false,
"idlType": "Circle"
"idlType": "Circle",
"extAttrs": []
},

@@ -148,0 +156,0 @@ "name": "c3"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -37,3 +38,4 @@ "name": "id",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -40,0 +42,0 @@ "name": "name",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -37,3 +38,4 @@ "name": "id",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -55,3 +57,4 @@ "name": "familyName",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -74,3 +77,4 @@ "name": "givenName",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -77,0 +81,0 @@ "name": null,

@@ -20,3 +20,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -23,0 +24,0 @@ "name": null,

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -37,3 +38,4 @@ "name": "name",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -56,3 +58,4 @@ "name": "owner",

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -81,3 +84,4 @@ "name": "isMemberOfBreed",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -84,0 +88,0 @@ "name": "breedName"

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -37,3 +38,4 @@ "name": "name",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -56,3 +58,4 @@ "name": "owner",

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -81,3 +84,4 @@ "name": "isMemberOfBreed",

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
},

@@ -84,0 +88,0 @@ "name": "breedName"

@@ -17,3 +17,4 @@ [

"union": false,
"idlType": "ImageData"
"idlType": "ImageData",
"extAttrs": []
},

@@ -26,3 +27,4 @@ {

"union": false,
"idlType": "HTMLImageElement"
"idlType": "HTMLImageElement",
"extAttrs": []
},

@@ -35,3 +37,4 @@ {

"union": false,
"idlType": "HTMLCanvasElement"
"idlType": "HTMLCanvasElement",
"extAttrs": []
},

@@ -44,5 +47,7 @@ {

"union": false,
"idlType": "HTMLVideoElement"
"idlType": "HTMLVideoElement",
"extAttrs": []
}
]
],
"extAttrs": []
},

@@ -49,0 +54,0 @@ "name": "TexImageSource",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -37,3 +38,4 @@ "name": "x",

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -61,4 +63,6 @@ "name": "y",

"union": false,
"idlType": "Point"
}
"idlType": "Point",
"extAttrs": []
},
"extAttrs": []
},

@@ -85,3 +89,4 @@ "name": "PointSequence",

"union": false,
"idlType": "Point"
"idlType": "Point",
"extAttrs": []
},

@@ -103,3 +108,4 @@ "name": "topleft",

"union": false,
"idlType": "Point"
"idlType": "Point",
"extAttrs": []
},

@@ -130,3 +136,4 @@ "name": "bottomright",

"union": false,
"idlType": "Rect"
"idlType": "Rect",
"extAttrs": []
},

@@ -149,3 +156,4 @@ "name": "bounds",

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -164,3 +172,4 @@ "name": "pointWithinBounds",

"union": false,
"idlType": "Point"
"idlType": "Point",
"extAttrs": []
},

@@ -185,3 +194,4 @@ "name": "p"

"union": false,
"idlType": "boolean"
"idlType": "boolean",
"extAttrs": []
},

@@ -200,3 +210,4 @@ "name": "allPointsWithinBounds",

"union": false,
"idlType": "PointSequence"
"idlType": "PointSequence",
"extAttrs": []
},

@@ -203,0 +214,0 @@ "name": "ps"

@@ -20,3 +20,4 @@ [

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -41,4 +42,6 @@ "name": "test",

"union": false,
"idlType": "DOMString"
}
"idlType": "DOMString",
"extAttrs": []
},
"extAttrs": []
},

@@ -45,0 +48,0 @@ "name": "foo"

@@ -26,3 +26,4 @@ [

"union": false,
"idlType": "float"
"idlType": "float",
"extAttrs": []
},

@@ -42,3 +43,4 @@ {

"union": false,
"idlType": "Date"
"idlType": "Date",
"extAttrs": []
},

@@ -51,5 +53,7 @@ {

"union": false,
"idlType": "Event"
"idlType": "Event",
"extAttrs": []
}
]
],
"extAttrs": []
},

@@ -69,3 +73,4 @@ {

"union": false,
"idlType": "Node"
"idlType": "Node",
"extAttrs": []
},

@@ -78,7 +83,10 @@ {

"union": false,
"idlType": "DOMString"
"idlType": "DOMString",
"extAttrs": []
}
]
],
"extAttrs": []
}
]
],
"extAttrs": []
},

@@ -123,5 +131,7 @@ "name": "test",

"union": false,
"idlType": "Date"
"idlType": "Date",
"extAttrs": []
}
]
],
"extAttrs": []
},

@@ -128,0 +138,0 @@ "name": "test2",

@@ -19,3 +19,4 @@ [

"union": false,
"idlType": "unsigned long"
"idlType": "unsigned long",
"extAttrs": []
},

@@ -38,3 +39,4 @@ "name": "cardinality",

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -53,3 +55,4 @@ "name": "union",

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -74,3 +77,4 @@ "name": "ints"

"union": false,
"idlType": "void"
"idlType": "void",
"extAttrs": []
},

@@ -89,3 +93,4 @@ "name": "intersection",

"union": false,
"idlType": "long"
"idlType": "long",
"extAttrs": []
},

@@ -92,0 +97,0 @@ "name": "ints"

{
"allowNestedTypedefs": true
}

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@

@@ -0,0 +0,0 @@ # Uses

invalid/idl/enum.widl: 1: at '1': expected string in enum
invalid/idl/module.widl: 2: at 'gfx': expected 'implements'
invalid/idl/nonnullableany.widl: 2: at '?': expected identifier
invalid/idl/nonnullableobjects.widl: 4: at '?': expected identifier
invalid/idl/scopedname.widl: 2: at ':': expected identifier
invalid/idl/sequenceAsAttribute.widl: 2: at 'sequence': expected type

@@ -0,0 +0,0 @@ "use strict";

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc