| Index: pkg/dev_compiler/lib/js/amd/dart_sdk.js
|
| diff --git a/pkg/dev_compiler/lib/js/amd/dart_sdk.js b/pkg/dev_compiler/lib/js/amd/dart_sdk.js
|
| index bfa802af09246a3bfc6d0cfe7e160d09aed4b429..b752e48a41dfb36c22f3432bad96af4cb1bd9518 100644
|
| --- a/pkg/dev_compiler/lib/js/amd/dart_sdk.js
|
| +++ b/pkg/dev_compiler/lib/js/amd/dart_sdk.js
|
| @@ -2116,7 +2116,7 @@ define([], function() {
|
| dart._trackCall = function(obj) {
|
| if (!dart.trackProfile) return;
|
| let actual = dart.getReifiedType(obj);
|
| - let stackStr = new Error().stack;
|
| + let stackStr = new self.Error().stack;
|
| let stack = stackStr[dartx.split]('\n at ');
|
| let src = '';
|
| for (let i = 2; i < dart.notNull(stack[dartx.length]); ++i) {
|
| @@ -2599,7 +2599,7 @@ define([], function() {
|
| dart.isNamedConstructor = Symbol("isNamedConstructor");
|
| dart.defineLazy(dart, {
|
| get _lazyJSTypes() {
|
| - return new Map();
|
| + return new self.Map();
|
| },
|
| set _lazyJSTypes(_) {}
|
| });
|
| @@ -2792,9 +2792,9 @@ define([], function() {
|
| constructors: () => ({new: dart.definiteFunctionType(dart.AbstractFunctionType, [])}),
|
| fields: () => ({[_stringValue]: core.String})
|
| });
|
| - dart._fnTypeNamedArgMap = new Map();
|
| - dart._fnTypeArrayArgMap = new Map();
|
| - dart._fnTypeTypeMap = new Map();
|
| + dart._fnTypeNamedArgMap = new self.Map();
|
| + dart._fnTypeArrayArgMap = new self.Map();
|
| + dart._fnTypeTypeMap = new self.Map();
|
| dart._fnTypeSmallMap = [new Map(), new Map(), new Map()];
|
| const _process = Symbol('_process');
|
| dart.FunctionType = class FunctionType extends dart.AbstractFunctionType {
|
| @@ -3095,8 +3095,8 @@ define([], function() {
|
| })();
|
| dart._stack = null;
|
| dart._value = Symbol("_value");
|
| - dart.constants = new Map();
|
| - dart.constantLists = new Map();
|
| + dart.constants = new self.Map();
|
| + dart.constantLists = new self.Map();
|
| dart.JsIterator = class JsIterator {
|
| constructor(dartIterator) {
|
| this.dartIterator = dartIterator;
|
| @@ -9764,7 +9764,7 @@ define([], function() {
|
| return _isolate_helper.IsolateNatives.computeThisScriptFromTrace();
|
| }
|
| static computeThisScriptFromTrace() {
|
| - let stack = new Error().stack;
|
| + let stack = new self.Error().stack;
|
| if (stack == null) {
|
| stack = (function() {
|
| try {
|
| @@ -9777,10 +9777,10 @@ define([], function() {
|
| if (stack == null) dart.throw(new core.UnsupportedError('No stack trace'));
|
| }
|
| let pattern = null, matches = null;
|
| - pattern = new RegExp("^ *at [^(]*\\((.*):[0-9]*:[0-9]*\\)$", "m");
|
| + pattern = new self.RegExp("^ *at [^(]*\\((.*):[0-9]*:[0-9]*\\)$", "m");
|
| matches = stack.match(pattern);
|
| if (matches != null) return matches[1];
|
| - pattern = new RegExp("^[^@]*@(.*):[0-9]*$", "m");
|
| + pattern = new self.RegExp("^[^@]*@(.*):[0-9]*$", "m");
|
| matches = stack.match(pattern);
|
| if (matches != null) return matches[1];
|
| dart.throw(new core.UnsupportedError(dart.str`Cannot extract URI from "${stack}"`));
|
| @@ -9971,7 +9971,7 @@ define([], function() {
|
| }
|
| static _spawnWorker(functionName, uri, args, message, isSpawnUri, startPaused, replyPort, onError) {
|
| if (uri == null) uri = _isolate_helper.IsolateNatives.thisScript;
|
| - let worker = new Worker(uri);
|
| + let worker = new self.Worker(uri);
|
| let onerrorTrampoline = (function(f, u, c) {
|
| return function(e) {
|
| return f(e, u, c);
|
| @@ -11764,7 +11764,7 @@ define([], function() {
|
| if (dart.test(isUtc)) {
|
| value = Date.UTC(years, jsMonth, day, hours, minutes, seconds, milliseconds);
|
| } else {
|
| - value = new Date(years, jsMonth, day, hours, minutes, seconds, milliseconds).valueOf();
|
| + value = new self.Date(years, jsMonth, day, hours, minutes, seconds, milliseconds).valueOf();
|
| }
|
| if (dart.test(value[dartx.isNaN]) || dart.notNull(value) < -MAX_MILLISECONDS_SINCE_EPOCH || dart.notNull(value) > MAX_MILLISECONDS_SINCE_EPOCH) {
|
| return null;
|
| @@ -11773,7 +11773,7 @@ define([], function() {
|
| return value;
|
| }
|
| static patchUpY2K(value, years, isUtc) {
|
| - let date = new Date(value);
|
| + let date = new self.Date(value);
|
| if (dart.test(isUtc)) {
|
| date.setUTCFullYear(years);
|
| } else {
|
| @@ -12851,7 +12851,7 @@ define([], function() {
|
| return table.has(key);
|
| }
|
| [_newHashTable]() {
|
| - return new Map();
|
| + return new self.Map();
|
| }
|
| }
|
| return Es6LinkedHashMap;
|
| @@ -13455,7 +13455,7 @@ define([], function() {
|
| }
|
| } else {
|
| let quoted = _js_helper.quoteStringForRegExp(pattern);
|
| - let replacer = new RegExp(quoted, 'g');
|
| + let replacer = new self.RegExp(quoted, 'g');
|
| return _js_helper.stringReplaceJS(receiver, replacer, replacement);
|
| }
|
| } else if (_js_helper.JSSyntaxRegExp.is(pattern)) {
|
| @@ -16333,13 +16333,13 @@ define([], function() {
|
| return this.setUint8.apply(this, args);
|
| }
|
| static _create1(arg) {
|
| - return new DataView(new ArrayBuffer(arg));
|
| + return new self.DataView(new ArrayBuffer(arg));
|
| }
|
| static _create2(arg1, arg2) {
|
| - return new DataView(arg1, arg2);
|
| + return new self.DataView(arg1, arg2);
|
| }
|
| static _create3(arg1, arg2, arg3) {
|
| - return new DataView(arg1, arg2, arg3);
|
| + return new self.DataView(arg1, arg2, arg3);
|
| }
|
| };
|
| _native_typed_data.NativeByteData[dart.implements] = () => [typed_data.ByteData];
|
| @@ -24184,7 +24184,7 @@ define([], function() {
|
| let VTobool = () => (VTobool = dart.constFn(dart.definiteFunctionType(core.bool, [V])))();
|
| class _Es6LinkedIdentityHashMap extends collection._LinkedIdentityHashMap$(K, V) {
|
| new() {
|
| - this[_map$0] = new Map();
|
| + this[_map$0] = new self.Map();
|
| this[_modifications$] = 0;
|
| super.new();
|
| }
|
| @@ -29453,7 +29453,7 @@ define([], function() {
|
| if (!(typeof length == 'number') || dart.notNull(length) < 0) {
|
| dart.throw(new core.ArgumentError(dart.str`Length must be a non-negative integer: ${length}`));
|
| }
|
| - list = _interceptors.JSArray.markFixedList(new Array(length));
|
| + list = _interceptors.JSArray.markFixedList(new self.Array(length));
|
| }
|
| return JSArrayOfE().typed(list);
|
| }
|
| @@ -34443,7 +34443,7 @@ define([], function() {
|
| }
|
| static get current() {
|
| if (Error.captureStackTrace != null) {
|
| - let error = new Error();
|
| + let error = new self.Error();
|
| Error.captureStackTrace(error);
|
| return _js_helper.getTraceFromException(error);
|
| }
|
| @@ -53027,12 +53027,12 @@ define([], function() {
|
| dart.fn(js._wrapToDartHelper, dynamicToObject());
|
| dart.defineLazy(js, {
|
| get _dartProxies() {
|
| - return new WeakMap();
|
| + return new self.WeakMap();
|
| }
|
| });
|
| dart.defineLazy(js, {
|
| get _jsProxies() {
|
| - return new WeakMap();
|
| + return new self.WeakMap();
|
| }
|
| });
|
| js._putIfAbsent = function(weakMap, o, getValue) {
|
| @@ -55634,10 +55634,10 @@ define([], function() {
|
| return html$.Event._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new Event(type, eventInitDict);
|
| + return new self.Event(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new Event(type);
|
| + return new self.Event(type);
|
| }
|
| get [dartx.bubbles]() {
|
| return this.bubbles;
|
| @@ -55749,10 +55749,10 @@ define([], function() {
|
| return indexed_db.VersionChangeEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new IDBVersionChangeEvent(type, eventInitDict);
|
| + return new self.IDBVersionChangeEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new IDBVersionChangeEvent(type);
|
| + return new self.IDBVersionChangeEvent(type);
|
| }
|
| get [dartx.dataLoss]() {
|
| return this.dataLoss;
|
| @@ -58344,10 +58344,10 @@ define([], function() {
|
| return html$.AnimationEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new AnimationEvent(type, eventInitDict);
|
| + return new self.AnimationEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new AnimationEvent(type);
|
| + return new self.AnimationEvent(type);
|
| }
|
| get [dartx.animationName]() {
|
| return this.animationName;
|
| @@ -58389,10 +58389,10 @@ define([], function() {
|
| return html$.AnimationPlayerEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new AnimationPlayerEvent(type, eventInitDict);
|
| + return new self.AnimationPlayerEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new AnimationPlayerEvent(type);
|
| + return new self.AnimationPlayerEvent(type);
|
| }
|
| get [dartx.currentTime]() {
|
| return this.currentTime;
|
| @@ -58629,10 +58629,10 @@ define([], function() {
|
| return html$.ApplicationCacheErrorEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new ApplicationCacheErrorEvent(type, eventInitDict);
|
| + return new self.ApplicationCacheErrorEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new ApplicationCacheErrorEvent(type);
|
| + return new self.ApplicationCacheErrorEvent(type);
|
| }
|
| get [dartx.message]() {
|
| return this.message;
|
| @@ -59210,10 +59210,10 @@ define([], function() {
|
| return html$.AudioElement._create_2();
|
| }
|
| static _create_1(src) {
|
| - return new Audio(src);
|
| + return new self.Audio(src);
|
| }
|
| static _create_2() {
|
| - return new Audio();
|
| + return new self.Audio();
|
| }
|
| created() {
|
| super.created();
|
| @@ -59333,10 +59333,10 @@ define([], function() {
|
| return html$.AutocompleteErrorEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new AutocompleteErrorEvent(type, eventInitDict);
|
| + return new self.AutocompleteErrorEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new AutocompleteErrorEvent(type);
|
| + return new self.AutocompleteErrorEvent(type);
|
| }
|
| get [dartx.reason]() {
|
| return this.reason;
|
| @@ -59484,10 +59484,10 @@ define([], function() {
|
| return html$.BeforeInstallPromptEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new BeforeInstallPromptEvent(type, eventInitDict);
|
| + return new self.BeforeInstallPromptEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new BeforeInstallPromptEvent(type);
|
| + return new self.BeforeInstallPromptEvent(type);
|
| }
|
| get [dartx.platforms]() {
|
| return this.platforms;
|
| @@ -61058,7 +61058,7 @@ define([], function() {
|
| return html$.CircularGeofencingRegion._create_1(init_1);
|
| }
|
| static _create_1(init) {
|
| - return new CircularGeofencingRegion(init);
|
| + return new self.CircularGeofencingRegion(init);
|
| }
|
| get [dartx.latitude]() {
|
| return this.latitude;
|
| @@ -61220,10 +61220,10 @@ define([], function() {
|
| return html$.CloseEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new CloseEvent(type, eventInitDict);
|
| + return new self.CloseEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new CloseEvent(type);
|
| + return new self.CloseEvent(type);
|
| }
|
| get [dartx.code]() {
|
| return this.code;
|
| @@ -61304,10 +61304,10 @@ define([], function() {
|
| return html$.UIEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new UIEvent(type, eventInitDict);
|
| + return new self.UIEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new UIEvent(type);
|
| + return new self.UIEvent(type);
|
| }
|
| get [_charCode]() {
|
| return this.charCode;
|
| @@ -61386,10 +61386,10 @@ define([], function() {
|
| return html$.CompositionEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new CompositionEvent(type, eventInitDict);
|
| + return new self.CompositionEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new CompositionEvent(type);
|
| + return new self.CompositionEvent(type);
|
| }
|
| get [dartx.data]() {
|
| return this.data;
|
| @@ -61428,7 +61428,7 @@ define([], function() {
|
| return html$.CompositorProxy._create_1(element, attributeArray);
|
| }
|
| static _create_1(element, attributeArray) {
|
| - return new CompositorProxy(element, attributeArray);
|
| + return new self.CompositorProxy(element, attributeArray);
|
| }
|
| get [dartx.opacity]() {
|
| return this.opacity;
|
| @@ -61494,7 +61494,7 @@ define([], function() {
|
| return html$.CompositorWorker._create_1(scriptUrl);
|
| }
|
| static _create_1(scriptUrl) {
|
| - return new CompositorWorker(scriptUrl);
|
| + return new self.CompositorWorker(scriptUrl);
|
| }
|
| [dartx.postMessage](message, transfer) {
|
| if (transfer === void 0) transfer = null;
|
| @@ -69118,10 +69118,10 @@ define([], function() {
|
| return html$.CustomEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new CustomEvent(type, eventInitDict);
|
| + return new self.CustomEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new CustomEvent(type);
|
| + return new self.CustomEvent(type);
|
| }
|
| get [_detail]() {
|
| return html_common.convertNativeToDart_SerializedScriptValue(this[_get__detail]);
|
| @@ -69436,10 +69436,10 @@ define([], function() {
|
| return html$.DefaultSessionStartEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new DefaultSessionStartEvent(type, eventInitDict);
|
| + return new self.DefaultSessionStartEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new DefaultSessionStartEvent(type);
|
| + return new self.DefaultSessionStartEvent(type);
|
| }
|
| get [dartx.session]() {
|
| return this.session;
|
| @@ -69589,10 +69589,10 @@ define([], function() {
|
| return html$.DeviceLightEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new DeviceLightEvent(type, eventInitDict);
|
| + return new self.DeviceLightEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new DeviceLightEvent(type);
|
| + return new self.DeviceLightEvent(type);
|
| }
|
| get [dartx.value]() {
|
| return this.value;
|
| @@ -71095,10 +71095,10 @@ define([], function() {
|
| return html$.DomError._create_2(name);
|
| }
|
| static _create_1(name, message) {
|
| - return new DOMError(name, message);
|
| + return new self.DOMError(name, message);
|
| }
|
| static _create_2(name) {
|
| - return new DOMError(name);
|
| + return new self.DOMError(name);
|
| }
|
| get [dartx.message]() {
|
| return this.message;
|
| @@ -71481,10 +71481,10 @@ define([], function() {
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| static _create_1() {
|
| - return new DOMMatrix();
|
| + return new self.DOMMatrix();
|
| }
|
| static _create_2(other) {
|
| - return new DOMMatrix(other);
|
| + return new self.DOMMatrix(other);
|
| }
|
| get [dartx.a]() {
|
| return this.a;
|
| @@ -71692,7 +71692,7 @@ define([], function() {
|
| return html$.DomParser._create_1();
|
| }
|
| static _create_1() {
|
| - return new DOMParser();
|
| + return new self.DOMParser();
|
| }
|
| [dartx.parseFromString](...args) {
|
| return this.parseFromString.apply(this, args);
|
| @@ -71722,7 +71722,7 @@ define([], function() {
|
| return html$.DomPointReadOnly._create_1(x, y, z, w);
|
| }
|
| static _create_1(x, y, z, w) {
|
| - return new DOMPointReadOnly(x, y, z, w);
|
| + return new self.DOMPointReadOnly(x, y, z, w);
|
| }
|
| get [dartx.w]() {
|
| return this.w;
|
| @@ -71793,22 +71793,22 @@ define([], function() {
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| static _create_1(point_OR_x) {
|
| - return new DOMPoint(point_OR_x);
|
| + return new self.DOMPoint(point_OR_x);
|
| }
|
| static _create_2() {
|
| - return new DOMPoint();
|
| + return new self.DOMPoint();
|
| }
|
| static _create_3(point_OR_x) {
|
| - return new DOMPoint(point_OR_x);
|
| + return new self.DOMPoint(point_OR_x);
|
| }
|
| static _create_4(point_OR_x, y) {
|
| - return new DOMPoint(point_OR_x, y);
|
| + return new self.DOMPoint(point_OR_x, y);
|
| }
|
| static _create_5(point_OR_x, y, z) {
|
| - return new DOMPoint(point_OR_x, y, z);
|
| + return new self.DOMPoint(point_OR_x, y, z);
|
| }
|
| static _create_6(point_OR_x, y, z, w) {
|
| - return new DOMPoint(point_OR_x, y, z, w);
|
| + return new self.DOMPoint(point_OR_x, y, z, w);
|
| }
|
| static get supported() {
|
| return !!window.DOMPoint || !!window.WebKitPoint;
|
| @@ -71941,7 +71941,7 @@ define([], function() {
|
| return html$.DomRectReadOnly._create_1(x, y, width, height);
|
| }
|
| static _create_1(x, y, width, height) {
|
| - return new DOMRectReadOnly(x, y, width, height);
|
| + return new self.DOMRectReadOnly(x, y, width, height);
|
| }
|
| get [dartx.bottom]() {
|
| return this.bottom;
|
| @@ -73006,10 +73006,10 @@ define([], function() {
|
| return html$.ErrorEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new ErrorEvent(type, eventInitDict);
|
| + return new self.ErrorEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new ErrorEvent(type);
|
| + return new self.ErrorEvent(type);
|
| }
|
| get [dartx.colno]() {
|
| return this.colno;
|
| @@ -73073,10 +73073,10 @@ define([], function() {
|
| return html$.EventSource._create_2(url);
|
| }
|
| static _create_1(url, eventSourceInitDict) {
|
| - return new EventSource(url, eventSourceInitDict);
|
| + return new self.EventSource(url, eventSourceInitDict);
|
| }
|
| static _create_2(url) {
|
| - return new EventSource(url);
|
| + return new self.EventSource(url);
|
| }
|
| get [dartx.readyState]() {
|
| return this.readyState;
|
| @@ -73198,10 +73198,10 @@ define([], function() {
|
| return html$.ExtendableEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new ExtendableEvent(type, eventInitDict);
|
| + return new self.ExtendableEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new ExtendableEvent(type);
|
| + return new self.ExtendableEvent(type);
|
| }
|
| [dartx.waitUntil](...args) {
|
| return this.waitUntil.apply(this, args);
|
| @@ -73233,7 +73233,7 @@ define([], function() {
|
| return html$.FederatedCredential._create_1(data_1);
|
| }
|
| static _create_1(data) {
|
| - return new FederatedCredential(data);
|
| + return new self.FederatedCredential(data);
|
| }
|
| get [dartx.protocol]() {
|
| return this.protocol;
|
| @@ -73273,10 +73273,10 @@ define([], function() {
|
| return html$.FetchEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new FetchEvent(type, eventInitDict);
|
| + return new self.FetchEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new FetchEvent(type);
|
| + return new self.FetchEvent(type);
|
| }
|
| get [dartx.isReload]() {
|
| return this.isReload;
|
| @@ -73420,10 +73420,10 @@ define([], function() {
|
| return html$.File._create_2(fileBits, fileName);
|
| }
|
| static _create_1(fileBits, fileName, options) {
|
| - return new File(fileBits, fileName, options);
|
| + return new self.File(fileBits, fileName, options);
|
| }
|
| static _create_2(fileBits, fileName) {
|
| - return new File(fileBits, fileName);
|
| + return new self.File(fileBits, fileName);
|
| }
|
| get [dartx.lastModified]() {
|
| return this.lastModified;
|
| @@ -73647,7 +73647,7 @@ define([], function() {
|
| return html$.FileReader._create_1();
|
| }
|
| static _create_1() {
|
| - return new FileReader();
|
| + return new self.FileReader();
|
| }
|
| get [dartx.error]() {
|
| return this.error;
|
| @@ -73931,10 +73931,10 @@ define([], function() {
|
| return html$.FocusEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new FocusEvent(type, eventInitDict);
|
| + return new self.FocusEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new FocusEvent(type);
|
| + return new self.FocusEvent(type);
|
| }
|
| get [dartx.relatedTarget]() {
|
| return html$._convertNativeToDart_EventTarget(this[_get_relatedTarget]);
|
| @@ -73982,10 +73982,10 @@ define([], function() {
|
| return html$.FontFace._create_2(family, source);
|
| }
|
| static _create_1(family, source, descriptors) {
|
| - return new FontFace(family, source, descriptors);
|
| + return new self.FontFace(family, source, descriptors);
|
| }
|
| static _create_2(family, source) {
|
| - return new FontFace(family, source);
|
| + return new self.FontFace(family, source);
|
| }
|
| get [dartx.family]() {
|
| return this.family;
|
| @@ -74156,10 +74156,10 @@ define([], function() {
|
| return html$.FormData._create_2();
|
| }
|
| static _create_1(form) {
|
| - return new FormData(form);
|
| + return new self.FormData(form);
|
| }
|
| static _create_2() {
|
| - return new FormData();
|
| + return new self.FormData();
|
| }
|
| static get supported() {
|
| return !!window.FormData;
|
| @@ -74450,10 +74450,10 @@ define([], function() {
|
| return html$.GamepadEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new GamepadEvent(type, eventInitDict);
|
| + return new self.GamepadEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new GamepadEvent(type);
|
| + return new self.GamepadEvent(type);
|
| }
|
| get [dartx.gamepad]() {
|
| return this.gamepad;
|
| @@ -75300,7 +75300,7 @@ define([], function() {
|
| let oldUrl = opts && 'oldUrl' in opts ? opts.oldUrl : null;
|
| let newUrl = opts && 'newUrl' in opts ? opts.newUrl : null;
|
| let options = dart.map({canBubble: canBubble, cancelable: cancelable, oldURL: oldUrl, newURL: newUrl}, core.String, core.Object);
|
| - return new HashChangeEvent(type, html_common.convertDartToNative_Dictionary(options));
|
| + return new self.HashChangeEvent(type, html_common.convertDartToNative_Dictionary(options));
|
| }
|
| static _(type, eventInitDict) {
|
| if (eventInitDict === void 0) eventInitDict = null;
|
| @@ -75311,10 +75311,10 @@ define([], function() {
|
| return html$.HashChangeEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new HashChangeEvent(type, eventInitDict);
|
| + return new self.HashChangeEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new HashChangeEvent(type);
|
| + return new self.HashChangeEvent(type);
|
| }
|
| static get supported() {
|
| return html_common.Device.isEventTypeSupported('HashChangeEvent');
|
| @@ -75389,16 +75389,16 @@ define([], function() {
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| static _create_1() {
|
| - return new Headers();
|
| + return new self.Headers();
|
| }
|
| static _create_2(input) {
|
| - return new Headers(input);
|
| + return new self.Headers(input);
|
| }
|
| static _create_3(input) {
|
| - return new Headers(input);
|
| + return new self.Headers(input);
|
| }
|
| static _create_4(input) {
|
| - return new Headers(input);
|
| + return new self.Headers(input);
|
| }
|
| };
|
| dart.setSignature(html$.Headers, {
|
| @@ -76080,7 +76080,7 @@ define([], function() {
|
| if (method == null) {
|
| method = 'GET';
|
| }
|
| - let xhr = new XDomainRequest();
|
| + let xhr = new self.XDomainRequest();
|
| xhr.open(method, url);
|
| xhr.onload = _js_helper.convertDartClosureToJS(dynamicTodynamic())(dart.fn(e => {
|
| let response = xhr.responseText;
|
| @@ -76134,7 +76134,7 @@ define([], function() {
|
| return html$.HttpRequest._create_1();
|
| }
|
| static _create_1() {
|
| - return new XMLHttpRequest();
|
| + return new self.XMLHttpRequest();
|
| }
|
| get [dartx.readyState]() {
|
| return this.readyState;
|
| @@ -76419,13 +76419,13 @@ define([], function() {
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| static _create_1(data_OR_sw, sh_OR_sw) {
|
| - return new ImageData(data_OR_sw, sh_OR_sw);
|
| + return new self.ImageData(data_OR_sw, sh_OR_sw);
|
| }
|
| static _create_2(data_OR_sw, sh_OR_sw) {
|
| - return new ImageData(data_OR_sw, sh_OR_sw);
|
| + return new self.ImageData(data_OR_sw, sh_OR_sw);
|
| }
|
| static _create_3(data_OR_sw, sh_OR_sw, sh) {
|
| - return new ImageData(data_OR_sw, sh_OR_sw, sh);
|
| + return new self.ImageData(data_OR_sw, sh_OR_sw, sh);
|
| }
|
| get [dartx.data]() {
|
| return this.data;
|
| @@ -76624,10 +76624,10 @@ define([], function() {
|
| return html$.InputDevice._create_2();
|
| }
|
| static _create_1(deviceInitDict) {
|
| - return new InputDevice(deviceInitDict);
|
| + return new self.InputDevice(deviceInitDict);
|
| }
|
| static _create_2() {
|
| - return new InputDevice();
|
| + return new self.InputDevice();
|
| }
|
| get [dartx.firesTouchEvents]() {
|
| return this.firesTouchEvents;
|
| @@ -78345,10 +78345,10 @@ define([], function() {
|
| return html$.KeyboardEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new KeyboardEvent(type, eventInitDict);
|
| + return new self.KeyboardEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new KeyboardEvent(type);
|
| + return new self.KeyboardEvent(type);
|
| }
|
| get [dartx.altKey]() {
|
| return this.altKey;
|
| @@ -78446,13 +78446,13 @@ define([], function() {
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| static _create_1(target, keyframes) {
|
| - return new KeyframeEffect(target, keyframes);
|
| + return new self.KeyframeEffect(target, keyframes);
|
| }
|
| static _create_2(target, keyframes, timing) {
|
| - return new KeyframeEffect(target, keyframes, timing);
|
| + return new self.KeyframeEffect(target, keyframes, timing);
|
| }
|
| static _create_3(target, keyframes, timing) {
|
| - return new KeyframeEffect(target, keyframes, timing);
|
| + return new self.KeyframeEffect(target, keyframes, timing);
|
| }
|
| };
|
| dart.setSignature(html$.KeyframeEffect, {
|
| @@ -78992,7 +78992,7 @@ define([], function() {
|
| return html$.MediaController._create_1();
|
| }
|
| static _create_1() {
|
| - return new MediaController();
|
| + return new self.MediaController();
|
| }
|
| get [dartx.buffered]() {
|
| return this.buffered;
|
| @@ -79158,10 +79158,10 @@ define([], function() {
|
| return html$.MediaEncryptedEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MediaEncryptedEvent(type, eventInitDict);
|
| + return new self.MediaEncryptedEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MediaEncryptedEvent(type);
|
| + return new self.MediaEncryptedEvent(type);
|
| }
|
| get [dartx.initData]() {
|
| return this.initData;
|
| @@ -79271,10 +79271,10 @@ define([], function() {
|
| return html$.MediaKeyEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MediaKeyEvent(type, eventInitDict);
|
| + return new self.MediaKeyEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MediaKeyEvent(type);
|
| + return new self.MediaKeyEvent(type);
|
| }
|
| get [dartx.defaultUrl]() {
|
| return this.defaultURL;
|
| @@ -79336,10 +79336,10 @@ define([], function() {
|
| return html$.MediaKeyMessageEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MediaKeyMessageEvent(type, eventInitDict);
|
| + return new self.MediaKeyMessageEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MediaKeyMessageEvent(type);
|
| + return new self.MediaKeyMessageEvent(type);
|
| }
|
| get [dartx.message]() {
|
| return this.message;
|
| @@ -79602,10 +79602,10 @@ define([], function() {
|
| return html$.MediaQueryListEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MediaQueryListEvent(type, eventInitDict);
|
| + return new self.MediaQueryListEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MediaQueryListEvent(type);
|
| + return new self.MediaQueryListEvent(type);
|
| }
|
| get [dartx.matches]() {
|
| return this.matches;
|
| @@ -79642,7 +79642,7 @@ define([], function() {
|
| return html$.MediaSession._create_1();
|
| }
|
| static _create_1() {
|
| - return new MediaSession();
|
| + return new self.MediaSession();
|
| }
|
| [dartx.activate](...args) {
|
| return this.activate.apply(this, args);
|
| @@ -79681,7 +79681,7 @@ define([], function() {
|
| return html$.MediaSource._create_1();
|
| }
|
| static _create_1() {
|
| - return new MediaSource();
|
| + return new self.MediaSource();
|
| }
|
| static get supported() {
|
| return !!window.MediaSource;
|
| @@ -79770,13 +79770,13 @@ define([], function() {
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| static _create_1() {
|
| - return new MediaStream();
|
| + return new self.MediaStream();
|
| }
|
| static _create_2(stream_OR_tracks) {
|
| - return new MediaStream(stream_OR_tracks);
|
| + return new self.MediaStream(stream_OR_tracks);
|
| }
|
| static _create_3(stream_OR_tracks) {
|
| - return new MediaStream(stream_OR_tracks);
|
| + return new self.MediaStream(stream_OR_tracks);
|
| }
|
| get [dartx.active]() {
|
| return this.active;
|
| @@ -79894,10 +79894,10 @@ define([], function() {
|
| return html$.MediaStreamEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MediaStreamEvent(type, eventInitDict);
|
| + return new self.MediaStreamEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MediaStreamEvent(type);
|
| + return new self.MediaStreamEvent(type);
|
| }
|
| static get supported() {
|
| return html_common.Device.isEventTypeSupported('MediaStreamEvent');
|
| @@ -80242,7 +80242,7 @@ define([], function() {
|
| source = html$.window;
|
| }
|
| if (!dart.test(html_common.Device.isIE)) {
|
| - return new MessageEvent(type, {bubbles: canBubble, cancelable: cancelable, data: data, origin: origin, lastEventId: lastEventId, source: source, ports: messagePorts});
|
| + return new self.MessageEvent(type, {bubbles: canBubble, cancelable: cancelable, data: data, origin: origin, lastEventId: lastEventId, source: source, ports: messagePorts});
|
| }
|
| let event = html$.MessageEvent._check(html$.document[_createEvent]("MessageEvent"));
|
| event[_initMessageEvent](type, canBubble, cancelable, data, origin, lastEventId, source, messagePorts);
|
| @@ -80263,10 +80263,10 @@ define([], function() {
|
| return html$.MessageEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MessageEvent(type, eventInitDict);
|
| + return new self.MessageEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MessageEvent(type);
|
| + return new self.MessageEvent(type);
|
| }
|
| get [dartx.lastEventId]() {
|
| return this.lastEventId;
|
| @@ -80574,10 +80574,10 @@ define([], function() {
|
| return html$.MidiConnectionEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MIDIConnectionEvent(type, eventInitDict);
|
| + return new self.MIDIConnectionEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MIDIConnectionEvent(type);
|
| + return new self.MIDIConnectionEvent(type);
|
| }
|
| get [dartx.port]() {
|
| return this.port;
|
| @@ -80711,10 +80711,10 @@ define([], function() {
|
| return html$.MidiMessageEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MIDIMessageEvent(type, eventInitDict);
|
| + return new self.MIDIMessageEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MIDIMessageEvent(type);
|
| + return new self.MIDIMessageEvent(type);
|
| }
|
| get [dartx.data]() {
|
| return this.data;
|
| @@ -80981,10 +80981,10 @@ define([], function() {
|
| return html$.MouseEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new MouseEvent(type, eventInitDict);
|
| + return new self.MouseEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new MouseEvent(type);
|
| + return new self.MouseEvent(type);
|
| }
|
| get [dartx.altKey]() {
|
| return this.altKey;
|
| @@ -82181,10 +82181,10 @@ define([], function() {
|
| return html$.Notification._create_2(title);
|
| }
|
| static _create_1(title, options) {
|
| - return new Notification(title, options);
|
| + return new self.Notification(title, options);
|
| }
|
| static _create_2(title) {
|
| - return new Notification(title);
|
| + return new self.Notification(title);
|
| }
|
| static get supported() {
|
| return !!window.Notification;
|
| @@ -82313,10 +82313,10 @@ define([], function() {
|
| return html$.NotificationEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new NotificationEvent(type, eventInitDict);
|
| + return new self.NotificationEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new NotificationEvent(type);
|
| + return new self.NotificationEvent(type);
|
| }
|
| get [dartx.notification]() {
|
| return this.notification;
|
| @@ -82596,19 +82596,19 @@ define([], function() {
|
| return html$.OptionElement._create_5();
|
| }
|
| static _create_1(data, value, defaultSelected, selected) {
|
| - return new Option(data, value, defaultSelected, selected);
|
| + return new self.Option(data, value, defaultSelected, selected);
|
| }
|
| static _create_2(data, value, defaultSelected) {
|
| - return new Option(data, value, defaultSelected);
|
| + return new self.Option(data, value, defaultSelected);
|
| }
|
| static _create_3(data, value) {
|
| - return new Option(data, value);
|
| + return new self.Option(data, value);
|
| }
|
| static _create_4(data) {
|
| - return new Option(data);
|
| + return new self.Option(data);
|
| }
|
| static _create_5() {
|
| - return new Option();
|
| + return new self.Option();
|
| }
|
| created() {
|
| this[dartx.defaultSelected] = null;
|
| @@ -82813,10 +82813,10 @@ define([], function() {
|
| return html$.PageTransitionEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new PageTransitionEvent(type, eventInitDict);
|
| + return new self.PageTransitionEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new PageTransitionEvent(type);
|
| + return new self.PageTransitionEvent(type);
|
| }
|
| get [dartx.persisted]() {
|
| return this.persisted;
|
| @@ -82931,13 +82931,13 @@ define([], function() {
|
| return html$.PasswordCredential._create_3(id, password);
|
| }
|
| static _create_1(id, password, name, iconURL) {
|
| - return new PasswordCredential(id, password, name, iconURL);
|
| + return new self.PasswordCredential(id, password, name, iconURL);
|
| }
|
| static _create_2(id, password, name) {
|
| - return new PasswordCredential(id, password, name);
|
| + return new self.PasswordCredential(id, password, name);
|
| }
|
| static _create_3(id, password) {
|
| - return new PasswordCredential(id, password);
|
| + return new self.PasswordCredential(id, password);
|
| }
|
| get [dartx.formData]() {
|
| return this.formData;
|
| @@ -83487,7 +83487,7 @@ define([], function() {
|
| return html$.PeriodicSyncEvent._create_1(type, init_1);
|
| }
|
| static _create_1(type, init) {
|
| - return new PeriodicSyncEvent(type, init);
|
| + return new self.PeriodicSyncEvent(type, init);
|
| }
|
| get [dartx.registration]() {
|
| return this.registration;
|
| @@ -83850,10 +83850,10 @@ define([], function() {
|
| return html$.PointerEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new PointerEvent(type, eventInitDict);
|
| + return new self.PointerEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new PointerEvent(type);
|
| + return new self.PointerEvent(type);
|
| }
|
| get [dartx.height]() {
|
| return this.height;
|
| @@ -83918,10 +83918,10 @@ define([], function() {
|
| return html$.PopStateEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new PopStateEvent(type, eventInitDict);
|
| + return new self.PopStateEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new PopStateEvent(type);
|
| + return new self.PopStateEvent(type);
|
| }
|
| get [dartx.state]() {
|
| return html_common.convertNativeToDart_SerializedScriptValue(this[_get_state]);
|
| @@ -84238,10 +84238,10 @@ define([], function() {
|
| return html$.ProgressEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new ProgressEvent(type, eventInitDict);
|
| + return new self.ProgressEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new ProgressEvent(type);
|
| + return new self.ProgressEvent(type);
|
| }
|
| get [dartx.lengthComputable]() {
|
| return this.lengthComputable;
|
| @@ -84287,10 +84287,10 @@ define([], function() {
|
| return html$.PromiseRejectionEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new PromiseRejectionEvent(type, eventInitDict);
|
| + return new self.PromiseRejectionEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new PromiseRejectionEvent(type);
|
| + return new self.PromiseRejectionEvent(type);
|
| }
|
| get [dartx.promise]() {
|
| return this.promise;
|
| @@ -84331,10 +84331,10 @@ define([], function() {
|
| return html$.PushEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new PushEvent(type, eventInitDict);
|
| + return new self.PushEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new PushEvent(type);
|
| + return new self.PushEvent(type);
|
| }
|
| get [dartx.data]() {
|
| return this.data;
|
| @@ -84425,7 +84425,7 @@ define([], function() {
|
| return html$.PushMessageData._create_1(message);
|
| }
|
| static _create_1(message) {
|
| - return new PushMessageData(message);
|
| + return new self.PushMessageData(message);
|
| }
|
| [dartx.arrayBuffer](...args) {
|
| return this.arrayBuffer.apply(this, args);
|
| @@ -84822,10 +84822,10 @@ define([], function() {
|
| return html$.RelatedEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new RelatedEvent(type, eventInitDict);
|
| + return new self.RelatedEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new RelatedEvent(type);
|
| + return new self.RelatedEvent(type);
|
| }
|
| get [dartx.relatedTarget]() {
|
| return html$._convertNativeToDart_EventTarget(this[_get_relatedTarget]);
|
| @@ -85093,7 +85093,7 @@ define([], function() {
|
| return html$.RtcDtmfToneChangeEvent._create_1(type, eventInitDict_1);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new RTCDTMFToneChangeEvent(type, eventInitDict);
|
| + return new self.RTCDTMFToneChangeEvent(type, eventInitDict);
|
| }
|
| get [dartx.tone]() {
|
| return this.tone;
|
| @@ -85894,31 +85894,31 @@ define([], function() {
|
| return html$.ScrollState._create_9();
|
| }
|
| static _create_1(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase, isBeginning, isEnding) {
|
| - return new ScrollState(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase, isBeginning, isEnding);
|
| + return new self.ScrollState(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase, isBeginning, isEnding);
|
| }
|
| static _create_2(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase, isBeginning) {
|
| - return new ScrollState(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase, isBeginning);
|
| + return new self.ScrollState(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase, isBeginning);
|
| }
|
| static _create_3(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase) {
|
| - return new ScrollState(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase);
|
| + return new self.ScrollState(deltaX, deltaY, deltaGranularity, velocityX, velocityY, inInertialPhase);
|
| }
|
| static _create_4(deltaX, deltaY, deltaGranularity, velocityX, velocityY) {
|
| - return new ScrollState(deltaX, deltaY, deltaGranularity, velocityX, velocityY);
|
| + return new self.ScrollState(deltaX, deltaY, deltaGranularity, velocityX, velocityY);
|
| }
|
| static _create_5(deltaX, deltaY, deltaGranularity, velocityX) {
|
| - return new ScrollState(deltaX, deltaY, deltaGranularity, velocityX);
|
| + return new self.ScrollState(deltaX, deltaY, deltaGranularity, velocityX);
|
| }
|
| static _create_6(deltaX, deltaY, deltaGranularity) {
|
| - return new ScrollState(deltaX, deltaY, deltaGranularity);
|
| + return new self.ScrollState(deltaX, deltaY, deltaGranularity);
|
| }
|
| static _create_7(deltaX, deltaY) {
|
| - return new ScrollState(deltaX, deltaY);
|
| + return new self.ScrollState(deltaX, deltaY);
|
| }
|
| static _create_8(deltaX) {
|
| - return new ScrollState(deltaX);
|
| + return new self.ScrollState(deltaX);
|
| }
|
| static _create_9() {
|
| - return new ScrollState();
|
| + return new self.ScrollState();
|
| }
|
| get [dartx.deltaGranularity]() {
|
| return this.deltaGranularity;
|
| @@ -86011,10 +86011,10 @@ define([], function() {
|
| return html$.SecurityPolicyViolationEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new SecurityPolicyViolationEvent(type, eventInitDict);
|
| + return new self.SecurityPolicyViolationEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new SecurityPolicyViolationEvent(type);
|
| + return new self.SecurityPolicyViolationEvent(type);
|
| }
|
| get [dartx.blockedUri]() {
|
| return this.blockedURI;
|
| @@ -86552,10 +86552,10 @@ define([], function() {
|
| return html$.ServicePortConnectEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new ServicePortConnectEvent(type, eventInitDict);
|
| + return new self.ServicePortConnectEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new ServicePortConnectEvent(type);
|
| + return new self.ServicePortConnectEvent(type);
|
| }
|
| get [dartx.origin]() {
|
| return this.origin;
|
| @@ -86718,10 +86718,10 @@ define([], function() {
|
| return html$.ServiceWorkerMessageEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new ServiceWorkerMessageEvent(type, eventInitDict);
|
| + return new self.ServiceWorkerMessageEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new ServiceWorkerMessageEvent(type);
|
| + return new self.ServiceWorkerMessageEvent(type);
|
| }
|
| get [dartx.lastEventId]() {
|
| return this.lastEventId;
|
| @@ -87033,10 +87033,10 @@ define([], function() {
|
| return html$.SharedWorker._create_2(scriptURL);
|
| }
|
| static _create_1(scriptURL, name) {
|
| - return new SharedWorker(scriptURL, name);
|
| + return new self.SharedWorker(scriptURL, name);
|
| }
|
| static _create_2(scriptURL) {
|
| - return new SharedWorker(scriptURL);
|
| + return new self.SharedWorker(scriptURL);
|
| }
|
| get [dartx.port]() {
|
| return this.port;
|
| @@ -87392,7 +87392,7 @@ define([], function() {
|
| return html$.SpeechGrammar._create_1();
|
| }
|
| static _create_1() {
|
| - return new SpeechGrammar();
|
| + return new self.SpeechGrammar();
|
| }
|
| get [dartx.src]() {
|
| return this.src;
|
| @@ -87441,7 +87441,7 @@ define([], function() {
|
| return html$.SpeechGrammarList._create_1();
|
| }
|
| static _create_1() {
|
| - return new SpeechGrammarList();
|
| + return new self.SpeechGrammarList();
|
| }
|
| get [dartx.length]() {
|
| return this.length;
|
| @@ -87751,10 +87751,10 @@ define([], function() {
|
| return html$.SpeechRecognitionError._create_2(type);
|
| }
|
| static _create_1(type, initDict) {
|
| - return new SpeechRecognitionError(type, initDict);
|
| + return new self.SpeechRecognitionError(type, initDict);
|
| }
|
| static _create_2(type) {
|
| - return new SpeechRecognitionError(type);
|
| + return new self.SpeechRecognitionError(type);
|
| }
|
| get [dartx.error]() {
|
| return this.error;
|
| @@ -87798,10 +87798,10 @@ define([], function() {
|
| return html$.SpeechRecognitionEvent._create_2(type);
|
| }
|
| static _create_1(type, initDict) {
|
| - return new SpeechRecognitionEvent(type, initDict);
|
| + return new self.SpeechRecognitionEvent(type, initDict);
|
| }
|
| static _create_2(type) {
|
| - return new SpeechRecognitionEvent(type);
|
| + return new self.SpeechRecognitionEvent(type);
|
| }
|
| get [dartx.emma]() {
|
| return this.emma;
|
| @@ -87977,10 +87977,10 @@ define([], function() {
|
| return html$.SpeechSynthesisUtterance._create_2();
|
| }
|
| static _create_1(text) {
|
| - return new SpeechSynthesisUtterance(text);
|
| + return new self.SpeechSynthesisUtterance(text);
|
| }
|
| static _create_2() {
|
| - return new SpeechSynthesisUtterance();
|
| + return new self.SpeechSynthesisUtterance();
|
| }
|
| get [dartx.lang]() {
|
| return this.lang;
|
| @@ -88355,10 +88355,10 @@ define([], function() {
|
| return html$.StorageEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new StorageEvent(type, eventInitDict);
|
| + return new self.StorageEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new StorageEvent(type);
|
| + return new self.StorageEvent(type);
|
| }
|
| get [dartx.key]() {
|
| return this.key;
|
| @@ -88543,7 +88543,7 @@ define([], function() {
|
| return html$.SyncEvent._create_1(type, init_1);
|
| }
|
| static _create_1(type, init) {
|
| - return new SyncEvent(type, init);
|
| + return new self.SyncEvent(type, init);
|
| }
|
| get [dartx.registration]() {
|
| return this.registration;
|
| @@ -90171,10 +90171,10 @@ define([], function() {
|
| return html$.TrackDefault._create_2(type, language, label, kinds_1);
|
| }
|
| static _create_1(type, language, label, kinds, byteStreamTrackID) {
|
| - return new TrackDefault(type, language, label, kinds, byteStreamTrackID);
|
| + return new self.TrackDefault(type, language, label, kinds, byteStreamTrackID);
|
| }
|
| static _create_2(type, language, label, kinds) {
|
| - return new TrackDefault(type, language, label, kinds);
|
| + return new self.TrackDefault(type, language, label, kinds);
|
| }
|
| get [dartx.byteStreamTrackID]() {
|
| return this.byteStreamTrackID;
|
| @@ -90227,10 +90227,10 @@ define([], function() {
|
| return html$.TrackDefaultList._create_2();
|
| }
|
| static _create_1(trackDefaults) {
|
| - return new TrackDefaultList(trackDefaults);
|
| + return new self.TrackDefaultList(trackDefaults);
|
| }
|
| static _create_2() {
|
| - return new TrackDefaultList();
|
| + return new self.TrackDefaultList();
|
| }
|
| get [dartx.length]() {
|
| return this.length;
|
| @@ -90364,10 +90364,10 @@ define([], function() {
|
| return html$.TrackEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new TrackEvent(type, eventInitDict);
|
| + return new self.TrackEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new TrackEvent(type);
|
| + return new self.TrackEvent(type);
|
| }
|
| get [dartx.track]() {
|
| return this.track;
|
| @@ -90404,10 +90404,10 @@ define([], function() {
|
| return html$.TransitionEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new TransitionEvent(type, eventInitDict);
|
| + return new self.TransitionEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new TransitionEvent(type);
|
| + return new self.TransitionEvent(type);
|
| }
|
| get [dartx.elapsedTime]() {
|
| return this.elapsedTime;
|
| @@ -90978,10 +90978,10 @@ define([], function() {
|
| return html$.VRFieldOfView._create_2();
|
| }
|
| static _create_1(fov) {
|
| - return new VRFieldOfView(fov);
|
| + return new self.VRFieldOfView(fov);
|
| }
|
| static _create_2() {
|
| - return new VRFieldOfView();
|
| + return new self.VRFieldOfView();
|
| }
|
| get [dartx.downDegrees]() {
|
| return this.downDegrees;
|
| @@ -91374,7 +91374,7 @@ define([], function() {
|
| return html$.VttCue._create_1(startTime, endTime, text);
|
| }
|
| static _create_1(startTime, endTime, text) {
|
| - return new VTTCue(startTime, endTime, text);
|
| + return new self.VTTCue(startTime, endTime, text);
|
| }
|
| get [dartx.align]() {
|
| return this.align;
|
| @@ -91467,7 +91467,7 @@ define([], function() {
|
| return html$.VttRegion._create_1();
|
| }
|
| static _create_1() {
|
| - return new VTTRegion();
|
| + return new self.VTTRegion();
|
| }
|
| get [dartx.height]() {
|
| return this.height;
|
| @@ -91599,10 +91599,10 @@ define([], function() {
|
| return html$.WebSocket._create_2(url);
|
| }
|
| static _create_1(url, protocols) {
|
| - return new WebSocket(url, protocols);
|
| + return new self.WebSocket(url, protocols);
|
| }
|
| static _create_2(url) {
|
| - return new WebSocket(url);
|
| + return new self.WebSocket(url);
|
| }
|
| static get supported() {
|
| return typeof window.WebSocket != "undefined";
|
| @@ -91760,7 +91760,7 @@ define([], function() {
|
| if (view == null) {
|
| view = html$.window;
|
| }
|
| - return new WheelEvent(type, html_common.convertDartToNative_Dictionary(options));
|
| + return new self.WheelEvent(type, html_common.convertDartToNative_Dictionary(options));
|
| }
|
| static _(type, eventInitDict) {
|
| if (eventInitDict === void 0) eventInitDict = null;
|
| @@ -91771,10 +91771,10 @@ define([], function() {
|
| return html$.WheelEvent._create_2(type);
|
| }
|
| static _create_1(type, eventInitDict) {
|
| - return new WheelEvent(type, eventInitDict);
|
| + return new self.WheelEvent(type, eventInitDict);
|
| }
|
| static _create_2(type) {
|
| - return new WheelEvent(type);
|
| + return new self.WheelEvent(type);
|
| }
|
| get [_deltaX]() {
|
| return this.deltaX;
|
| @@ -93367,7 +93367,7 @@ define([], function() {
|
| return html$.Worker._create_1(scriptUrl);
|
| }
|
| static _create_1(scriptUrl) {
|
| - return new Worker(scriptUrl);
|
| + return new self.Worker(scriptUrl);
|
| }
|
| static get supported() {
|
| return typeof window.Worker != "undefined";
|
| @@ -93522,7 +93522,7 @@ define([], function() {
|
| return html$.XPathEvaluator._create_1();
|
| }
|
| static _create_1() {
|
| - return new XPathEvaluator();
|
| + return new self.XPathEvaluator();
|
| }
|
| [dartx.createExpression](...args) {
|
| return this.createExpression.apply(this, args);
|
| @@ -93682,7 +93682,7 @@ define([], function() {
|
| return html$.XmlSerializer._create_1();
|
| }
|
| static _create_1() {
|
| - return new XMLSerializer();
|
| + return new self.XMLSerializer();
|
| }
|
| [dartx.serializeToString](...args) {
|
| return this.serializeToString.apply(this, args);
|
| @@ -93716,7 +93716,7 @@ define([], function() {
|
| return html$.XsltProcessor._create_1();
|
| }
|
| static _create_1() {
|
| - return new XSLTProcessor();
|
| + return new self.XSLTProcessor();
|
| }
|
| static get supported() {
|
| return !!window.XSLTProcessor;
|
| @@ -94178,19 +94178,19 @@ define([], function() {
|
| return html$._DomRect._create_5();
|
| }
|
| static _create_1(x, y, width, height) {
|
| - return new DOMRect(x, y, width, height);
|
| + return new self.DOMRect(x, y, width, height);
|
| }
|
| static _create_2(x, y, width) {
|
| - return new DOMRect(x, y, width);
|
| + return new self.DOMRect(x, y, width);
|
| }
|
| static _create_3(x, y) {
|
| - return new DOMRect(x, y);
|
| + return new self.DOMRect(x, y);
|
| }
|
| static _create_4(x) {
|
| - return new DOMRect(x);
|
| + return new self.DOMRect(x);
|
| }
|
| static _create_5() {
|
| - return new DOMRect();
|
| + return new self.DOMRect();
|
| }
|
| get [dartx.height]() {
|
| return this.height;
|
| @@ -94255,7 +94255,7 @@ define([], function() {
|
| return html$._FileReaderSync._create_1();
|
| }
|
| static _create_1() {
|
| - return new FileReaderSync();
|
| + return new self.FileReaderSync();
|
| }
|
| };
|
| dart.setSignature(html$._FileReaderSync, {
|
| @@ -94586,10 +94586,10 @@ define([], function() {
|
| return html$._Request._create_2(input);
|
| }
|
| static _create_1(input, requestInitDict) {
|
| - return new Request(input, requestInitDict);
|
| + return new self.Request(input, requestInitDict);
|
| }
|
| static _create_2(input) {
|
| - return new Request(input);
|
| + return new self.Request(input);
|
| }
|
| get [dartx.context]() {
|
| return this.context;
|
| @@ -94651,13 +94651,13 @@ define([], function() {
|
| return html$._Response._create_3();
|
| }
|
| static _create_1(body, responseInitDict) {
|
| - return new Response(body, responseInitDict);
|
| + return new self.Response(body, responseInitDict);
|
| }
|
| static _create_2(body) {
|
| - return new Response(body);
|
| + return new self.Response(body);
|
| }
|
| static _create_3() {
|
| - return new Response();
|
| + return new self.Response();
|
| }
|
| };
|
| dart.setSignature(html$._Response, {
|
| @@ -94846,10 +94846,10 @@ define([], function() {
|
| return html$._WebKitCSSMatrix._create_2();
|
| }
|
| static _create_1(cssValue) {
|
| - return new WebKitCSSMatrix(cssValue);
|
| + return new self.WebKitCSSMatrix(cssValue);
|
| }
|
| static _create_2() {
|
| - return new WebKitCSSMatrix();
|
| + return new self.WebKitCSSMatrix();
|
| }
|
| };
|
| dart.setSignature(html$._WebKitCSSMatrix, {
|
| @@ -99370,7 +99370,7 @@ define([], function() {
|
| };
|
| dart.fn(html_common.convertNativeToDart_DateTime, dynamicToDateTime());
|
| html_common.convertDartToNative_DateTime = function(date) {
|
| - return new Date(date.millisecondsSinceEpoch);
|
| + return new self.Date(date.millisecondsSinceEpoch);
|
| };
|
| dart.fn(html_common.convertDartToNative_DateTime, DateTimeTodynamic());
|
| html_common.convertDartToNative_PrepareForStructuredClone = function(value) {
|
| @@ -99393,7 +99393,7 @@ define([], function() {
|
| return map[key] = value;
|
| }
|
| newJsList(length) {
|
| - return new Array(length);
|
| + return new self.Array(length);
|
| }
|
| cloneNotRequired(e) {
|
| return _native_typed_data.NativeByteBuffer.is(e) || _native_typed_data.NativeTypedData.is(e);
|
| @@ -99412,7 +99412,7 @@ define([], function() {
|
| super.new();
|
| }
|
| newJsList(length) {
|
| - return new Array(length);
|
| + return new self.Array(length);
|
| }
|
| newDartList(length) {
|
| return this.newJsList(length);
|
| @@ -107794,7 +107794,7 @@ define([], function() {
|
| return web_audio.OfflineAudioContext._create_1(numberOfChannels, numberOfFrames, sampleRate);
|
| }
|
| static _create_1(numberOfChannels, numberOfFrames, sampleRate) {
|
| - return new OfflineAudioContext(numberOfChannels, numberOfFrames, sampleRate);
|
| + return new self.OfflineAudioContext(numberOfChannels, numberOfFrames, sampleRate);
|
| }
|
| };
|
| dart.setSignature(web_audio.OfflineAudioContext, {
|
|
|