| Index: pkg/dev_compiler/lib/js/es6/dart_sdk.js
|
| diff --git a/pkg/dev_compiler/lib/js/es6/dart_sdk.js b/pkg/dev_compiler/lib/js/es6/dart_sdk.js
|
| index cd79fe3c937e35fa32958ef6da222ab357a7c84c..04625a83ee48be2339df9580c9b28dc185b666b2 100644
|
| --- a/pkg/dev_compiler/lib/js/es6/dart_sdk.js
|
| +++ b/pkg/dev_compiler/lib/js/es6/dart_sdk.js
|
| @@ -15607,113 +15607,113 @@ _native_typed_data.NativeByteData = class NativeByteData extends _native_typed_d
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_getFloat32](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_getFloat32](byteOffset, littleEndian) {
|
| - return this.getFloat32(byteOffset, littleEndian);
|
| + [_getFloat32](...args) {
|
| + return this.getFloat32.apply(this, args);
|
| }
|
| [dartx.getFloat64](byteOffset, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_getFloat64](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_getFloat64](byteOffset, littleEndian) {
|
| - return this.getFloat64(byteOffset, littleEndian);
|
| + [_getFloat64](...args) {
|
| + return this.getFloat64.apply(this, args);
|
| }
|
| [dartx.getInt16](byteOffset, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_getInt16](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_getInt16](byteOffset, littleEndian) {
|
| - return this.getInt16(byteOffset, littleEndian);
|
| + [_getInt16](...args) {
|
| + return this.getInt16.apply(this, args);
|
| }
|
| [dartx.getInt32](byteOffset, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_getInt32](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_getInt32](byteOffset, littleEndian) {
|
| - return this.getInt32(byteOffset, littleEndian);
|
| + [_getInt32](...args) {
|
| + return this.getInt32.apply(this, args);
|
| }
|
| [dartx.getInt64](byteOffset, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| dart.throw(new core.UnsupportedError('Int64 accessor not supported by dart2js.'));
|
| }
|
| - [dartx.getInt8](byteOffset) {
|
| - return this.getInt8(byteOffset);
|
| + [dartx.getInt8](...args) {
|
| + return this.getInt8.apply(this, args);
|
| }
|
| [dartx.getUint16](byteOffset, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_getUint16](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_getUint16](byteOffset, littleEndian) {
|
| - return this.getUint16(byteOffset, littleEndian);
|
| + [_getUint16](...args) {
|
| + return this.getUint16.apply(this, args);
|
| }
|
| [dartx.getUint32](byteOffset, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_getUint32](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_getUint32](byteOffset, littleEndian) {
|
| - return this.getUint32(byteOffset, littleEndian);
|
| + [_getUint32](...args) {
|
| + return this.getUint32.apply(this, args);
|
| }
|
| [dartx.getUint64](byteOffset, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| dart.throw(new core.UnsupportedError('Uint64 accessor not supported by dart2js.'));
|
| }
|
| - [dartx.getUint8](byteOffset) {
|
| - return this.getUint8(byteOffset);
|
| + [dartx.getUint8](...args) {
|
| + return this.getUint8.apply(this, args);
|
| }
|
| [dartx.setFloat32](byteOffset, value, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_setFloat32](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_setFloat32](byteOffset, value, littleEndian) {
|
| - return this.setFloat32(byteOffset, value, littleEndian);
|
| + [_setFloat32](...args) {
|
| + return this.setFloat32.apply(this, args);
|
| }
|
| [dartx.setFloat64](byteOffset, value, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_setFloat64](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_setFloat64](byteOffset, value, littleEndian) {
|
| - return this.setFloat64(byteOffset, value, littleEndian);
|
| + [_setFloat64](...args) {
|
| + return this.setFloat64.apply(this, args);
|
| }
|
| [dartx.setInt16](byteOffset, value, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_setInt16](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_setInt16](byteOffset, value, littleEndian) {
|
| - return this.setInt16(byteOffset, value, littleEndian);
|
| + [_setInt16](...args) {
|
| + return this.setInt16.apply(this, args);
|
| }
|
| [dartx.setInt32](byteOffset, value, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_setInt32](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_setInt32](byteOffset, value, littleEndian) {
|
| - return this.setInt32(byteOffset, value, littleEndian);
|
| + [_setInt32](...args) {
|
| + return this.setInt32.apply(this, args);
|
| }
|
| [dartx.setInt64](byteOffset, value, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| dart.throw(new core.UnsupportedError('Int64 accessor not supported by dart2js.'));
|
| }
|
| - [dartx.setInt8](byteOffset, value) {
|
| - return this.setInt8(byteOffset, value);
|
| + [dartx.setInt8](...args) {
|
| + return this.setInt8.apply(this, args);
|
| }
|
| [dartx.setUint16](byteOffset, value, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_setUint16](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_setUint16](byteOffset, value, littleEndian) {
|
| - return this.setUint16(byteOffset, value, littleEndian);
|
| + [_setUint16](...args) {
|
| + return this.setUint16.apply(this, args);
|
| }
|
| [dartx.setUint32](byteOffset, value, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| return this[_setUint32](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
|
| }
|
| - [_setUint32](byteOffset, value, littleEndian) {
|
| - return this.setUint32(byteOffset, value, littleEndian);
|
| + [_setUint32](...args) {
|
| + return this.setUint32.apply(this, args);
|
| }
|
| [dartx.setUint64](byteOffset, value, endian) {
|
| if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
|
| dart.throw(new core.UnsupportedError('Uint64 accessor not supported by dart2js.'));
|
| }
|
| - [dartx.setUint8](byteOffset, value) {
|
| - return this.setUint8(byteOffset, value);
|
| + [dartx.setUint8](...args) {
|
| + return this.setUint8.apply(this, args);
|
| }
|
| static _create1(arg) {
|
| return new DataView(new ArrayBuffer(arg));
|
| @@ -38347,21 +38347,21 @@ indexed_db.Cursor = class Cursor extends _interceptors.Interceptor {
|
| get [dartx.source]() {
|
| return this.source;
|
| }
|
| - [dartx.advance](count) {
|
| - return this.advance(count);
|
| + [dartx.advance](...args) {
|
| + return this.advance.apply(this, args);
|
| }
|
| - [dartx.continuePrimaryKey](key, primaryKey) {
|
| - return this.continuePrimaryKey(key, primaryKey);
|
| + [dartx.continuePrimaryKey](...args) {
|
| + return this.continuePrimaryKey.apply(this, args);
|
| }
|
| - [_delete]() {
|
| - return this.delete();
|
| + [_delete](...args) {
|
| + return this.delete.apply(this, args);
|
| }
|
| [_update](value) {
|
| let value_1 = html_common.convertDartToNative_SerializedScriptValue(value);
|
| return this[_update_1](value_1);
|
| }
|
| - [_update_1](value) {
|
| - return this.update(value);
|
| + [_update_1](...args) {
|
| + return this.update.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(indexed_db.Cursor, {
|
| @@ -38439,14 +38439,14 @@ html.EventTarget = class EventTarget extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [_addEventListener](type, listener, capture) {
|
| - return this.addEventListener(type, listener, capture);
|
| + [_addEventListener](...args) {
|
| + return this.addEventListener.apply(this, args);
|
| }
|
| - [dartx.dispatchEvent](event) {
|
| - return this.dispatchEvent(event);
|
| + [dartx.dispatchEvent](...args) {
|
| + return this.dispatchEvent.apply(this, args);
|
| }
|
| - [_removeEventListener](type, listener, capture) {
|
| - return this.removeEventListener(type, listener, capture);
|
| + [_removeEventListener](...args) {
|
| + return this.removeEventListener.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.EventTarget, '_created');
|
| @@ -38519,8 +38519,8 @@ indexed_db.Database = class Database extends html.EventTarget {
|
| }
|
| return this[_transaction](storeNames, mode);
|
| }
|
| - [_transaction](stores, mode) {
|
| - return this.transaction(stores, mode);
|
| + [_transaction](...args) {
|
| + return this.transaction.apply(this, args);
|
| }
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| @@ -38534,8 +38534,8 @@ indexed_db.Database = class Database extends html.EventTarget {
|
| get [dartx.version]() {
|
| return this.version;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| [_createObjectStore](name, options) {
|
| if (options === void 0) options = null;
|
| @@ -38545,14 +38545,14 @@ indexed_db.Database = class Database extends html.EventTarget {
|
| }
|
| return this[_createObjectStore_2](name);
|
| }
|
| - [_createObjectStore_1](name, options) {
|
| - return this.createObjectStore(name, options);
|
| + [_createObjectStore_1](...args) {
|
| + return this.createObjectStore.apply(this, args);
|
| }
|
| - [_createObjectStore_2](name) {
|
| - return this.createObjectStore(name);
|
| + [_createObjectStore_2](...args) {
|
| + return this.createObjectStore.apply(this, args);
|
| }
|
| - [dartx.deleteObjectStore](name) {
|
| - return this.deleteObjectStore(name);
|
| + [dartx.deleteObjectStore](...args) {
|
| + return this.deleteObjectStore.apply(this, args);
|
| }
|
| get [dartx.onAbort]() {
|
| return indexed_db.Database.abortEvent.forTarget(this);
|
| @@ -38691,17 +38691,17 @@ indexed_db.IdbFactory = class IdbFactory extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.cmp](first, second) {
|
| - return this.cmp(first, second);
|
| + [dartx.cmp](...args) {
|
| + return this.cmp.apply(this, args);
|
| }
|
| - [_deleteDatabase](name) {
|
| - return this.deleteDatabase(name);
|
| + [_deleteDatabase](...args) {
|
| + return this.deleteDatabase.apply(this, args);
|
| }
|
| - [_open](name, version) {
|
| - return this.open(name, version);
|
| + [_open](...args) {
|
| + return this.open.apply(this, args);
|
| }
|
| - [_webkitGetDatabaseNames]() {
|
| - return this.webkitGetDatabaseNames();
|
| + [_webkitGetDatabaseNames](...args) {
|
| + return this.webkitGetDatabaseNames.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(indexed_db.IdbFactory, {
|
| @@ -38844,26 +38844,26 @@ indexed_db.Index = class Index extends _interceptors.Interceptor {
|
| get [dartx.unique]() {
|
| return this.unique;
|
| }
|
| - [_count](key) {
|
| - return this.count(key);
|
| + [_count](...args) {
|
| + return this.count.apply(this, args);
|
| }
|
| - [_get](key) {
|
| - return this.get(key);
|
| + [_get](...args) {
|
| + return this.get.apply(this, args);
|
| }
|
| - [dartx.getAll](range, maxCount) {
|
| - return this.getAll(range, maxCount);
|
| + [dartx.getAll](...args) {
|
| + return this.getAll.apply(this, args);
|
| }
|
| - [dartx.getAllKeys](range, maxCount) {
|
| - return this.getAllKeys(range, maxCount);
|
| + [dartx.getAllKeys](...args) {
|
| + return this.getAllKeys.apply(this, args);
|
| }
|
| - [_getKey](key) {
|
| - return this.getKey(key);
|
| + [_getKey](...args) {
|
| + return this.getKey.apply(this, args);
|
| }
|
| - [_openCursor](range, direction) {
|
| - return this.openCursor(range, direction);
|
| + [_openCursor](...args) {
|
| + return this.openCursor.apply(this, args);
|
| }
|
| - [_openKeyCursor](range, direction) {
|
| - return this.openKeyCursor(range, direction);
|
| + [_openKeyCursor](...args) {
|
| + return this.openKeyCursor.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(indexed_db.Index, {
|
| @@ -39117,17 +39117,17 @@ indexed_db.ObjectStore = class ObjectStore extends _interceptors.Interceptor {
|
| let value_1 = html_common.convertDartToNative_SerializedScriptValue(value);
|
| return this[_add_2](value_1);
|
| }
|
| - [_add_1](value, key) {
|
| - return this.add(value, key);
|
| + [_add_1](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| - [_add_2](value) {
|
| - return this.add(value);
|
| + [_add_2](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| - [_clear]() {
|
| - return this.clear();
|
| + [_clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [_count](key) {
|
| - return this.count(key);
|
| + [_count](...args) {
|
| + return this.count.apply(this, args);
|
| }
|
| [_createIndex](name, keyPath, options) {
|
| if (options === void 0) options = null;
|
| @@ -39137,35 +39137,35 @@ indexed_db.ObjectStore = class ObjectStore extends _interceptors.Interceptor {
|
| }
|
| return this[_createIndex_2](name, keyPath);
|
| }
|
| - [_createIndex_1](name, keyPath, options) {
|
| - return this.createIndex(name, keyPath, options);
|
| + [_createIndex_1](...args) {
|
| + return this.createIndex.apply(this, args);
|
| }
|
| - [_createIndex_2](name, keyPath) {
|
| - return this.createIndex(name, keyPath);
|
| + [_createIndex_2](...args) {
|
| + return this.createIndex.apply(this, args);
|
| }
|
| - [_delete](key) {
|
| - return this.delete(key);
|
| + [_delete](...args) {
|
| + return this.delete.apply(this, args);
|
| }
|
| - [dartx.deleteIndex](name) {
|
| - return this.deleteIndex(name);
|
| + [dartx.deleteIndex](...args) {
|
| + return this.deleteIndex.apply(this, args);
|
| }
|
| - [_get](key) {
|
| - return this.get(key);
|
| + [_get](...args) {
|
| + return this.get.apply(this, args);
|
| }
|
| - [dartx.getAll](range, maxCount) {
|
| - return this.getAll(range, maxCount);
|
| + [dartx.getAll](...args) {
|
| + return this.getAll.apply(this, args);
|
| }
|
| - [dartx.getAllKeys](range, maxCount) {
|
| - return this.getAllKeys(range, maxCount);
|
| + [dartx.getAllKeys](...args) {
|
| + return this.getAllKeys.apply(this, args);
|
| }
|
| - [dartx.index](name) {
|
| - return this.index(name);
|
| + [dartx.index](...args) {
|
| + return this.index.apply(this, args);
|
| }
|
| - [_openCursor](range, direction) {
|
| - return this.openCursor(range, direction);
|
| + [_openCursor](...args) {
|
| + return this.openCursor.apply(this, args);
|
| }
|
| - [dartx.openKeyCursor](range, direction) {
|
| - return this.openKeyCursor(range, direction);
|
| + [dartx.openKeyCursor](...args) {
|
| + return this.openKeyCursor.apply(this, args);
|
| }
|
| [_put](value, key) {
|
| if (key === void 0) key = null;
|
| @@ -39177,11 +39177,11 @@ indexed_db.ObjectStore = class ObjectStore extends _interceptors.Interceptor {
|
| let value_1 = html_common.convertDartToNative_SerializedScriptValue(value);
|
| return this[_put_2](value_1);
|
| }
|
| - [_put_1](value, key) {
|
| - return this.put(value, key);
|
| + [_put_1](...args) {
|
| + return this.put.apply(this, args);
|
| }
|
| - [_put_2](value) {
|
| - return this.put(value);
|
| + [_put_2](...args) {
|
| + return this.put.apply(this, args);
|
| }
|
| static _cursorStreamFromResult(T) {
|
| return (request, autoAdvance) => {
|
| @@ -39396,11 +39396,11 @@ indexed_db.Transaction = class Transaction extends html.EventTarget {
|
| get [dartx.objectStoreNames]() {
|
| return this.objectStoreNames;
|
| }
|
| - [dartx.abort]() {
|
| - return this.abort();
|
| + [dartx.abort](...args) {
|
| + return this.abort.apply(this, args);
|
| }
|
| - [dartx.objectStore](name) {
|
| - return this.objectStore(name);
|
| + [dartx.objectStore](...args) {
|
| + return this.objectStore.apply(this, args);
|
| }
|
| get [dartx.onAbort]() {
|
| return indexed_db.Transaction.abortEvent.forTarget(this);
|
| @@ -39547,17 +39547,17 @@ html.Event = class Event extends _interceptors.Interceptor {
|
| get [dartx.type]() {
|
| return this.type;
|
| }
|
| - [_initEvent](type, bubbles, cancelable) {
|
| - return this.initEvent(type, bubbles, cancelable);
|
| + [_initEvent](...args) {
|
| + return this.initEvent.apply(this, args);
|
| }
|
| - [dartx.preventDefault]() {
|
| - return this.preventDefault();
|
| + [dartx.preventDefault](...args) {
|
| + return this.preventDefault.apply(this, args);
|
| }
|
| - [dartx.stopImmediatePropagation]() {
|
| - return this.stopImmediatePropagation();
|
| + [dartx.stopImmediatePropagation](...args) {
|
| + return this.stopImmediatePropagation.apply(this, args);
|
| }
|
| - [dartx.stopPropagation]() {
|
| - return this.stopPropagation();
|
| + [dartx.stopPropagation](...args) {
|
| + return this.stopPropagation.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Event, {
|
| @@ -39858,26 +39858,26 @@ html.Node = class Node extends html.EventTarget {
|
| set [dartx.text](value) {
|
| this.textContent = value;
|
| }
|
| - [dartx.append](node) {
|
| - return this.appendChild(node);
|
| + [dartx.append](...args) {
|
| + return this.appendChild.apply(this, args);
|
| }
|
| - [dartx.clone](deep) {
|
| - return this.cloneNode(deep);
|
| + [dartx.clone](...args) {
|
| + return this.cloneNode.apply(this, args);
|
| }
|
| - [dartx.contains](other) {
|
| - return this.contains(other);
|
| + [dartx.contains](...args) {
|
| + return this.contains.apply(this, args);
|
| }
|
| - [dartx.hasChildNodes]() {
|
| - return this.hasChildNodes();
|
| + [dartx.hasChildNodes](...args) {
|
| + return this.hasChildNodes.apply(this, args);
|
| }
|
| - [dartx.insertBefore](node, child) {
|
| - return this.insertBefore(node, child);
|
| + [dartx.insertBefore](...args) {
|
| + return this.insertBefore.apply(this, args);
|
| }
|
| - [_removeChild](child) {
|
| - return this.removeChild(child);
|
| + [_removeChild](...args) {
|
| + return this.removeChild.apply(this, args);
|
| }
|
| - [_replaceChild](node, child) {
|
| - return this.replaceChild(node, child);
|
| + [_replaceChild](...args) {
|
| + return this.replaceChild.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.Node, '_created');
|
| @@ -40357,8 +40357,8 @@ html.Element = class Element extends html.Node {
|
| let convertedTiming = core.Map.is(timing) ? html_common.convertDartToNative_Dictionary(timing) : timing;
|
| return convertedTiming == null ? this[_animate](convertedFrames) : this[_animate](convertedFrames, convertedTiming);
|
| }
|
| - [_animate](effect, timing) {
|
| - return this.animate(effect, timing);
|
| + [_animate](...args) {
|
| + return this.animate.apply(this, args);
|
| }
|
| [dartx.attributeChanged](name, oldValue, newValue) {}
|
| get [_xtag]() {
|
| @@ -40418,8 +40418,8 @@ html.Element = class Element extends html.Node {
|
| this[_insertAdjacentNode](where, html.Text.new(text));
|
| }
|
| }
|
| - [_insertAdjacentText](where, text) {
|
| - return this.insertAdjacentText(where, text);
|
| + [_insertAdjacentText](...args) {
|
| + return this.insertAdjacentText.apply(this, args);
|
| }
|
| [dartx.insertAdjacentHtml](where, html, opts) {
|
| let validator = opts && 'validator' in opts ? opts.validator : null;
|
| @@ -40430,8 +40430,8 @@ html.Element = class Element extends html.Node {
|
| this[_insertAdjacentNode](where, this[dartx.createFragment](html, {validator: validator, treeSanitizer: treeSanitizer}));
|
| }
|
| }
|
| - [_insertAdjacentHtml](where, text) {
|
| - return this.insertAdjacentHTML(where, text);
|
| + [_insertAdjacentHtml](...args) {
|
| + return this.insertAdjacentHTML.apply(this, args);
|
| }
|
| [dartx.insertAdjacentElement](where, element) {
|
| if (!!this.insertAdjacentElement) {
|
| @@ -40441,8 +40441,8 @@ html.Element = class Element extends html.Node {
|
| }
|
| return element;
|
| }
|
| - [_insertAdjacentElement](where, element) {
|
| - return this.insertAdjacentElement(where, element);
|
| + [_insertAdjacentElement](...args) {
|
| + return this.insertAdjacentElement.apply(this, args);
|
| }
|
| [_insertAdjacentNode](where, node) {
|
| switch (where[dartx.toLowerCase]()) {
|
| @@ -40756,14 +40756,14 @@ html.Element = class Element extends html.Node {
|
| set [dartx.dropzone](value) {
|
| this.webkitdropzone = value;
|
| }
|
| - [dartx.blur]() {
|
| - return this.blur();
|
| + [dartx.blur](...args) {
|
| + return this.blur.apply(this, args);
|
| }
|
| - [dartx.click]() {
|
| - return this.click();
|
| + [dartx.click](...args) {
|
| + return this.click.apply(this, args);
|
| }
|
| - [dartx.focus]() {
|
| - return this.focus();
|
| + [dartx.focus](...args) {
|
| + return this.focus.apply(this, args);
|
| }
|
| get [_attributes]() {
|
| return this.attributes;
|
| @@ -40828,50 +40828,50 @@ html.Element = class Element extends html.Node {
|
| get [dartx.tagName]() {
|
| return this.tagName;
|
| }
|
| - [dartx.closest](selectors) {
|
| - return this.closest(selectors);
|
| + [dartx.closest](...args) {
|
| + return this.closest.apply(this, args);
|
| }
|
| - [dartx.getAnimations]() {
|
| - return this.getAnimations();
|
| + [dartx.getAnimations](...args) {
|
| + return this.getAnimations.apply(this, args);
|
| }
|
| - [dartx.getAttribute](name) {
|
| - return this.getAttribute(name);
|
| + [dartx.getAttribute](...args) {
|
| + return this.getAttribute.apply(this, args);
|
| }
|
| - [dartx.getAttributeNS](namespaceURI, localName) {
|
| - return this.getAttributeNS(namespaceURI, localName);
|
| + [dartx.getAttributeNS](...args) {
|
| + return this.getAttributeNS.apply(this, args);
|
| }
|
| - [dartx.getBoundingClientRect]() {
|
| - return this.getBoundingClientRect();
|
| + [dartx.getBoundingClientRect](...args) {
|
| + return this.getBoundingClientRect.apply(this, args);
|
| }
|
| - [dartx.getClientRects]() {
|
| - return this.getClientRects();
|
| + [dartx.getClientRects](...args) {
|
| + return this.getClientRects.apply(this, args);
|
| }
|
| - [dartx.getDestinationInsertionPoints]() {
|
| - return this.getDestinationInsertionPoints();
|
| + [dartx.getDestinationInsertionPoints](...args) {
|
| + return this.getDestinationInsertionPoints.apply(this, args);
|
| }
|
| - [dartx.getElementsByClassName](classNames) {
|
| - return this.getElementsByClassName(classNames);
|
| + [dartx.getElementsByClassName](...args) {
|
| + return this.getElementsByClassName.apply(this, args);
|
| }
|
| - [_getElementsByTagName](localName) {
|
| - return this.getElementsByTagName(localName);
|
| + [_getElementsByTagName](...args) {
|
| + return this.getElementsByTagName.apply(this, args);
|
| }
|
| - [_hasAttribute](name) {
|
| - return this.hasAttribute(name);
|
| + [_hasAttribute](...args) {
|
| + return this.hasAttribute.apply(this, args);
|
| }
|
| - [_hasAttributeNS](namespaceURI, localName) {
|
| - return this.hasAttributeNS(namespaceURI, localName);
|
| + [_hasAttributeNS](...args) {
|
| + return this.hasAttributeNS.apply(this, args);
|
| }
|
| - [_removeAttribute](name) {
|
| - return this.removeAttribute(name);
|
| + [_removeAttribute](...args) {
|
| + return this.removeAttribute.apply(this, args);
|
| }
|
| - [_removeAttributeNS](namespaceURI, localName) {
|
| - return this.removeAttributeNS(namespaceURI, localName);
|
| + [_removeAttributeNS](...args) {
|
| + return this.removeAttributeNS.apply(this, args);
|
| }
|
| - [dartx.requestFullscreen]() {
|
| - return this.requestFullscreen();
|
| + [dartx.requestFullscreen](...args) {
|
| + return this.requestFullscreen.apply(this, args);
|
| }
|
| - [dartx.requestPointerLock]() {
|
| - return this.requestPointerLock();
|
| + [dartx.requestPointerLock](...args) {
|
| + return this.requestPointerLock.apply(this, args);
|
| }
|
| [dartx.scroll](options_OR_x, y) {
|
| if (options_OR_x === void 0) options_OR_x = null;
|
| @@ -40891,14 +40891,14 @@ html.Element = class Element extends html.Node {
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_scroll_1]() {
|
| - return this.scroll();
|
| + [_scroll_1](...args) {
|
| + return this.scroll.apply(this, args);
|
| }
|
| - [_scroll_2](options) {
|
| - return this.scroll(options);
|
| + [_scroll_2](...args) {
|
| + return this.scroll.apply(this, args);
|
| }
|
| - [_scroll_3](x, y) {
|
| - return this.scroll(x, y);
|
| + [_scroll_3](...args) {
|
| + return this.scroll.apply(this, args);
|
| }
|
| [dartx.scrollBy](options_OR_x, y) {
|
| if (options_OR_x === void 0) options_OR_x = null;
|
| @@ -40918,20 +40918,20 @@ html.Element = class Element extends html.Node {
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_scrollBy_1]() {
|
| - return this.scrollBy();
|
| + [_scrollBy_1](...args) {
|
| + return this.scrollBy.apply(this, args);
|
| }
|
| - [_scrollBy_2](options) {
|
| - return this.scrollBy(options);
|
| + [_scrollBy_2](...args) {
|
| + return this.scrollBy.apply(this, args);
|
| }
|
| - [_scrollBy_3](x, y) {
|
| - return this.scrollBy(x, y);
|
| + [_scrollBy_3](...args) {
|
| + return this.scrollBy.apply(this, args);
|
| }
|
| - [_scrollIntoView](alignWithTop) {
|
| - return this.scrollIntoView(alignWithTop);
|
| + [_scrollIntoView](...args) {
|
| + return this.scrollIntoView.apply(this, args);
|
| }
|
| - [_scrollIntoViewIfNeeded](centerIfNeeded) {
|
| - return this.scrollIntoViewIfNeeded(centerIfNeeded);
|
| + [_scrollIntoViewIfNeeded](...args) {
|
| + return this.scrollIntoViewIfNeeded.apply(this, args);
|
| }
|
| [dartx.scrollTo](options_OR_x, y) {
|
| if (options_OR_x === void 0) options_OR_x = null;
|
| @@ -40951,26 +40951,26 @@ html.Element = class Element extends html.Node {
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_scrollTo_1]() {
|
| - return this.scrollTo();
|
| + [_scrollTo_1](...args) {
|
| + return this.scrollTo.apply(this, args);
|
| }
|
| - [_scrollTo_2](options) {
|
| - return this.scrollTo(options);
|
| + [_scrollTo_2](...args) {
|
| + return this.scrollTo.apply(this, args);
|
| }
|
| - [_scrollTo_3](x, y) {
|
| - return this.scrollTo(x, y);
|
| + [_scrollTo_3](...args) {
|
| + return this.scrollTo.apply(this, args);
|
| }
|
| - [dartx.setAttribute](name, value) {
|
| - return this.setAttribute(name, value);
|
| + [dartx.setAttribute](...args) {
|
| + return this.setAttribute.apply(this, args);
|
| }
|
| - [dartx.setAttributeNS](namespaceURI, name, value) {
|
| - return this.setAttributeNS(namespaceURI, name, value);
|
| + [dartx.setAttributeNS](...args) {
|
| + return this.setAttributeNS.apply(this, args);
|
| }
|
| - [dartx.after](nodes) {
|
| - return this.after(nodes);
|
| + [dartx.after](...args) {
|
| + return this.after.apply(this, args);
|
| }
|
| - [dartx.before](nodes) {
|
| - return this.before(nodes);
|
| + [dartx.before](...args) {
|
| + return this.before.apply(this, args);
|
| }
|
| get [dartx.nextElementSibling]() {
|
| return this.nextElementSibling;
|
| @@ -40990,11 +40990,11 @@ html.Element = class Element extends html.Node {
|
| get [_lastElementChild]() {
|
| return this.lastElementChild;
|
| }
|
| - [dartx.querySelector](selectors) {
|
| - return this.querySelector(selectors);
|
| + [dartx.querySelector](...args) {
|
| + return this.querySelector.apply(this, args);
|
| }
|
| - [_querySelectorAll](selectors) {
|
| - return this.querySelectorAll(selectors);
|
| + [_querySelectorAll](...args) {
|
| + return this.querySelectorAll.apply(this, args);
|
| }
|
| get [dartx.onAbort]() {
|
| return html.Element.abortEvent.forElement(this);
|
| @@ -42050,20 +42050,20 @@ html.Animation = class Animation extends html.EventTarget {
|
| set [dartx.startTime](value) {
|
| this.startTime = value;
|
| }
|
| - [dartx.cancel]() {
|
| - return this.cancel();
|
| + [dartx.cancel](...args) {
|
| + return this.cancel.apply(this, args);
|
| }
|
| - [dartx.finish]() {
|
| - return this.finish();
|
| + [dartx.finish](...args) {
|
| + return this.finish.apply(this, args);
|
| }
|
| - [dartx.pause]() {
|
| - return this.pause();
|
| + [dartx.pause](...args) {
|
| + return this.pause.apply(this, args);
|
| }
|
| - [dartx.play]() {
|
| - return this.play();
|
| + [dartx.play](...args) {
|
| + return this.play.apply(this, args);
|
| }
|
| - [dartx.reverse]() {
|
| - return this.reverse();
|
| + [dartx.reverse](...args) {
|
| + return this.reverse.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Animation, {
|
| @@ -42314,11 +42314,11 @@ html.AnimationTimeline = class AnimationTimeline extends _interceptors.Intercept
|
| set [dartx.playbackRate](value) {
|
| this.playbackRate = value;
|
| }
|
| - [dartx.getAnimations]() {
|
| - return this.getAnimations();
|
| + [dartx.getAnimations](...args) {
|
| + return this.getAnimations.apply(this, args);
|
| }
|
| - [dartx.play](source) {
|
| - return this.play(source);
|
| + [dartx.play](...args) {
|
| + return this.play.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.AnimationTimeline, {
|
| @@ -42380,14 +42380,14 @@ html.ApplicationCache = class ApplicationCache extends html.EventTarget {
|
| get [dartx.status]() {
|
| return this.status;
|
| }
|
| - [dartx.abort]() {
|
| - return this.abort();
|
| + [dartx.abort](...args) {
|
| + return this.abort.apply(this, args);
|
| }
|
| - [dartx.swapCache]() {
|
| - return this.swapCache();
|
| + [dartx.swapCache](...args) {
|
| + return this.swapCache.apply(this, args);
|
| }
|
| - [dartx.update]() {
|
| - return this.update();
|
| + [dartx.update](...args) {
|
| + return this.update.apply(this, args);
|
| }
|
| get [dartx.onCached]() {
|
| return html.ApplicationCache.cachedEvent.forTarget(this);
|
| @@ -42934,35 +42934,35 @@ html.MediaElement = class MediaElement extends html.HtmlElement {
|
| get [dartx.videoDecodedByteCount]() {
|
| return this.webkitVideoDecodedByteCount;
|
| }
|
| - [dartx.addTextTrack](kind, label, language) {
|
| - return this.addTextTrack(kind, label, language);
|
| + [dartx.addTextTrack](...args) {
|
| + return this.addTextTrack.apply(this, args);
|
| }
|
| - [dartx.canPlayType](type, keySystem) {
|
| - return this.canPlayType(type, keySystem);
|
| + [dartx.canPlayType](...args) {
|
| + return this.canPlayType.apply(this, args);
|
| }
|
| - [dartx.load]() {
|
| - return this.load();
|
| + [dartx.load](...args) {
|
| + return this.load.apply(this, args);
|
| }
|
| - [dartx.pause]() {
|
| - return this.pause();
|
| + [dartx.pause](...args) {
|
| + return this.pause.apply(this, args);
|
| }
|
| - [dartx.play]() {
|
| - return this.play();
|
| + [dartx.play](...args) {
|
| + return this.play.apply(this, args);
|
| }
|
| - [dartx.setMediaKeys](mediaKeys) {
|
| - return this.setMediaKeys(mediaKeys);
|
| + [dartx.setMediaKeys](...args) {
|
| + return this.setMediaKeys.apply(this, args);
|
| }
|
| - [dartx.setSinkId](sinkId) {
|
| - return this.setSinkId(sinkId);
|
| + [dartx.setSinkId](...args) {
|
| + return this.setSinkId.apply(this, args);
|
| }
|
| - [dartx.addKey](keySystem, key, initData, sessionId) {
|
| - return this.webkitAddKey(keySystem, key, initData, sessionId);
|
| + [dartx.addKey](...args) {
|
| + return this.webkitAddKey.apply(this, args);
|
| }
|
| - [dartx.cancelKeyRequest](keySystem, sessionId) {
|
| - return this.webkitCancelKeyRequest(keySystem, sessionId);
|
| + [dartx.cancelKeyRequest](...args) {
|
| + return this.webkitCancelKeyRequest.apply(this, args);
|
| }
|
| - [dartx.generateKeyRequest](keySystem, initData) {
|
| - return this.webkitGenerateKeyRequest(keySystem, initData);
|
| + [dartx.generateKeyRequest](...args) {
|
| + return this.webkitGenerateKeyRequest.apply(this, args);
|
| }
|
| get [dartx.onKeyAdded]() {
|
| return html.MediaElement.keyAddedEvent.forElement(this);
|
| @@ -43166,11 +43166,11 @@ html.AudioTrackList = class AudioTrackList extends html.EventTarget {
|
| get [dartx.length]() {
|
| return this.length;
|
| }
|
| - [__getter__](index) {
|
| - return this.__getter__(index);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [dartx.getTrackById](id) {
|
| - return this.getTrackById(id);
|
| + [dartx.getTrackById](...args) {
|
| + return this.getTrackById.apply(this, args);
|
| }
|
| get [dartx.onChange]() {
|
| return html.AudioTrackList.changeEvent.forTarget(this);
|
| @@ -43370,8 +43370,8 @@ html.BeforeInstallPromptEvent = class BeforeInstallPromptEvent extends html.Even
|
| get [dartx.userChoice]() {
|
| return this.userChoice;
|
| }
|
| - [dartx.prompt]() {
|
| - return this.prompt();
|
| + [dartx.prompt](...args) {
|
| + return this.prompt.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.BeforeInstallPromptEvent, {
|
| @@ -43426,11 +43426,11 @@ html.Blob = class Blob extends _interceptors.Interceptor {
|
| get [dartx.type]() {
|
| return this.type;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| - [dartx.slice](start, end, contentType) {
|
| - return this.slice(start, end, contentType);
|
| + [dartx.slice](...args) {
|
| + return this.slice.apply(this, args);
|
| }
|
| static new(blobParts, type, endings) {
|
| if (type === void 0) type = null;
|
| @@ -43490,8 +43490,8 @@ html.Bluetooth = class Bluetooth extends _interceptors.Interceptor {
|
| let options_1 = html_common.convertDartToNative_Dictionary(options);
|
| return this[_requestDevice_1](options_1);
|
| }
|
| - [_requestDevice_1](options) {
|
| - return this.requestDevice(options);
|
| + [_requestDevice_1](...args) {
|
| + return this.requestDevice.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Bluetooth, {
|
| @@ -43541,8 +43541,8 @@ html.BluetoothDevice = class BluetoothDevice extends _interceptors.Interceptor {
|
| get [dartx.vendorIDSource]() {
|
| return this.vendorIDSource;
|
| }
|
| - [dartx.connectGatt]() {
|
| - return this.connectGATT();
|
| + [dartx.connectGatt](...args) {
|
| + return this.connectGATT.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.BluetoothDevice, {
|
| @@ -43572,11 +43572,11 @@ html.BluetoothGattCharacteristic = class BluetoothGattCharacteristic extends _in
|
| get [dartx.uuid]() {
|
| return this.uuid;
|
| }
|
| - [dartx.readValue]() {
|
| - return this.readValue();
|
| + [dartx.readValue](...args) {
|
| + return this.readValue.apply(this, args);
|
| }
|
| - [dartx.writeValue](value) {
|
| - return this.writeValue(value);
|
| + [dartx.writeValue](...args) {
|
| + return this.writeValue.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.BluetoothGattCharacteristic, {
|
| @@ -43599,8 +43599,8 @@ html.BluetoothGattRemoteServer = class BluetoothGattRemoteServer extends _interc
|
| get [dartx.connected]() {
|
| return this.connected;
|
| }
|
| - [dartx.getPrimaryService](service) {
|
| - return this.getPrimaryService(service);
|
| + [dartx.getPrimaryService](...args) {
|
| + return this.getPrimaryService.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.BluetoothGattRemoteServer, {
|
| @@ -43624,8 +43624,8 @@ html.BluetoothGattService = class BluetoothGattService extends _interceptors.Int
|
| get [dartx.uuid]() {
|
| return this.uuid;
|
| }
|
| - [dartx.getCharacteristic](characteristic) {
|
| - return this.getCharacteristic(characteristic);
|
| + [dartx.getCharacteristic](...args) {
|
| + return this.getCharacteristic.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.BluetoothGattService, {
|
| @@ -43667,17 +43667,17 @@ html.Body = class Body extends _interceptors.Interceptor {
|
| get [dartx.bodyUsed]() {
|
| return this.bodyUsed;
|
| }
|
| - [dartx.arrayBuffer]() {
|
| - return this.arrayBuffer();
|
| + [dartx.arrayBuffer](...args) {
|
| + return this.arrayBuffer.apply(this, args);
|
| }
|
| - [dartx.blob]() {
|
| - return this.blob();
|
| + [dartx.blob](...args) {
|
| + return this.blob.apply(this, args);
|
| }
|
| - [dartx.json]() {
|
| - return this.json();
|
| + [dartx.json](...args) {
|
| + return this.json.apply(this, args);
|
| }
|
| - [dartx.text]() {
|
| - return this.text();
|
| + [dartx.text](...args) {
|
| + return this.text.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Body, {
|
| @@ -43951,14 +43951,14 @@ html.ButtonElement = class ButtonElement extends html.HtmlElement {
|
| get [dartx.willValidate]() {
|
| return this.willValidate;
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| - [dartx.setCustomValidity](error) {
|
| - return this.setCustomValidity(error);
|
| + [dartx.setCustomValidity](...args) {
|
| + return this.setCustomValidity.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.ButtonElement, 'created');
|
| @@ -44019,26 +44019,26 @@ html.CharacterData = class CharacterData extends html.Node {
|
| get [dartx.length]() {
|
| return this.length;
|
| }
|
| - [dartx.appendData](data) {
|
| - return this.appendData(data);
|
| + [dartx.appendData](...args) {
|
| + return this.appendData.apply(this, args);
|
| }
|
| - [dartx.deleteData](offset, count) {
|
| - return this.deleteData(offset, count);
|
| + [dartx.deleteData](...args) {
|
| + return this.deleteData.apply(this, args);
|
| }
|
| - [dartx.insertData](offset, data) {
|
| - return this.insertData(offset, data);
|
| + [dartx.insertData](...args) {
|
| + return this.insertData.apply(this, args);
|
| }
|
| - [dartx.replaceData](offset, count, data) {
|
| - return this.replaceData(offset, count, data);
|
| + [dartx.replaceData](...args) {
|
| + return this.replaceData.apply(this, args);
|
| }
|
| - [dartx.substringData](offset, count) {
|
| - return this.substringData(offset, count);
|
| + [dartx.substringData](...args) {
|
| + return this.substringData.apply(this, args);
|
| }
|
| - [dartx.after](nodes) {
|
| - return this.after(nodes);
|
| + [dartx.after](...args) {
|
| + return this.after.apply(this, args);
|
| }
|
| - [dartx.before](nodes) {
|
| - return this.before(nodes);
|
| + [dartx.before](...args) {
|
| + return this.before.apply(this, args);
|
| }
|
| get [dartx.nextElementSibling]() {
|
| return this.nextElementSibling;
|
| @@ -44082,11 +44082,11 @@ html.Text = class Text extends html.CharacterData {
|
| get [dartx.wholeText]() {
|
| return this.wholeText;
|
| }
|
| - [dartx.getDestinationInsertionPoints]() {
|
| - return this.getDestinationInsertionPoints();
|
| + [dartx.getDestinationInsertionPoints](...args) {
|
| + return this.getDestinationInsertionPoints.apply(this, args);
|
| }
|
| - [dartx.splitText](offset) {
|
| - return this.splitText(offset);
|
| + [dartx.splitText](...args) {
|
| + return this.splitText.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Text, {
|
| @@ -44123,14 +44123,14 @@ html.CacheStorage = class CacheStorage extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.delete](cacheName) {
|
| - return this.delete(cacheName);
|
| + [dartx.delete](...args) {
|
| + return this.delete.apply(this, args);
|
| }
|
| - [dartx.has](cacheName) {
|
| - return this.has(cacheName);
|
| + [dartx.has](...args) {
|
| + return this.has.apply(this, args);
|
| }
|
| - [dartx.keys]() {
|
| - return this.keys();
|
| + [dartx.keys](...args) {
|
| + return this.keys.apply(this, args);
|
| }
|
| [dartx.match](request, options) {
|
| if (options === void 0) options = null;
|
| @@ -44140,14 +44140,14 @@ html.CacheStorage = class CacheStorage extends _interceptors.Interceptor {
|
| }
|
| return this[_match_2](request);
|
| }
|
| - [_match_1](request, options) {
|
| - return this.match(request, options);
|
| + [_match_1](...args) {
|
| + return this.match.apply(this, args);
|
| }
|
| - [_match_2](request) {
|
| - return this.match(request);
|
| + [_match_2](...args) {
|
| + return this.match.apply(this, args);
|
| }
|
| - [dartx.open](cacheName) {
|
| - return this.open(cacheName);
|
| + [dartx.open](...args) {
|
| + return this.open.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CacheStorage, {
|
| @@ -44213,14 +44213,14 @@ html.CanvasElement = class CanvasElement extends html.HtmlElement {
|
| }
|
| return this[_getContext_2](contextId);
|
| }
|
| - [_getContext_1](contextId, attributes) {
|
| - return this.getContext(contextId, attributes);
|
| + [_getContext_1](...args) {
|
| + return this.getContext.apply(this, args);
|
| }
|
| - [_getContext_2](contextId) {
|
| - return this.getContext(contextId);
|
| + [_getContext_2](...args) {
|
| + return this.getContext.apply(this, args);
|
| }
|
| - [_toDataUrl](type, arguments_OR_quality) {
|
| - return this.toDataURL(type, arguments_OR_quality);
|
| + [_toDataUrl](...args) {
|
| + return this.toDataURL.apply(this, args);
|
| }
|
| get [dartx.onWebGlContextLost]() {
|
| return html.CanvasElement.webGlContextLostEvent.forElement(this);
|
| @@ -44297,8 +44297,8 @@ html.CanvasGradient = class CanvasGradient extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.addColorStop](offset, color) {
|
| - return this.addColorStop(offset, color);
|
| + [dartx.addColorStop](...args) {
|
| + return this.addColorStop.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CanvasGradient, {
|
| @@ -44313,8 +44313,8 @@ html.CanvasPattern = class CanvasPattern extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.setTransform](transform) {
|
| - return this.setTransform(transform);
|
| + [dartx.setTransform](...args) {
|
| + return this.setTransform.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CanvasPattern, {
|
| @@ -44543,23 +44543,23 @@ html.CanvasRenderingContext2D = class CanvasRenderingContext2D extends _intercep
|
| this[_addHitRegion_2]();
|
| return;
|
| }
|
| - [_addHitRegion_1](options) {
|
| - return this.addHitRegion(options);
|
| + [_addHitRegion_1](...args) {
|
| + return this.addHitRegion.apply(this, args);
|
| }
|
| - [_addHitRegion_2]() {
|
| - return this.addHitRegion();
|
| + [_addHitRegion_2](...args) {
|
| + return this.addHitRegion.apply(this, args);
|
| }
|
| - [dartx.beginPath]() {
|
| - return this.beginPath();
|
| + [dartx.beginPath](...args) {
|
| + return this.beginPath.apply(this, args);
|
| }
|
| - [dartx.clearHitRegions]() {
|
| - return this.clearHitRegions();
|
| + [dartx.clearHitRegions](...args) {
|
| + return this.clearHitRegions.apply(this, args);
|
| }
|
| - [dartx.clearRect](x, y, width, height) {
|
| - return this.clearRect(x, y, width, height);
|
| + [dartx.clearRect](...args) {
|
| + return this.clearRect.apply(this, args);
|
| }
|
| - [dartx.clip](path_OR_winding, winding) {
|
| - return this.clip(path_OR_winding, winding);
|
| + [dartx.clip](...args) {
|
| + return this.clip.apply(this, args);
|
| }
|
| [dartx.createImageData](imagedata_OR_sw, sh) {
|
| if (sh === void 0) sh = null;
|
| @@ -44572,53 +44572,53 @@ html.CanvasRenderingContext2D = class CanvasRenderingContext2D extends _intercep
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_createImageData_1](imagedata) {
|
| - return this.createImageData(imagedata);
|
| + [_createImageData_1](...args) {
|
| + return this.createImageData.apply(this, args);
|
| }
|
| - [_createImageData_2](sw, sh) {
|
| - return this.createImageData(sw, sh);
|
| + [_createImageData_2](...args) {
|
| + return this.createImageData.apply(this, args);
|
| }
|
| - [dartx.createLinearGradient](x0, y0, x1, y1) {
|
| - return this.createLinearGradient(x0, y0, x1, y1);
|
| + [dartx.createLinearGradient](...args) {
|
| + return this.createLinearGradient.apply(this, args);
|
| }
|
| - [dartx.createPattern](image, repetitionType) {
|
| - return this.createPattern(image, repetitionType);
|
| + [dartx.createPattern](...args) {
|
| + return this.createPattern.apply(this, args);
|
| }
|
| - [dartx.createRadialGradient](x0, y0, r0, x1, y1, r1) {
|
| - return this.createRadialGradient(x0, y0, r0, x1, y1, r1);
|
| + [dartx.createRadialGradient](...args) {
|
| + return this.createRadialGradient.apply(this, args);
|
| }
|
| - [dartx.drawFocusIfNeeded](element_OR_path, element) {
|
| - return this.drawFocusIfNeeded(element_OR_path, element);
|
| + [dartx.drawFocusIfNeeded](...args) {
|
| + return this.drawFocusIfNeeded.apply(this, args);
|
| }
|
| - [dartx.fillRect](x, y, width, height) {
|
| - return this.fillRect(x, y, width, height);
|
| + [dartx.fillRect](...args) {
|
| + return this.fillRect.apply(this, args);
|
| }
|
| [dartx.getContextAttributes]() {
|
| return html_common.convertNativeToDart_Dictionary(this[_getContextAttributes_1]());
|
| }
|
| - [_getContextAttributes_1]() {
|
| - return this.getContextAttributes();
|
| + [_getContextAttributes_1](...args) {
|
| + return this.getContextAttributes.apply(this, args);
|
| }
|
| [dartx.getImageData](sx, sy, sw, sh) {
|
| return html_common.convertNativeToDart_ImageData(this[_getImageData_1](sx, sy, sw, sh));
|
| }
|
| - [_getImageData_1](sx, sy, sw, sh) {
|
| - return this.getImageData(sx, sy, sw, sh);
|
| + [_getImageData_1](...args) {
|
| + return this.getImageData.apply(this, args);
|
| }
|
| - [_getLineDash]() {
|
| - return this.getLineDash();
|
| + [_getLineDash](...args) {
|
| + return this.getLineDash.apply(this, args);
|
| }
|
| - [dartx.isContextLost]() {
|
| - return this.isContextLost();
|
| + [dartx.isContextLost](...args) {
|
| + return this.isContextLost.apply(this, args);
|
| }
|
| - [dartx.isPointInPath](path_OR_x, x_OR_y, winding_OR_y, winding) {
|
| - return this.isPointInPath(path_OR_x, x_OR_y, winding_OR_y, winding);
|
| + [dartx.isPointInPath](...args) {
|
| + return this.isPointInPath.apply(this, args);
|
| }
|
| - [dartx.isPointInStroke](path_OR_x, x_OR_y, y) {
|
| - return this.isPointInStroke(path_OR_x, x_OR_y, y);
|
| + [dartx.isPointInStroke](...args) {
|
| + return this.isPointInStroke.apply(this, args);
|
| }
|
| - [dartx.measureText](text) {
|
| - return this.measureText(text);
|
| + [dartx.measureText](...args) {
|
| + return this.measureText.apply(this, args);
|
| }
|
| [dartx.putImageData](imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight) {
|
| if (dirtyX === void 0) dirtyX = null;
|
| @@ -44637,77 +44637,77 @@ html.CanvasRenderingContext2D = class CanvasRenderingContext2D extends _intercep
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_putImageData_1](imagedata, dx, dy) {
|
| - return this.putImageData(imagedata, dx, dy);
|
| + [_putImageData_1](...args) {
|
| + return this.putImageData.apply(this, args);
|
| }
|
| - [_putImageData_2](imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight) {
|
| - return this.putImageData(imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight);
|
| + [_putImageData_2](...args) {
|
| + return this.putImageData.apply(this, args);
|
| }
|
| - [dartx.removeHitRegion](id) {
|
| - return this.removeHitRegion(id);
|
| + [dartx.removeHitRegion](...args) {
|
| + return this.removeHitRegion.apply(this, args);
|
| }
|
| - [dartx.resetTransform]() {
|
| - return this.resetTransform();
|
| + [dartx.resetTransform](...args) {
|
| + return this.resetTransform.apply(this, args);
|
| }
|
| - [dartx.restore]() {
|
| - return this.restore();
|
| + [dartx.restore](...args) {
|
| + return this.restore.apply(this, args);
|
| }
|
| - [dartx.rotate](angle) {
|
| - return this.rotate(angle);
|
| + [dartx.rotate](...args) {
|
| + return this.rotate.apply(this, args);
|
| }
|
| - [dartx.save]() {
|
| - return this.save();
|
| + [dartx.save](...args) {
|
| + return this.save.apply(this, args);
|
| }
|
| - [dartx.scale](x, y) {
|
| - return this.scale(x, y);
|
| + [dartx.scale](...args) {
|
| + return this.scale.apply(this, args);
|
| }
|
| - [dartx.scrollPathIntoView](path) {
|
| - return this.scrollPathIntoView(path);
|
| + [dartx.scrollPathIntoView](...args) {
|
| + return this.scrollPathIntoView.apply(this, args);
|
| }
|
| - [dartx.setTransform](a, b, c, d, e, f) {
|
| - return this.setTransform(a, b, c, d, e, f);
|
| + [dartx.setTransform](...args) {
|
| + return this.setTransform.apply(this, args);
|
| }
|
| - [dartx.stroke](path) {
|
| - return this.stroke(path);
|
| + [dartx.stroke](...args) {
|
| + return this.stroke.apply(this, args);
|
| }
|
| - [dartx.strokeRect](x, y, width, height) {
|
| - return this.strokeRect(x, y, width, height);
|
| + [dartx.strokeRect](...args) {
|
| + return this.strokeRect.apply(this, args);
|
| }
|
| - [dartx.strokeText](text, x, y, maxWidth) {
|
| - return this.strokeText(text, x, y, maxWidth);
|
| + [dartx.strokeText](...args) {
|
| + return this.strokeText.apply(this, args);
|
| }
|
| - [dartx.transform](a, b, c, d, e, f) {
|
| - return this.transform(a, b, c, d, e, f);
|
| + [dartx.transform](...args) {
|
| + return this.transform.apply(this, args);
|
| }
|
| - [dartx.translate](x, y) {
|
| - return this.translate(x, y);
|
| + [dartx.translate](...args) {
|
| + return this.translate.apply(this, args);
|
| }
|
| - [_arc](x, y, radius, startAngle, endAngle, anticlockwise) {
|
| - return this.arc(x, y, radius, startAngle, endAngle, anticlockwise);
|
| + [_arc](...args) {
|
| + return this.arc.apply(this, args);
|
| }
|
| - [dartx.arcTo](x1, y1, x2, y2, radius) {
|
| - return this.arcTo(x1, y1, x2, y2, radius);
|
| + [dartx.arcTo](...args) {
|
| + return this.arcTo.apply(this, args);
|
| }
|
| - [dartx.bezierCurveTo](cp1x, cp1y, cp2x, cp2y, x, y) {
|
| - return this.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y);
|
| + [dartx.bezierCurveTo](...args) {
|
| + return this.bezierCurveTo.apply(this, args);
|
| }
|
| - [dartx.closePath]() {
|
| - return this.closePath();
|
| + [dartx.closePath](...args) {
|
| + return this.closePath.apply(this, args);
|
| }
|
| - [dartx.ellipse](x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise) {
|
| - return this.ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise);
|
| + [dartx.ellipse](...args) {
|
| + return this.ellipse.apply(this, args);
|
| }
|
| - [dartx.lineTo](x, y) {
|
| - return this.lineTo(x, y);
|
| + [dartx.lineTo](...args) {
|
| + return this.lineTo.apply(this, args);
|
| }
|
| - [dartx.moveTo](x, y) {
|
| - return this.moveTo(x, y);
|
| + [dartx.moveTo](...args) {
|
| + return this.moveTo.apply(this, args);
|
| }
|
| - [dartx.quadraticCurveTo](cpx, cpy, x, y) {
|
| - return this.quadraticCurveTo(cpx, cpy, x, y);
|
| + [dartx.quadraticCurveTo](...args) {
|
| + return this.quadraticCurveTo.apply(this, args);
|
| }
|
| - [dartx.rect](x, y, width, height) {
|
| - return this.rect(x, y, width, height);
|
| + [dartx.rect](...args) {
|
| + return this.rect.apply(this, args);
|
| }
|
| [dartx.createImageDataFromImageData](imagedata) {
|
| return this.createImageData(imagedata);
|
| @@ -44743,14 +44743,14 @@ html.CanvasRenderingContext2D = class CanvasRenderingContext2D extends _intercep
|
| this[dartx.drawImageScaledFromSource](source, sourceRect[dartx.left], sourceRect[dartx.top], sourceRect[dartx.width], sourceRect[dartx.height], destRect[dartx.left], destRect[dartx.top], destRect[dartx.width], destRect[dartx.height]);
|
| }
|
| }
|
| - [dartx.drawImage](source, destX, destY) {
|
| - return this.drawImage(source, destX, destY);
|
| + [dartx.drawImage](...args) {
|
| + return this.drawImage.apply(this, args);
|
| }
|
| - [dartx.drawImageScaled](source, destX, destY, destWidth, destHeight) {
|
| - return this.drawImage(source, destX, destY, destWidth, destHeight);
|
| + [dartx.drawImageScaled](...args) {
|
| + return this.drawImage.apply(this, args);
|
| }
|
| - [dartx.drawImageScaledFromSource](source, sourceX, sourceY, sourceWidth, sourceHeight, destX, destY, destWidth, destHeight) {
|
| - return this.drawImage(source, sourceX, sourceY, sourceWidth, sourceHeight, destX, destY, destWidth, destHeight);
|
| + [dartx.drawImageScaledFromSource](...args) {
|
| + return this.drawImage.apply(this, args);
|
| }
|
| get [dartx.lineDashOffset]() {
|
| return this.lineDashOffset || this.webkitLineDashOffset;
|
| @@ -44997,11 +44997,11 @@ html.Client = class Client extends _interceptors.Interceptor {
|
| this[_postMessage_2](message_1);
|
| return;
|
| }
|
| - [_postMessage_1](message, transfer) {
|
| - return this.postMessage(message, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message) {
|
| - return this.postMessage(message);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Client, {
|
| @@ -45029,8 +45029,8 @@ html.Clients = class Clients extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.claim]() {
|
| - return this.claim();
|
| + [dartx.claim](...args) {
|
| + return this.claim.apply(this, args);
|
| }
|
| [dartx.matchAll](options) {
|
| if (options === void 0) options = null;
|
| @@ -45040,14 +45040,14 @@ html.Clients = class Clients extends _interceptors.Interceptor {
|
| }
|
| return this[_matchAll_2]();
|
| }
|
| - [_matchAll_1](options) {
|
| - return this.matchAll(options);
|
| + [_matchAll_1](...args) {
|
| + return this.matchAll.apply(this, args);
|
| }
|
| - [_matchAll_2]() {
|
| - return this.matchAll();
|
| + [_matchAll_2](...args) {
|
| + return this.matchAll.apply(this, args);
|
| }
|
| - [dartx.openWindow](url) {
|
| - return this.openWindow(url);
|
| + [dartx.openWindow](...args) {
|
| + return this.openWindow.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Clients, {
|
| @@ -45205,8 +45205,8 @@ html.UIEvent = class UIEvent extends html.Event {
|
| get [_which]() {
|
| return this.which;
|
| }
|
| - [_initUIEvent](type, bubbles, cancelable, view, detail) {
|
| - return this.initUIEvent(type, bubbles, cancelable, view, detail);
|
| + [_initUIEvent](...args) {
|
| + return this.initUIEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.UIEvent, {
|
| @@ -45269,8 +45269,8 @@ html.CompositionEvent = class CompositionEvent extends html.UIEvent {
|
| get [dartx.data]() {
|
| return this.data;
|
| }
|
| - [_initCompositionEvent](type, bubbles, cancelable, view, data) {
|
| - return this.initCompositionEvent(type, bubbles, cancelable, view, data);
|
| + [_initCompositionEvent](...args) {
|
| + return this.initCompositionEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CompositionEvent, {
|
| @@ -45329,11 +45329,11 @@ html.CompositorProxy = class CompositorProxy extends _interceptors.Interceptor {
|
| set [dartx.transform](value) {
|
| this.transform = value;
|
| }
|
| - [dartx.disconnect]() {
|
| - return this.disconnect();
|
| + [dartx.disconnect](...args) {
|
| + return this.disconnect.apply(this, args);
|
| }
|
| - [dartx.supports](attribute) {
|
| - return this.supports(attribute);
|
| + [dartx.supports](...args) {
|
| + return this.supports.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CompositorProxy, {
|
| @@ -45382,14 +45382,14 @@ html.CompositorWorker = class CompositorWorker extends html.EventTarget {
|
| this[_postMessage_2](message_1);
|
| return;
|
| }
|
| - [_postMessage_1](message, transfer) {
|
| - return this.postMessage(message, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message) {
|
| - return this.postMessage(message);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [dartx.terminate]() {
|
| - return this.terminate();
|
| + [dartx.terminate](...args) {
|
| + return this.terminate.apply(this, args);
|
| }
|
| get [dartx.onError]() {
|
| return html.CompositorWorker.errorEvent.forTarget(this);
|
| @@ -45488,8 +45488,8 @@ html.WorkerGlobalScope = class WorkerGlobalScope extends html.EventTarget {
|
| get [dartx.self]() {
|
| return this.self;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| [dartx.fetch](input, init) {
|
| if (init === void 0) init = null;
|
| @@ -45499,17 +45499,17 @@ html.WorkerGlobalScope = class WorkerGlobalScope extends html.EventTarget {
|
| }
|
| return this[_fetch_2](input);
|
| }
|
| - [_fetch_1](input, init) {
|
| - return this.fetch(input, init);
|
| + [_fetch_1](...args) {
|
| + return this.fetch.apply(this, args);
|
| }
|
| - [_fetch_2](input) {
|
| - return this.fetch(input);
|
| + [_fetch_2](...args) {
|
| + return this.fetch.apply(this, args);
|
| }
|
| - [dartx.importScripts](urls) {
|
| - return this.importScripts(urls);
|
| + [dartx.importScripts](...args) {
|
| + return this.importScripts.apply(this, args);
|
| }
|
| - [_webkitRequestFileSystem](type, size, successCallback, errorCallback) {
|
| - return this.webkitRequestFileSystem(type, size, successCallback, errorCallback);
|
| + [_webkitRequestFileSystem](...args) {
|
| + return this.webkitRequestFileSystem.apply(this, args);
|
| }
|
| [dartx.webkitRequestFileSystem](type, size) {
|
| let completer = CompleterOfFileSystem().new();
|
| @@ -45520,14 +45520,14 @@ html.WorkerGlobalScope = class WorkerGlobalScope extends html.EventTarget {
|
| }, FileErrorTovoid()));
|
| return completer.future;
|
| }
|
| - [dartx.requestFileSystemSync](type, size) {
|
| - return this.webkitRequestFileSystemSync(type, size);
|
| + [dartx.requestFileSystemSync](...args) {
|
| + return this.webkitRequestFileSystemSync.apply(this, args);
|
| }
|
| - [dartx.resolveLocalFileSystemSyncUrl](url) {
|
| - return this.webkitResolveLocalFileSystemSyncURL(url);
|
| + [dartx.resolveLocalFileSystemSyncUrl](...args) {
|
| + return this.webkitResolveLocalFileSystemSyncURL.apply(this, args);
|
| }
|
| - [_webkitResolveLocalFileSystemUrl](url, successCallback, errorCallback) {
|
| - return this.webkitResolveLocalFileSystemURL(url, successCallback, errorCallback);
|
| + [_webkitResolveLocalFileSystemUrl](...args) {
|
| + return this.webkitResolveLocalFileSystemURL.apply(this, args);
|
| }
|
| [dartx.webkitResolveLocalFileSystemUrl](url) {
|
| let completer = CompleterOfEntry().new();
|
| @@ -45538,29 +45538,29 @@ html.WorkerGlobalScope = class WorkerGlobalScope extends html.EventTarget {
|
| }, FileErrorTovoid()));
|
| return completer.future;
|
| }
|
| - [dartx.atob](atob) {
|
| - return this.atob(atob);
|
| + [dartx.atob](...args) {
|
| + return this.atob.apply(this, args);
|
| }
|
| - [dartx.btoa](btoa) {
|
| - return this.btoa(btoa);
|
| + [dartx.btoa](...args) {
|
| + return this.btoa.apply(this, args);
|
| }
|
| - [_setInterval_String](handler, timeout, arguments$) {
|
| - return this.setInterval(handler, timeout, arguments$);
|
| + [_setInterval_String](...args) {
|
| + return this.setInterval.apply(this, args);
|
| }
|
| - [_setTimeout_String](handler, timeout, arguments$) {
|
| - return this.setTimeout(handler, timeout, arguments$);
|
| + [_setTimeout_String](...args) {
|
| + return this.setTimeout.apply(this, args);
|
| }
|
| - [_clearInterval](handle) {
|
| - return this.clearInterval(handle);
|
| + [_clearInterval](...args) {
|
| + return this.clearInterval.apply(this, args);
|
| }
|
| - [_clearTimeout](handle) {
|
| - return this.clearTimeout(handle);
|
| + [_clearTimeout](...args) {
|
| + return this.clearTimeout.apply(this, args);
|
| }
|
| - [_setInterval](handler, timeout) {
|
| - return this.setInterval(handler, timeout);
|
| + [_setInterval](...args) {
|
| + return this.setInterval.apply(this, args);
|
| }
|
| - [_setTimeout](handler, timeout) {
|
| - return this.setTimeout(handler, timeout);
|
| + [_setTimeout](...args) {
|
| + return this.setTimeout.apply(this, args);
|
| }
|
| get [dartx.onError]() {
|
| return html.WorkerGlobalScope.errorEvent.forTarget(this);
|
| @@ -45625,8 +45625,8 @@ html.CompositorWorkerGlobalScope = class CompositorWorkerGlobalScope extends htm
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.cancelAnimationFrame](handle) {
|
| - return this.cancelAnimationFrame(handle);
|
| + [dartx.cancelAnimationFrame](...args) {
|
| + return this.cancelAnimationFrame.apply(this, args);
|
| }
|
| [dartx.postMessage](message, transfer) {
|
| if (transfer === void 0) transfer = null;
|
| @@ -45639,14 +45639,14 @@ html.CompositorWorkerGlobalScope = class CompositorWorkerGlobalScope extends htm
|
| this[_postMessage_2](message_1);
|
| return;
|
| }
|
| - [_postMessage_1](message, transfer) {
|
| - return this.postMessage(message, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message) {
|
| - return this.postMessage(message);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [dartx.requestAnimationFrame](callback) {
|
| - return this.requestAnimationFrame(callback);
|
| + [dartx.requestAnimationFrame](...args) {
|
| + return this.requestAnimationFrame.apply(this, args);
|
| }
|
| get [dartx.onMessage]() {
|
| return html.CompositorWorkerGlobalScope.messageEvent.forTarget(this);
|
| @@ -45796,14 +45796,14 @@ html.ConsoleBase = class ConsoleBase extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.assertCondition](condition, arg) {
|
| - return this.assert(condition, arg);
|
| + [dartx.assertCondition](...args) {
|
| + return this.assert.apply(this, args);
|
| }
|
| - [dartx.timeline](title) {
|
| - return this.timeline(title);
|
| + [dartx.timeline](...args) {
|
| + return this.timeline.apply(this, args);
|
| }
|
| - [dartx.timelineEnd](title) {
|
| - return this.timelineEnd(title);
|
| + [dartx.timelineEnd](...args) {
|
| + return this.timelineEnd.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ConsoleBase, {
|
| @@ -45839,8 +45839,8 @@ html.ContentElement = class ContentElement extends html.HtmlElement {
|
| set [dartx.select](value) {
|
| this.select = value;
|
| }
|
| - [dartx.getDistributedNodes]() {
|
| - return this.getDistributedNodes();
|
| + [dartx.getDistributedNodes](...args) {
|
| + return this.getDistributedNodes.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.ContentElement, 'created');
|
| @@ -45947,8 +45947,8 @@ html.CredentialsContainer = class CredentialsContainer extends _interceptors.Int
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.notifySignedIn](credential) {
|
| - return this.notifySignedIn(credential);
|
| + [dartx.notifySignedIn](...args) {
|
| + return this.notifySignedIn.apply(this, args);
|
| }
|
| [dartx.request](options) {
|
| if (options === void 0) options = null;
|
| @@ -45958,14 +45958,14 @@ html.CredentialsContainer = class CredentialsContainer extends _interceptors.Int
|
| }
|
| return this[_request_2]();
|
| }
|
| - [_request_1](options) {
|
| - return this.request(options);
|
| + [_request_1](...args) {
|
| + return this.request.apply(this, args);
|
| }
|
| - [_request_2]() {
|
| - return this.request();
|
| + [_request_2](...args) {
|
| + return this.request.apply(this, args);
|
| }
|
| - [dartx.requireUserMediation]() {
|
| - return this.requireUserMediation();
|
| + [dartx.requireUserMediation](...args) {
|
| + return this.requireUserMediation.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CredentialsContainer, {
|
| @@ -45990,8 +45990,8 @@ html.CrossOriginConnectEvent = class CrossOriginConnectEvent extends html.Event
|
| get [dartx.client]() {
|
| return this.client;
|
| }
|
| - [dartx.acceptConnection](shouldAccept) {
|
| - return this.acceptConnection(shouldAccept);
|
| + [dartx.acceptConnection](...args) {
|
| + return this.acceptConnection.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CrossOriginConnectEvent, {
|
| @@ -46026,11 +46026,11 @@ html.CrossOriginServiceWorkerClient = class CrossOriginServiceWorkerClient exten
|
| this[_postMessage_2](message_1);
|
| return;
|
| }
|
| - [_postMessage_1](message, transfer) {
|
| - return this.postMessage(message, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message) {
|
| - return this.postMessage(message);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CrossOriginServiceWorkerClient, {
|
| @@ -46064,8 +46064,8 @@ html.Crypto = class Crypto extends _interceptors.Interceptor {
|
| get [dartx.subtle]() {
|
| return this.subtle;
|
| }
|
| - [_getRandomValues](array) {
|
| - return this.getRandomValues(array);
|
| + [_getRandomValues](...args) {
|
| + return this.getRandomValues.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Crypto, {
|
| @@ -46234,11 +46234,11 @@ html.CssGroupingRule = class CssGroupingRule extends html.CssRule {
|
| get [dartx.cssRules]() {
|
| return this.cssRules;
|
| }
|
| - [dartx.deleteRule](index) {
|
| - return this.deleteRule(index);
|
| + [dartx.deleteRule](...args) {
|
| + return this.deleteRule.apply(this, args);
|
| }
|
| - [dartx.insertRule](rule, index) {
|
| - return this.insertRule(rule, index);
|
| + [dartx.insertRule](...args) {
|
| + return this.insertRule.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CssGroupingRule, {
|
| @@ -46326,17 +46326,17 @@ html.CssKeyframesRule = class CssKeyframesRule extends html.CssRule {
|
| set [dartx.name](value) {
|
| this.name = value;
|
| }
|
| - [__getter__](index) {
|
| - return this.__getter__(index);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [dartx.appendRule](rule) {
|
| - return this.appendRule(rule);
|
| + [dartx.appendRule](...args) {
|
| + return this.appendRule.apply(this, args);
|
| }
|
| - [dartx.deleteRule](select) {
|
| - return this.deleteRule(select);
|
| + [dartx.deleteRule](...args) {
|
| + return this.deleteRule.apply(this, args);
|
| }
|
| - [dartx.findRule](select) {
|
| - return this.findRule(select);
|
| + [dartx.findRule](...args) {
|
| + return this.findRule.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CssKeyframesRule, {
|
| @@ -50874,17 +50874,17 @@ html.CssStyleDeclaration = class CssStyleDeclaration extends dart.mixin(_interce
|
| get [dartx.parentRule]() {
|
| return this.parentRule;
|
| }
|
| - [dartx.getPropertyPriority](property) {
|
| - return this.getPropertyPriority(property);
|
| + [dartx.getPropertyPriority](...args) {
|
| + return this.getPropertyPriority.apply(this, args);
|
| }
|
| - [_getPropertyValue](property) {
|
| - return this.getPropertyValue(property);
|
| + [_getPropertyValue](...args) {
|
| + return this.getPropertyValue.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.removeProperty](property) {
|
| - return this.removeProperty(property);
|
| + [dartx.removeProperty](...args) {
|
| + return this.removeProperty.apply(this, args);
|
| }
|
| get [dartx.background]() {
|
| return this[_background];
|
| @@ -52866,17 +52866,17 @@ html.CssStyleSheet = class CssStyleSheet extends html.StyleSheet {
|
| get [dartx.rules]() {
|
| return this.rules;
|
| }
|
| - [dartx.addRule](selector, style, index) {
|
| - return this.addRule(selector, style, index);
|
| + [dartx.addRule](...args) {
|
| + return this.addRule.apply(this, args);
|
| }
|
| - [dartx.deleteRule](index) {
|
| - return this.deleteRule(index);
|
| + [dartx.deleteRule](...args) {
|
| + return this.deleteRule.apply(this, args);
|
| }
|
| - [dartx.insertRule](rule, index) {
|
| - return this.insertRule(rule, index);
|
| + [dartx.insertRule](...args) {
|
| + return this.insertRule.apply(this, args);
|
| }
|
| - [dartx.removeRule](index) {
|
| - return this.removeRule(index);
|
| + [dartx.removeRule](...args) {
|
| + return this.removeRule.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CssStyleSheet, {
|
| @@ -52910,11 +52910,11 @@ html.CssSupportsRule = class CssSupportsRule extends html.CssRule {
|
| get [dartx.cssRules]() {
|
| return this.cssRules;
|
| }
|
| - [dartx.deleteRule](index) {
|
| - return this.deleteRule(index);
|
| + [dartx.deleteRule](...args) {
|
| + return this.deleteRule.apply(this, args);
|
| }
|
| - [dartx.insertRule](rule, index) {
|
| - return this.insertRule(rule, index);
|
| + [dartx.insertRule](...args) {
|
| + return this.insertRule.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CssSupportsRule, {
|
| @@ -53004,8 +53004,8 @@ html.CustomEvent = class CustomEvent extends html.Event {
|
| get [_get__detail]() {
|
| return this.detail;
|
| }
|
| - [_initCustomEvent](type, bubbles, cancelable, detail) {
|
| - return this.initCustomEvent(type, bubbles, cancelable, detail);
|
| + [_initCustomEvent](...args) {
|
| + return this.initCustomEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.CustomEvent, {
|
| @@ -53117,17 +53117,17 @@ html.DataTransfer = class DataTransfer extends _interceptors.Interceptor {
|
| get [dartx.types]() {
|
| return this.types;
|
| }
|
| - [dartx.clearData](format) {
|
| - return this.clearData(format);
|
| + [dartx.clearData](...args) {
|
| + return this.clearData.apply(this, args);
|
| }
|
| - [dartx.getData](format) {
|
| - return this.getData(format);
|
| + [dartx.getData](...args) {
|
| + return this.getData.apply(this, args);
|
| }
|
| - [dartx.setData](format, data) {
|
| - return this.setData(format, data);
|
| + [dartx.setData](...args) {
|
| + return this.setData.apply(this, args);
|
| }
|
| - [dartx.setDragImage](image, x, y) {
|
| - return this.setDragImage(image, x, y);
|
| + [dartx.setDragImage](...args) {
|
| + return this.setDragImage.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DataTransfer, {
|
| @@ -53165,11 +53165,11 @@ html.DataTransferItem = class DataTransferItem extends _interceptors.Interceptor
|
| get [dartx.type]() {
|
| return this.type;
|
| }
|
| - [dartx.getAsFile]() {
|
| - return this.getAsFile();
|
| + [dartx.getAsFile](...args) {
|
| + return this.getAsFile.apply(this, args);
|
| }
|
| - [_getAsString](callback) {
|
| - return this.getAsString(callback);
|
| + [_getAsString](...args) {
|
| + return this.getAsString.apply(this, args);
|
| }
|
| [dartx.getAsString]() {
|
| let completer = CompleterOfString().new();
|
| @@ -53178,8 +53178,8 @@ html.DataTransferItem = class DataTransferItem extends _interceptors.Interceptor
|
| }, StringTovoid()));
|
| return completer.future;
|
| }
|
| - [dartx.getAsEntry]() {
|
| - return this.webkitGetAsEntry();
|
| + [dartx.getAsEntry](...args) {
|
| + return this.webkitGetAsEntry.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DataTransferItem, {
|
| @@ -53213,23 +53213,23 @@ html.DataTransferItemList = class DataTransferItemList extends _interceptors.Int
|
| get [dartx.length]() {
|
| return this.length;
|
| }
|
| - [dartx.add](data_OR_file, type) {
|
| - return this.add(data_OR_file, type);
|
| + [dartx.add](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| - [dartx.addData](data, type) {
|
| - return this.add(data, type);
|
| + [dartx.addData](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| - [dartx.addFile](file) {
|
| - return this.add(file);
|
| + [dartx.addFile](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| - [dartx.clear]() {
|
| - return this.clear();
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.remove](index) {
|
| - return this.remove(index);
|
| + [dartx.remove](...args) {
|
| + return this.remove.apply(this, args);
|
| }
|
| [dartx._get](index) {
|
| return this[index];
|
| @@ -53269,11 +53269,11 @@ html.DedicatedWorkerGlobalScope = class DedicatedWorkerGlobalScope extends html.
|
| this[_postMessage_2](message_1);
|
| return;
|
| }
|
| - [_postMessage_1](message, transfer) {
|
| - return this.postMessage(message, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message) {
|
| - return this.postMessage(message);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| get [dartx.onMessage]() {
|
| return html.DedicatedWorkerGlobalScope.messageEvent.forTarget(this);
|
| @@ -53341,11 +53341,11 @@ html.DeprecatedStorageInfo = class DeprecatedStorageInfo extends _interceptors.I
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.queryUsageAndQuota](storageType, usageCallback, errorCallback) {
|
| - return this.queryUsageAndQuota(storageType, usageCallback, errorCallback);
|
| + [dartx.queryUsageAndQuota](...args) {
|
| + return this.queryUsageAndQuota.apply(this, args);
|
| }
|
| - [dartx.requestQuota](storageType, newQuotaInBytes, quotaCallback, errorCallback) {
|
| - return this.requestQuota(storageType, newQuotaInBytes, quotaCallback, errorCallback);
|
| + [dartx.requestQuota](...args) {
|
| + return this.requestQuota.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DeprecatedStorageInfo, {
|
| @@ -53370,11 +53370,11 @@ html.DeprecatedStorageQuota = class DeprecatedStorageQuota extends _interceptors
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.queryUsageAndQuota](usageCallback, errorCallback) {
|
| - return this.queryUsageAndQuota(usageCallback, errorCallback);
|
| + [dartx.queryUsageAndQuota](...args) {
|
| + return this.queryUsageAndQuota.apply(this, args);
|
| }
|
| - [dartx.requestQuota](newQuotaInBytes, quotaCallback, errorCallback) {
|
| - return this.requestQuota(newQuotaInBytes, quotaCallback, errorCallback);
|
| + [dartx.requestQuota](...args) {
|
| + return this.requestQuota.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DeprecatedStorageQuota, {
|
| @@ -53509,8 +53509,8 @@ html.DeviceMotionEvent = class DeviceMotionEvent extends html.Event {
|
| get [dartx.rotationRate]() {
|
| return this.rotationRate;
|
| }
|
| - [dartx.initDeviceMotionEvent](type, bubbles, cancelable, acceleration, accelerationIncludingGravity, rotationRate, interval) {
|
| - return this.initDeviceMotionEvent(type, bubbles, cancelable, acceleration, accelerationIncludingGravity, rotationRate, interval);
|
| + [dartx.initDeviceMotionEvent](...args) {
|
| + return this.initDeviceMotionEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DeviceMotionEvent, {
|
| @@ -53558,8 +53558,8 @@ html.DeviceOrientationEvent = class DeviceOrientationEvent extends html.Event {
|
| get [dartx.gamma]() {
|
| return this.gamma;
|
| }
|
| - [_initDeviceOrientationEvent](type, bubbles, cancelable, alpha, beta, gamma, absolute) {
|
| - return this.initDeviceOrientationEvent(type, bubbles, cancelable, alpha, beta, gamma, absolute);
|
| + [_initDeviceOrientationEvent](...args) {
|
| + return this.initDeviceOrientationEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DeviceOrientationEvent, {
|
| @@ -53632,14 +53632,14 @@ html.DialogElement = class DialogElement extends html.HtmlElement {
|
| set [dartx.returnValue](value) {
|
| this.returnValue = value;
|
| }
|
| - [dartx.close](returnValue) {
|
| - return this.close(returnValue);
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| - [dartx.show]() {
|
| - return this.show();
|
| + [dartx.show](...args) {
|
| + return this.show.apply(this, args);
|
| }
|
| - [dartx.showModal]() {
|
| - return this.showModal();
|
| + [dartx.showModal](...args) {
|
| + return this.showModal.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.DialogElement, 'created');
|
| @@ -53709,8 +53709,8 @@ html.Entry = class Entry extends _interceptors.Interceptor {
|
| get [dartx.name]() {
|
| return this.name;
|
| }
|
| - [_copyTo](parent, opts) {
|
| - return this.copyTo(parent, opts);
|
| + [_copyTo](...args) {
|
| + return this.copyTo.apply(this, args);
|
| }
|
| [dartx.copyTo](parent, opts) {
|
| let name = opts && 'name' in opts ? opts.name : null;
|
| @@ -53722,8 +53722,8 @@ html.Entry = class Entry extends _interceptors.Interceptor {
|
| }, FileErrorTovoid())});
|
| return completer.future;
|
| }
|
| - [_getMetadata](successCallback, errorCallback) {
|
| - return this.getMetadata(successCallback, errorCallback);
|
| + [_getMetadata](...args) {
|
| + return this.getMetadata.apply(this, args);
|
| }
|
| [dartx.getMetadata]() {
|
| let completer = CompleterOfMetadata().new();
|
| @@ -53734,8 +53734,8 @@ html.Entry = class Entry extends _interceptors.Interceptor {
|
| }, FileErrorTovoid()));
|
| return completer.future;
|
| }
|
| - [_getParent](successCallback, errorCallback) {
|
| - return this.getParent(successCallback, errorCallback);
|
| + [_getParent](...args) {
|
| + return this.getParent.apply(this, args);
|
| }
|
| [dartx.getParent]() {
|
| let completer = CompleterOfEntry().new();
|
| @@ -53746,8 +53746,8 @@ html.Entry = class Entry extends _interceptors.Interceptor {
|
| }, FileErrorTovoid()));
|
| return completer.future;
|
| }
|
| - [_moveTo](parent, opts) {
|
| - return this.moveTo(parent, opts);
|
| + [_moveTo](...args) {
|
| + return this.moveTo.apply(this, args);
|
| }
|
| [dartx.moveTo](parent, opts) {
|
| let name = opts && 'name' in opts ? opts.name : null;
|
| @@ -53759,8 +53759,8 @@ html.Entry = class Entry extends _interceptors.Interceptor {
|
| }, FileErrorTovoid())});
|
| return completer.future;
|
| }
|
| - [_remove](successCallback, errorCallback) {
|
| - return this.remove(successCallback, errorCallback);
|
| + [_remove](...args) {
|
| + return this.remove.apply(this, args);
|
| }
|
| [dartx.remove]() {
|
| let completer = async.Completer.new();
|
| @@ -53771,8 +53771,8 @@ html.Entry = class Entry extends _interceptors.Interceptor {
|
| }, FileErrorTovoid()));
|
| return completer.future;
|
| }
|
| - [dartx.toUrl]() {
|
| - return this.toURL();
|
| + [dartx.toUrl](...args) {
|
| + return this.toURL.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Entry, {
|
| @@ -53825,8 +53825,8 @@ html.DirectoryEntry = class DirectoryEntry extends html.Entry {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.createReader]() {
|
| - return this.createReader();
|
| + [dartx.createReader](...args) {
|
| + return this.createReader.apply(this, args);
|
| }
|
| [__getDirectory](path, opts) {
|
| let options = opts && 'options' in opts ? opts.options : null;
|
| @@ -53850,17 +53850,17 @@ html.DirectoryEntry = class DirectoryEntry extends html.Entry {
|
| this[__getDirectory_4](path);
|
| return;
|
| }
|
| - [__getDirectory_1](path, options, successCallback, errorCallback) {
|
| - return this.getDirectory(path, options, successCallback, errorCallback);
|
| + [__getDirectory_1](...args) {
|
| + return this.getDirectory.apply(this, args);
|
| }
|
| - [__getDirectory_2](path, options, successCallback) {
|
| - return this.getDirectory(path, options, successCallback);
|
| + [__getDirectory_2](...args) {
|
| + return this.getDirectory.apply(this, args);
|
| }
|
| - [__getDirectory_3](path, options) {
|
| - return this.getDirectory(path, options);
|
| + [__getDirectory_3](...args) {
|
| + return this.getDirectory.apply(this, args);
|
| }
|
| - [__getDirectory_4](path) {
|
| - return this.getDirectory(path);
|
| + [__getDirectory_4](...args) {
|
| + return this.getDirectory.apply(this, args);
|
| }
|
| [_getDirectory](path, opts) {
|
| let options = opts && 'options' in opts ? opts.options : null;
|
| @@ -53894,17 +53894,17 @@ html.DirectoryEntry = class DirectoryEntry extends html.Entry {
|
| this[__getFile_4](path);
|
| return;
|
| }
|
| - [__getFile_1](path, options, successCallback, errorCallback) {
|
| - return this.getFile(path, options, successCallback, errorCallback);
|
| + [__getFile_1](...args) {
|
| + return this.getFile.apply(this, args);
|
| }
|
| - [__getFile_2](path, options, successCallback) {
|
| - return this.getFile(path, options, successCallback);
|
| + [__getFile_2](...args) {
|
| + return this.getFile.apply(this, args);
|
| }
|
| - [__getFile_3](path, options) {
|
| - return this.getFile(path, options);
|
| + [__getFile_3](...args) {
|
| + return this.getFile.apply(this, args);
|
| }
|
| - [__getFile_4](path) {
|
| - return this.getFile(path);
|
| + [__getFile_4](...args) {
|
| + return this.getFile.apply(this, args);
|
| }
|
| [_getFile](path, opts) {
|
| let options = opts && 'options' in opts ? opts.options : null;
|
| @@ -53916,8 +53916,8 @@ html.DirectoryEntry = class DirectoryEntry extends html.Entry {
|
| }, FileErrorTovoid())});
|
| return completer.future;
|
| }
|
| - [_removeRecursively](successCallback, errorCallback) {
|
| - return this.removeRecursively(successCallback, errorCallback);
|
| + [_removeRecursively](...args) {
|
| + return this.removeRecursively.apply(this, args);
|
| }
|
| [dartx.removeRecursively]() {
|
| let completer = async.Completer.new();
|
| @@ -53962,8 +53962,8 @@ html.DirectoryReader = class DirectoryReader extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [_readEntries](successCallback, errorCallback) {
|
| - return this.readEntries(successCallback, errorCallback);
|
| + [_readEntries](...args) {
|
| + return this.readEntries.apply(this, args);
|
| }
|
| [dartx.readEntries]() {
|
| let completer = CompleterOfListOfEntry().new();
|
| @@ -54260,93 +54260,93 @@ html.Document = class Document extends html.Node {
|
| get [_webkitVisibilityState]() {
|
| return this.webkitVisibilityState;
|
| }
|
| - [dartx.adoptNode](node) {
|
| - return this.adoptNode(node);
|
| + [dartx.adoptNode](...args) {
|
| + return this.adoptNode.apply(this, args);
|
| }
|
| - [_caretRangeFromPoint](x, y) {
|
| - return this.caretRangeFromPoint(x, y);
|
| + [_caretRangeFromPoint](...args) {
|
| + return this.caretRangeFromPoint.apply(this, args);
|
| }
|
| - [dartx.createDocumentFragment]() {
|
| - return this.createDocumentFragment();
|
| + [dartx.createDocumentFragment](...args) {
|
| + return this.createDocumentFragment.apply(this, args);
|
| }
|
| - [_createElement](localName_OR_tagName, typeExtension) {
|
| - return this.createElement(localName_OR_tagName, typeExtension);
|
| + [_createElement](...args) {
|
| + return this.createElement.apply(this, args);
|
| }
|
| - [_createElementNS](namespaceURI, qualifiedName, typeExtension) {
|
| - return this.createElementNS(namespaceURI, qualifiedName, typeExtension);
|
| + [_createElementNS](...args) {
|
| + return this.createElementNS.apply(this, args);
|
| }
|
| - [_createEvent](eventType) {
|
| - return this.createEvent(eventType);
|
| + [_createEvent](...args) {
|
| + return this.createEvent.apply(this, args);
|
| }
|
| - [dartx.createRange]() {
|
| - return this.createRange();
|
| + [dartx.createRange](...args) {
|
| + return this.createRange.apply(this, args);
|
| }
|
| - [_createTextNode](data) {
|
| - return this.createTextNode(data);
|
| + [_createTextNode](...args) {
|
| + return this.createTextNode.apply(this, args);
|
| }
|
| [_createTouch](window, target, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force) {
|
| let target_1 = html._convertDartToNative_EventTarget(target);
|
| return this[_createTouch_1](window, target_1, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force);
|
| }
|
| - [_createTouch_1](window, target, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force) {
|
| - return this.createTouch(window, target, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force);
|
| + [_createTouch_1](...args) {
|
| + return this.createTouch.apply(this, args);
|
| }
|
| - [_createTouchList](touches) {
|
| - return this.createTouchList(touches);
|
| + [_createTouchList](...args) {
|
| + return this.createTouchList.apply(this, args);
|
| }
|
| - [_elementFromPoint](x, y) {
|
| - return this.elementFromPoint(x, y);
|
| + [_elementFromPoint](...args) {
|
| + return this.elementFromPoint.apply(this, args);
|
| }
|
| - [dartx.elementsFromPoint](x, y) {
|
| - return this.elementsFromPoint(x, y);
|
| + [dartx.elementsFromPoint](...args) {
|
| + return this.elementsFromPoint.apply(this, args);
|
| }
|
| - [dartx.execCommand](commandId, showUI, value) {
|
| - return this.execCommand(commandId, showUI, value);
|
| + [dartx.execCommand](...args) {
|
| + return this.execCommand.apply(this, args);
|
| }
|
| - [dartx.exitFullscreen]() {
|
| - return this.exitFullscreen();
|
| + [dartx.exitFullscreen](...args) {
|
| + return this.exitFullscreen.apply(this, args);
|
| }
|
| - [dartx.exitPointerLock]() {
|
| - return this.exitPointerLock();
|
| + [dartx.exitPointerLock](...args) {
|
| + return this.exitPointerLock.apply(this, args);
|
| }
|
| - [_getCssCanvasContext](contextId, name, width, height) {
|
| - return this.getCSSCanvasContext(contextId, name, width, height);
|
| + [_getCssCanvasContext](...args) {
|
| + return this.getCSSCanvasContext.apply(this, args);
|
| }
|
| - [dartx.getElementsByClassName](classNames) {
|
| - return this.getElementsByClassName(classNames);
|
| + [dartx.getElementsByClassName](...args) {
|
| + return this.getElementsByClassName.apply(this, args);
|
| }
|
| - [dartx.getElementsByName](elementName) {
|
| - return this.getElementsByName(elementName);
|
| + [dartx.getElementsByName](...args) {
|
| + return this.getElementsByName.apply(this, args);
|
| }
|
| - [dartx.getElementsByTagName](localName) {
|
| - return this.getElementsByTagName(localName);
|
| + [dartx.getElementsByTagName](...args) {
|
| + return this.getElementsByTagName.apply(this, args);
|
| }
|
| - [dartx.importNode](node, deep) {
|
| - return this.importNode(node, deep);
|
| + [dartx.importNode](...args) {
|
| + return this.importNode.apply(this, args);
|
| }
|
| - [dartx.queryCommandEnabled](commandId) {
|
| - return this.queryCommandEnabled(commandId);
|
| + [dartx.queryCommandEnabled](...args) {
|
| + return this.queryCommandEnabled.apply(this, args);
|
| }
|
| - [dartx.queryCommandIndeterm](commandId) {
|
| - return this.queryCommandIndeterm(commandId);
|
| + [dartx.queryCommandIndeterm](...args) {
|
| + return this.queryCommandIndeterm.apply(this, args);
|
| }
|
| - [dartx.queryCommandState](commandId) {
|
| - return this.queryCommandState(commandId);
|
| + [dartx.queryCommandState](...args) {
|
| + return this.queryCommandState.apply(this, args);
|
| }
|
| - [dartx.queryCommandSupported](commandId) {
|
| - return this.queryCommandSupported(commandId);
|
| + [dartx.queryCommandSupported](...args) {
|
| + return this.queryCommandSupported.apply(this, args);
|
| }
|
| - [dartx.queryCommandValue](commandId) {
|
| - return this.queryCommandValue(commandId);
|
| + [dartx.queryCommandValue](...args) {
|
| + return this.queryCommandValue.apply(this, args);
|
| }
|
| - [dartx.transformDocumentToTreeView](noStyleMessage) {
|
| - return this.transformDocumentToTreeView(noStyleMessage);
|
| + [dartx.transformDocumentToTreeView](...args) {
|
| + return this.transformDocumentToTreeView.apply(this, args);
|
| }
|
| - [_webkitExitFullscreen]() {
|
| - return this.webkitExitFullscreen();
|
| + [_webkitExitFullscreen](...args) {
|
| + return this.webkitExitFullscreen.apply(this, args);
|
| }
|
| - [dartx.getElementById](elementId) {
|
| - return this.getElementById(elementId);
|
| + [dartx.getElementById](...args) {
|
| + return this.getElementById.apply(this, args);
|
| }
|
| get [_childElementCount]() {
|
| return this.childElementCount;
|
| @@ -54360,11 +54360,11 @@ html.Document = class Document extends html.Node {
|
| get [_lastElementChild]() {
|
| return this.lastElementChild;
|
| }
|
| - [dartx.querySelector](selectors) {
|
| - return this.querySelector(selectors);
|
| + [dartx.querySelector](...args) {
|
| + return this.querySelector.apply(this, args);
|
| }
|
| - [_querySelectorAll](selectors) {
|
| - return this.querySelectorAll(selectors);
|
| + [_querySelectorAll](...args) {
|
| + return this.querySelectorAll.apply(this, args);
|
| }
|
| get [dartx.onAbort]() {
|
| return html.Element.abortEvent.forTarget(this);
|
| @@ -54899,8 +54899,8 @@ html.DocumentFragment = class DocumentFragment extends html.Node {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.getElementById](elementId) {
|
| - return this.getElementById(elementId);
|
| + [dartx.getElementById](...args) {
|
| + return this.getElementById.apply(this, args);
|
| }
|
| get [_childElementCount]() {
|
| return this.childElementCount;
|
| @@ -54911,11 +54911,11 @@ html.DocumentFragment = class DocumentFragment extends html.Node {
|
| get [_lastElementChild]() {
|
| return this.lastElementChild;
|
| }
|
| - [dartx.querySelector](selectors) {
|
| - return this.querySelector(selectors);
|
| + [dartx.querySelector](...args) {
|
| + return this.querySelector.apply(this, args);
|
| }
|
| - [_querySelectorAll](selectors) {
|
| - return this.querySelectorAll(selectors);
|
| + [_querySelectorAll](...args) {
|
| + return this.querySelectorAll.apply(this, args);
|
| }
|
| };
|
| html.DocumentFragment[dart.implements] = () => [html.NonElementParentNode, html.ParentNode];
|
| @@ -55080,17 +55080,17 @@ html.DomImplementation = class DomImplementation extends _interceptors.Intercept
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.createDocument](namespaceURI, qualifiedName, doctype) {
|
| - return this.createDocument(namespaceURI, qualifiedName, doctype);
|
| + [dartx.createDocument](...args) {
|
| + return this.createDocument.apply(this, args);
|
| }
|
| - [dartx.createDocumentType](qualifiedName, publicId, systemId) {
|
| - return this.createDocumentType(qualifiedName, publicId, systemId);
|
| + [dartx.createDocumentType](...args) {
|
| + return this.createDocumentType.apply(this, args);
|
| }
|
| - [dartx.createHtmlDocument](title) {
|
| - return this.createHTMLDocument(title);
|
| + [dartx.createHtmlDocument](...args) {
|
| + return this.createHTMLDocument.apply(this, args);
|
| }
|
| - [dartx.hasFeature]() {
|
| - return this.hasFeature();
|
| + [dartx.hasFeature](...args) {
|
| + return this.hasFeature.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DomImplementation, {
|
| @@ -55110,8 +55110,8 @@ html.DomIterator = class DomIterator extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.next](value) {
|
| - return this.next(value);
|
| + [dartx.next](...args) {
|
| + return this.next.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DomIterator, {
|
| @@ -55228,26 +55228,26 @@ html.DomMatrixReadOnly = class DomMatrixReadOnly extends _interceptors.Intercept
|
| get [dartx.m44]() {
|
| return this.m44;
|
| }
|
| - [dartx.multiply](other) {
|
| - return this.multiply(other);
|
| + [dartx.multiply](...args) {
|
| + return this.multiply.apply(this, args);
|
| }
|
| - [dartx.scale](scale, originX, originY) {
|
| - return this.scale(scale, originX, originY);
|
| + [dartx.scale](...args) {
|
| + return this.scale.apply(this, args);
|
| }
|
| - [dartx.scale3d](scale, originX, originY, originZ) {
|
| - return this.scale3d(scale, originX, originY, originZ);
|
| + [dartx.scale3d](...args) {
|
| + return this.scale3d.apply(this, args);
|
| }
|
| - [dartx.scaleNonUniform](scaleX, scaleY, scaleZn, originX, originY, originZ) {
|
| - return this.scaleNonUniform(scaleX, scaleY, scaleZn, originX, originY, originZ);
|
| + [dartx.scaleNonUniform](...args) {
|
| + return this.scaleNonUniform.apply(this, args);
|
| }
|
| - [dartx.toFloat32Array]() {
|
| - return this.toFloat32Array();
|
| + [dartx.toFloat32Array](...args) {
|
| + return this.toFloat32Array.apply(this, args);
|
| }
|
| - [dartx.toFloat64Array]() {
|
| - return this.toFloat64Array();
|
| + [dartx.toFloat64Array](...args) {
|
| + return this.toFloat64Array.apply(this, args);
|
| }
|
| - [dartx.translate](tx, ty, tz) {
|
| - return this.translate(tx, ty, tz);
|
| + [dartx.translate](...args) {
|
| + return this.translate.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DomMatrixReadOnly, {
|
| @@ -55493,23 +55493,23 @@ html.DomMatrix = class DomMatrix extends html.DomMatrixReadOnly {
|
| set [dartx.m44](value) {
|
| this.m44 = value;
|
| }
|
| - [dartx.multiplySelf](other) {
|
| - return this.multiplySelf(other);
|
| + [dartx.multiplySelf](...args) {
|
| + return this.multiplySelf.apply(this, args);
|
| }
|
| - [dartx.preMultiplySelf](other) {
|
| - return this.preMultiplySelf(other);
|
| + [dartx.preMultiplySelf](...args) {
|
| + return this.preMultiplySelf.apply(this, args);
|
| }
|
| - [dartx.scale3dSelf](scale, originX, originY, originZ) {
|
| - return this.scale3dSelf(scale, originX, originY, originZ);
|
| + [dartx.scale3dSelf](...args) {
|
| + return this.scale3dSelf.apply(this, args);
|
| }
|
| - [dartx.scaleNonUniformSelf](scaleX, scaleY, scaleZ, originX, originY, originZ) {
|
| - return this.scaleNonUniformSelf(scaleX, scaleY, scaleZ, originX, originY, originZ);
|
| + [dartx.scaleNonUniformSelf](...args) {
|
| + return this.scaleNonUniformSelf.apply(this, args);
|
| }
|
| - [dartx.scaleSelf](scale, originX, originY) {
|
| - return this.scaleSelf(scale, originX, originY);
|
| + [dartx.scaleSelf](...args) {
|
| + return this.scaleSelf.apply(this, args);
|
| }
|
| - [dartx.translateSelf](tx, ty, tz) {
|
| - return this.translateSelf(tx, ty, tz);
|
| + [dartx.translateSelf](...args) {
|
| + return this.translateSelf.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DomMatrix, {
|
| @@ -55569,8 +55569,8 @@ html.DomParser = class DomParser extends _interceptors.Interceptor {
|
| static _create_1() {
|
| return new DOMParser();
|
| }
|
| - [dartx.parseFromString](str, type) {
|
| - return this.parseFromString(str, type);
|
| + [dartx.parseFromString](...args) {
|
| + return this.parseFromString.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DomParser, {
|
| @@ -55889,20 +55889,20 @@ html.DomTokenList = class DomTokenList extends _interceptors.Interceptor {
|
| get [dartx.length]() {
|
| return this.length;
|
| }
|
| - [dartx.add](tokens) {
|
| - return this.add(tokens);
|
| + [dartx.add](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| - [dartx.contains](token) {
|
| - return this.contains(token);
|
| + [dartx.contains](...args) {
|
| + return this.contains.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.remove](tokens) {
|
| - return this.remove(tokens);
|
| + [dartx.remove](...args) {
|
| + return this.remove.apply(this, args);
|
| }
|
| - [dartx.toggle](token, force) {
|
| - return this.toggle(token, force);
|
| + [dartx.toggle](...args) {
|
| + return this.toggle.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.DomTokenList, {
|
| @@ -56127,11 +56127,11 @@ html.DomStringList = class DomStringList extends dart.mixin(_interceptors.Interc
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [__getter__](index) {
|
| - return this.__getter__(index);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html.DomStringList[dart.implements] = () => [ListOfString()];
|
| @@ -56855,11 +56855,11 @@ html.EmbedElement = class EmbedElement extends html.HtmlElement {
|
| set [dartx.width](value) {
|
| this.width = value;
|
| }
|
| - [__getter__](index_OR_name) {
|
| - return this.__getter__(index_OR_name);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [__setter__](index_OR_name, value) {
|
| - return this.__setter__(index_OR_name, value);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.EmbedElement, 'created');
|
| @@ -56987,8 +56987,8 @@ html.EventSource = class EventSource extends html.EventTarget {
|
| get [dartx.withCredentials]() {
|
| return this.withCredentials;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| get [dartx.onError]() {
|
| return html.EventSource.errorEvent.forTarget(this);
|
| @@ -57103,8 +57103,8 @@ html.ExtendableEvent = class ExtendableEvent extends html.Event {
|
| static _create_2(type) {
|
| return new ExtendableEvent(type);
|
| }
|
| - [dartx.waitUntil](value) {
|
| - return this.waitUntil(value);
|
| + [dartx.waitUntil](...args) {
|
| + return this.waitUntil.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ExtendableEvent, {
|
| @@ -57184,8 +57184,8 @@ html.FetchEvent = class FetchEvent extends html.ExtendableEvent {
|
| get [dartx.request]() {
|
| return this.request;
|
| }
|
| - [dartx.respondWith](value) {
|
| - return this.respondWith(value);
|
| + [dartx.respondWith](...args) {
|
| + return this.respondWith.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.FetchEvent, {
|
| @@ -57266,14 +57266,14 @@ html.FieldSetElement = class FieldSetElement extends html.HtmlElement {
|
| get [dartx.willValidate]() {
|
| return this.willValidate;
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| - [dartx.setCustomValidity](error) {
|
| - return this.setCustomValidity(error);
|
| + [dartx.setCustomValidity](...args) {
|
| + return this.setCustomValidity.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.FieldSetElement, 'created');
|
| @@ -57371,8 +57371,8 @@ html.FileEntry = class FileEntry extends html.Entry {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [_createWriter](successCallback, errorCallback) {
|
| - return this.createWriter(successCallback, errorCallback);
|
| + [_createWriter](...args) {
|
| + return this.createWriter.apply(this, args);
|
| }
|
| [dartx.createWriter]() {
|
| let completer = CompleterOfFileWriter().new();
|
| @@ -57383,8 +57383,8 @@ html.FileEntry = class FileEntry extends html.Entry {
|
| }, FileErrorTovoid()));
|
| return completer.future;
|
| }
|
| - [_file](successCallback, errorCallback) {
|
| - return this.file(successCallback, errorCallback);
|
| + [_file](...args) {
|
| + return this.file.apply(this, args);
|
| }
|
| [dartx.file]() {
|
| let completer = CompleterOfFile().new();
|
| @@ -57501,8 +57501,8 @@ html.FileList = class FileList extends dart.mixin(_interceptors.Interceptor, col
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html.FileList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfFile()];
|
| @@ -57561,17 +57561,17 @@ html.FileReader = class FileReader extends html.EventTarget {
|
| get [dartx.readyState]() {
|
| return this.readyState;
|
| }
|
| - [dartx.abort]() {
|
| - return this.abort();
|
| + [dartx.abort](...args) {
|
| + return this.abort.apply(this, args);
|
| }
|
| - [dartx.readAsArrayBuffer](blob) {
|
| - return this.readAsArrayBuffer(blob);
|
| + [dartx.readAsArrayBuffer](...args) {
|
| + return this.readAsArrayBuffer.apply(this, args);
|
| }
|
| - [dartx.readAsDataUrl](blob) {
|
| - return this.readAsDataURL(blob);
|
| + [dartx.readAsDataUrl](...args) {
|
| + return this.readAsDataURL.apply(this, args);
|
| }
|
| - [dartx.readAsText](blob, label) {
|
| - return this.readAsText(blob, label);
|
| + [dartx.readAsText](...args) {
|
| + return this.readAsText.apply(this, args);
|
| }
|
| get [dartx.onAbort]() {
|
| return html.FileReader.abortEvent.forTarget(this);
|
| @@ -57730,17 +57730,17 @@ html.FileWriter = class FileWriter extends html.EventTarget {
|
| get [dartx.readyState]() {
|
| return this.readyState;
|
| }
|
| - [dartx.abort]() {
|
| - return this.abort();
|
| + [dartx.abort](...args) {
|
| + return this.abort.apply(this, args);
|
| }
|
| - [dartx.seek](position) {
|
| - return this.seek(position);
|
| + [dartx.seek](...args) {
|
| + return this.seek.apply(this, args);
|
| }
|
| - [dartx.truncate](size) {
|
| - return this.truncate(size);
|
| + [dartx.truncate](...args) {
|
| + return this.truncate.apply(this, args);
|
| }
|
| - [dartx.write](data) {
|
| - return this.write(data);
|
| + [dartx.write](...args) {
|
| + return this.write.apply(this, args);
|
| }
|
| get [dartx.onAbort]() {
|
| return html.FileWriter.abortEvent.forTarget(this);
|
| @@ -57941,8 +57941,8 @@ html.FontFace = class FontFace extends _interceptors.Interceptor {
|
| set [dartx.weight](value) {
|
| this.weight = value;
|
| }
|
| - [dartx.load]() {
|
| - return this.load();
|
| + [dartx.load](...args) {
|
| + return this.load.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.FontFace, {
|
| @@ -57989,23 +57989,23 @@ html.FontFaceSet = class FontFaceSet extends html.EventTarget {
|
| get [dartx.status]() {
|
| return this.status;
|
| }
|
| - [dartx.add](fontFace) {
|
| - return this.add(fontFace);
|
| + [dartx.add](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| - [dartx.check](font, text) {
|
| - return this.check(font, text);
|
| + [dartx.check](...args) {
|
| + return this.check.apply(this, args);
|
| }
|
| - [dartx.clear]() {
|
| - return this.clear();
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.delete](fontFace) {
|
| - return this.delete(fontFace);
|
| + [dartx.delete](...args) {
|
| + return this.delete.apply(this, args);
|
| }
|
| - [dartx.forEach](callback, thisArg) {
|
| - return this.forEach(callback, thisArg);
|
| + [dartx.forEach](...args) {
|
| + return this.forEach.apply(this, args);
|
| }
|
| - [dartx.has](fontFace) {
|
| - return this.has(fontFace);
|
| + [dartx.has](...args) {
|
| + return this.has.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.FontFaceSet, {
|
| @@ -58070,26 +58070,26 @@ html.FormData = class FormData extends _interceptors.Interceptor {
|
| static get supported() {
|
| return !!window.FormData;
|
| }
|
| - [dartx.append](name, value) {
|
| - return this.append(name, value);
|
| + [dartx.append](...args) {
|
| + return this.append.apply(this, args);
|
| }
|
| - [dartx.appendBlob](name, value, filename) {
|
| - return this.append(name, value, filename);
|
| + [dartx.appendBlob](...args) {
|
| + return this.append.apply(this, args);
|
| }
|
| - [dartx.delete](name) {
|
| - return this.delete(name);
|
| + [dartx.delete](...args) {
|
| + return this.delete.apply(this, args);
|
| }
|
| - [dartx.get](name) {
|
| - return this.get(name);
|
| + [dartx.get](...args) {
|
| + return this.get.apply(this, args);
|
| }
|
| - [dartx.getAll](name) {
|
| - return this.getAll(name);
|
| + [dartx.getAll](...args) {
|
| + return this.getAll.apply(this, args);
|
| }
|
| - [dartx.has](name) {
|
| - return this.has(name);
|
| + [dartx.has](...args) {
|
| + return this.has.apply(this, args);
|
| }
|
| - [dartx.set](name, value, filename) {
|
| - return this.set(name, value, filename);
|
| + [dartx.set](...args) {
|
| + return this.set.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.FormData, {
|
| @@ -58210,31 +58210,31 @@ html.FormElement = class FormElement extends html.HtmlElement {
|
| set [dartx.target](value) {
|
| this.target = value;
|
| }
|
| - [__getter__](name) {
|
| - return this.__getter__(name);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| [dartx.requestAutocomplete](details) {
|
| let details_1 = html_common.convertDartToNative_Dictionary(details);
|
| this[_requestAutocomplete_1](details_1);
|
| return;
|
| }
|
| - [_requestAutocomplete_1](details) {
|
| - return this.requestAutocomplete(details);
|
| + [_requestAutocomplete_1](...args) {
|
| + return this.requestAutocomplete.apply(this, args);
|
| }
|
| - [dartx.reset]() {
|
| - return this.reset();
|
| + [dartx.reset](...args) {
|
| + return this.reset.apply(this, args);
|
| }
|
| - [dartx.submit]() {
|
| - return this.submit();
|
| + [dartx.submit](...args) {
|
| + return this.submit.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.FormElement, 'created');
|
| @@ -58387,14 +58387,14 @@ html.Geofencing = class Geofencing extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.getRegisteredRegions]() {
|
| - return this.getRegisteredRegions();
|
| + [dartx.getRegisteredRegions](...args) {
|
| + return this.getRegisteredRegions.apply(this, args);
|
| }
|
| - [dartx.registerRegion](region) {
|
| - return this.registerRegion(region);
|
| + [dartx.registerRegion](...args) {
|
| + return this.registerRegion.apply(this, args);
|
| }
|
| - [dartx.unregisterRegion](regionId) {
|
| - return this.unregisterRegion(regionId);
|
| + [dartx.unregisterRegion](...args) {
|
| + return this.unregisterRegion.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Geofencing, {
|
| @@ -58514,8 +58514,8 @@ html.Geolocation = class Geolocation extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [_clearWatch](watchID) {
|
| - return this.clearWatch(watchID);
|
| + [_clearWatch](...args) {
|
| + return this.clearWatch.apply(this, args);
|
| }
|
| [_getCurrentPosition](successCallback, errorCallback, options) {
|
| if (errorCallback === void 0) errorCallback = null;
|
| @@ -58532,14 +58532,14 @@ html.Geolocation = class Geolocation extends _interceptors.Interceptor {
|
| this[_getCurrentPosition_3](successCallback);
|
| return;
|
| }
|
| - [_getCurrentPosition_1](successCallback, errorCallback, options) {
|
| - return this.getCurrentPosition(successCallback, errorCallback, options);
|
| + [_getCurrentPosition_1](...args) {
|
| + return this.getCurrentPosition.apply(this, args);
|
| }
|
| - [_getCurrentPosition_2](successCallback, errorCallback) {
|
| - return this.getCurrentPosition(successCallback, errorCallback);
|
| + [_getCurrentPosition_2](...args) {
|
| + return this.getCurrentPosition.apply(this, args);
|
| }
|
| - [_getCurrentPosition_3](successCallback) {
|
| - return this.getCurrentPosition(successCallback);
|
| + [_getCurrentPosition_3](...args) {
|
| + return this.getCurrentPosition.apply(this, args);
|
| }
|
| [_watchPosition](successCallback, errorCallback, options) {
|
| if (errorCallback === void 0) errorCallback = null;
|
| @@ -58553,14 +58553,14 @@ html.Geolocation = class Geolocation extends _interceptors.Interceptor {
|
| }
|
| return this[_watchPosition_3](successCallback);
|
| }
|
| - [_watchPosition_1](successCallback, errorCallback, options) {
|
| - return this.watchPosition(successCallback, errorCallback, options);
|
| + [_watchPosition_1](...args) {
|
| + return this.watchPosition.apply(this, args);
|
| }
|
| - [_watchPosition_2](successCallback, errorCallback) {
|
| - return this.watchPosition(successCallback, errorCallback);
|
| + [_watchPosition_2](...args) {
|
| + return this.watchPosition.apply(this, args);
|
| }
|
| - [_watchPosition_3](successCallback) {
|
| - return this.watchPosition(successCallback);
|
| + [_watchPosition_3](...args) {
|
| + return this.watchPosition.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Geolocation, {
|
| @@ -59231,8 +59231,8 @@ html.HashChangeEvent = class HashChangeEvent extends html.Event {
|
| get [dartx.oldUrl]() {
|
| return this.oldURL;
|
| }
|
| - [_initHashChangeEvent](type, canBubble, cancelable, oldURL, newURL) {
|
| - return this.initHashChangeEvent(type, canBubble, cancelable, oldURL, newURL);
|
| + [_initHashChangeEvent](...args) {
|
| + return this.initHashChangeEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.HashChangeEvent, {
|
| @@ -59399,14 +59399,14 @@ html.History = class History extends _interceptors.Interceptor {
|
| get [_get_state]() {
|
| return this.state;
|
| }
|
| - [dartx.back]() {
|
| - return this.back();
|
| + [dartx.back](...args) {
|
| + return this.back.apply(this, args);
|
| }
|
| - [dartx.forward]() {
|
| - return this.forward();
|
| + [dartx.forward](...args) {
|
| + return this.forward.apply(this, args);
|
| }
|
| - [dartx.go](delta) {
|
| - return this.go(delta);
|
| + [dartx.go](...args) {
|
| + return this.go.apply(this, args);
|
| }
|
| [dartx.pushState](data, title, url, options) {
|
| if (options === void 0) options = null;
|
| @@ -59420,11 +59420,11 @@ html.History = class History extends _interceptors.Interceptor {
|
| this[_pushState_2](data_1, title, url);
|
| return;
|
| }
|
| - [_pushState_1](data, title, url, options) {
|
| - return this.pushState(data, title, url, options);
|
| + [_pushState_1](...args) {
|
| + return this.pushState.apply(this, args);
|
| }
|
| - [_pushState_2](data, title, url) {
|
| - return this.pushState(data, title, url);
|
| + [_pushState_2](...args) {
|
| + return this.pushState.apply(this, args);
|
| }
|
| [dartx.replaceState](data, title, url, options) {
|
| if (options === void 0) options = null;
|
| @@ -59438,11 +59438,11 @@ html.History = class History extends _interceptors.Interceptor {
|
| this[_replaceState_2](data_1, title, url);
|
| return;
|
| }
|
| - [_replaceState_1](data, title, url, options) {
|
| - return this.replaceState(data, title, url, options);
|
| + [_replaceState_1](...args) {
|
| + return this.replaceState.apply(this, args);
|
| }
|
| - [_replaceState_2](data, title, url) {
|
| - return this.replaceState(data, title, url);
|
| + [_replaceState_2](...args) {
|
| + return this.replaceState.apply(this, args);
|
| }
|
| };
|
| html.History[dart.implements] = () => [html.HistoryBase];
|
| @@ -59507,11 +59507,11 @@ html.HmdvrDevice = class HmdvrDevice extends html.VRDevice {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.getEyeParameters](whichEye) {
|
| - return this.getEyeParameters(whichEye);
|
| + [dartx.getEyeParameters](...args) {
|
| + return this.getEyeParameters.apply(this, args);
|
| }
|
| - [dartx.setFieldOfView](leftFov, rightFov) {
|
| - return this.setFieldOfView(leftFov, rightFov);
|
| + [dartx.setFieldOfView](...args) {
|
| + return this.setFieldOfView.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.HmdvrDevice, {
|
| @@ -59576,11 +59576,11 @@ html.HtmlCollection = class HtmlCollection extends dart.mixin(_interceptors.Inte
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.namedItem](name) {
|
| - return this.namedItem(name);
|
| + [dartx.namedItem](...args) {
|
| + return this.namedItem.apply(this, args);
|
| }
|
| };
|
| html.HtmlCollection[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfNode()];
|
| @@ -59746,11 +59746,11 @@ html.HtmlFormControlsCollection = class HtmlFormControlsCollection extends html.
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.namedItem](name) {
|
| - return this.namedItem(name);
|
| + [dartx.namedItem](...args) {
|
| + return this.namedItem.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.HtmlFormControlsCollection, {
|
| @@ -59782,8 +59782,8 @@ html.HtmlOptionsCollection = class HtmlOptionsCollection extends html.HtmlCollec
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [_item](index) {
|
| - return this.item(index);
|
| + [_item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.HtmlOptionsCollection, {
|
| @@ -60036,8 +60036,8 @@ html.HttpRequest = class HttpRequest extends html.HttpRequestEventTarget {
|
| }
|
| return headers;
|
| }
|
| - [dartx.open](method, url, opts) {
|
| - return this.open(method, url, opts);
|
| + [dartx.open](...args) {
|
| + return this.open.apply(this, args);
|
| }
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| @@ -60093,23 +60093,23 @@ html.HttpRequest = class HttpRequest extends html.HttpRequestEventTarget {
|
| set [dartx.withCredentials](value) {
|
| this.withCredentials = value;
|
| }
|
| - [dartx.abort]() {
|
| - return this.abort();
|
| + [dartx.abort](...args) {
|
| + return this.abort.apply(this, args);
|
| }
|
| - [dartx.getAllResponseHeaders]() {
|
| - return this.getAllResponseHeaders();
|
| + [dartx.getAllResponseHeaders](...args) {
|
| + return this.getAllResponseHeaders.apply(this, args);
|
| }
|
| - [dartx.getResponseHeader](name) {
|
| - return this.getResponseHeader(name);
|
| + [dartx.getResponseHeader](...args) {
|
| + return this.getResponseHeader.apply(this, args);
|
| }
|
| - [dartx.overrideMimeType](mime) {
|
| - return this.overrideMimeType(mime);
|
| + [dartx.overrideMimeType](...args) {
|
| + return this.overrideMimeType.apply(this, args);
|
| }
|
| - [dartx.send](body_OR_data) {
|
| - return this.send(body_OR_data);
|
| + [dartx.send](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.setRequestHeader](name, value) {
|
| - return this.setRequestHeader(name, value);
|
| + [dartx.setRequestHeader](...args) {
|
| + return this.setRequestHeader.apply(this, args);
|
| }
|
| get [dartx.onReadyStateChange]() {
|
| return html.HttpRequest.readyStateChangeEvent.forTarget(this);
|
| @@ -60511,8 +60511,8 @@ html.InjectedScriptHost = class InjectedScriptHost extends _interceptors.Interce
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.inspect](objectId, hints) {
|
| - return this.inspect(objectId, hints);
|
| + [dartx.inspect](...args) {
|
| + return this.inspect.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.InjectedScriptHost, {
|
| @@ -60975,29 +60975,29 @@ html.InputElement = class InputElement extends html.HtmlElement {
|
| get [dartx.willValidate]() {
|
| return this.willValidate;
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| - [dartx.select]() {
|
| - return this.select();
|
| + [dartx.select](...args) {
|
| + return this.select.apply(this, args);
|
| }
|
| - [dartx.setCustomValidity](error) {
|
| - return this.setCustomValidity(error);
|
| + [dartx.setCustomValidity](...args) {
|
| + return this.setCustomValidity.apply(this, args);
|
| }
|
| - [dartx.setRangeText](replacement, opts) {
|
| - return this.setRangeText(replacement, opts);
|
| + [dartx.setRangeText](...args) {
|
| + return this.setRangeText.apply(this, args);
|
| }
|
| - [dartx.setSelectionRange](start, end, direction) {
|
| - return this.setSelectionRange(start, end, direction);
|
| + [dartx.setSelectionRange](...args) {
|
| + return this.setSelectionRange.apply(this, args);
|
| }
|
| - [dartx.stepDown](n) {
|
| - return this.stepDown(n);
|
| + [dartx.stepDown](...args) {
|
| + return this.stepDown.apply(this, args);
|
| }
|
| - [dartx.stepUp](n) {
|
| - return this.stepUp(n);
|
| + [dartx.stepUp](...args) {
|
| + return this.stepUp.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.InputElement, 'created');
|
| @@ -62292,8 +62292,8 @@ html.KeyboardEvent = class KeyboardEvent extends html.UIEvent {
|
| get [dartx.shiftKey]() {
|
| return this.shiftKey;
|
| }
|
| - [dartx.getModifierState](keyArg) {
|
| - return this.getModifierState(keyArg);
|
| + [dartx.getModifierState](...args) {
|
| + return this.getModifierState.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.KeyboardEvent, {
|
| @@ -62468,14 +62468,14 @@ html.KeygenElement = class KeygenElement extends html.HtmlElement {
|
| get [dartx.willValidate]() {
|
| return this.willValidate;
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| - [dartx.setCustomValidity](error) {
|
| - return this.setCustomValidity(error);
|
| + [dartx.setCustomValidity](...args) {
|
| + return this.setCustomValidity.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.KeygenElement, 'created');
|
| @@ -62800,14 +62800,14 @@ html.Location = class Location extends _interceptors.Interceptor {
|
| set [dartx.search](value) {
|
| this.search = value;
|
| }
|
| - [dartx.assign](url) {
|
| - return this.assign(url);
|
| + [dartx.assign](...args) {
|
| + return this.assign.apply(this, args);
|
| }
|
| - [dartx.reload]() {
|
| - return this.reload();
|
| + [dartx.reload](...args) {
|
| + return this.reload.apply(this, args);
|
| }
|
| - [dartx.replace](url) {
|
| - return this.replace(url);
|
| + [dartx.replace](...args) {
|
| + return this.replace.apply(this, args);
|
| }
|
| get [dartx.origin]() {
|
| if ("origin" in this) {
|
| @@ -62954,14 +62954,14 @@ html.MediaController = class MediaController extends html.EventTarget {
|
| set [dartx.volume](value) {
|
| this.volume = value;
|
| }
|
| - [dartx.pause]() {
|
| - return this.pause();
|
| + [dartx.pause](...args) {
|
| + return this.pause.apply(this, args);
|
| }
|
| - [dartx.play]() {
|
| - return this.play();
|
| + [dartx.play](...args) {
|
| + return this.play.apply(this, args);
|
| }
|
| - [dartx.unpause]() {
|
| - return this.unpause();
|
| + [dartx.unpause](...args) {
|
| + return this.unpause.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MediaController, {
|
| @@ -63033,15 +63033,15 @@ html.MediaDevices = class MediaDevices extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.enumerateDevices]() {
|
| - return this.enumerateDevices();
|
| + [dartx.enumerateDevices](...args) {
|
| + return this.enumerateDevices.apply(this, args);
|
| }
|
| [dartx.getUserMedia](options) {
|
| let options_1 = html_common.convertDartToNative_Dictionary(options);
|
| return this[_getUserMedia_1](options_1);
|
| }
|
| - [_getUserMedia_1](options) {
|
| - return this.getUserMedia(options);
|
| + [_getUserMedia_1](...args) {
|
| + return this.getUserMedia.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MediaDevices, {
|
| @@ -63303,20 +63303,20 @@ html.MediaKeySession = class MediaKeySession extends html.EventTarget {
|
| get [dartx.sessionId]() {
|
| return this.sessionId;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| - [dartx.generateRequest](initDataType, initData) {
|
| - return this.generateRequest(initDataType, initData);
|
| + [dartx.generateRequest](...args) {
|
| + return this.generateRequest.apply(this, args);
|
| }
|
| - [dartx.load](sessionId) {
|
| - return this.load(sessionId);
|
| + [dartx.load](...args) {
|
| + return this.load.apply(this, args);
|
| }
|
| - [dartx.remove]() {
|
| - return this.remove();
|
| + [dartx.remove](...args) {
|
| + return this.remove.apply(this, args);
|
| }
|
| - [_update](response) {
|
| - return this.update(response);
|
| + [_update](...args) {
|
| + return this.update.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MediaKeySession, {
|
| @@ -63365,14 +63365,14 @@ html.MediaKeySystemAccess = class MediaKeySystemAccess extends _interceptors.Int
|
| get [dartx.keySystem]() {
|
| return this.keySystem;
|
| }
|
| - [dartx.createMediaKeys]() {
|
| - return this.createMediaKeys();
|
| + [dartx.createMediaKeys](...args) {
|
| + return this.createMediaKeys.apply(this, args);
|
| }
|
| [dartx.getConfiguration]() {
|
| return html_common.convertNativeToDart_Dictionary(this[_getConfiguration_1]());
|
| }
|
| - [_getConfiguration_1]() {
|
| - return this.getConfiguration();
|
| + [_getConfiguration_1](...args) {
|
| + return this.getConfiguration.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MediaKeySystemAccess, {
|
| @@ -63393,11 +63393,11 @@ html.MediaKeys = class MediaKeys extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [_createSession](sessionType) {
|
| - return this.createSession(sessionType);
|
| + [_createSession](...args) {
|
| + return this.createSession.apply(this, args);
|
| }
|
| - [dartx.setServerCertificate](serverCertificate) {
|
| - return this.setServerCertificate(serverCertificate);
|
| + [dartx.setServerCertificate](...args) {
|
| + return this.setServerCertificate.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MediaKeys, {
|
| @@ -63428,14 +63428,14 @@ html.MediaList = class MediaList extends _interceptors.Interceptor {
|
| set [dartx.mediaText](value) {
|
| this.mediaText = value;
|
| }
|
| - [dartx.appendMedium](medium) {
|
| - return this.appendMedium(medium);
|
| + [dartx.appendMedium](...args) {
|
| + return this.appendMedium.apply(this, args);
|
| }
|
| - [dartx.deleteMedium](medium) {
|
| - return this.deleteMedium(medium);
|
| + [dartx.deleteMedium](...args) {
|
| + return this.deleteMedium.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MediaList, {
|
| @@ -63468,11 +63468,11 @@ html.MediaQueryList = class MediaQueryList extends html.EventTarget {
|
| get [dartx.media]() {
|
| return this.media;
|
| }
|
| - [dartx.addListener](listener) {
|
| - return this.addListener(listener);
|
| + [dartx.addListener](...args) {
|
| + return this.addListener.apply(this, args);
|
| }
|
| - [dartx.removeListener](listener) {
|
| - return this.removeListener(listener);
|
| + [dartx.removeListener](...args) {
|
| + return this.removeListener.apply(this, args);
|
| }
|
| get [dartx.onChange]() {
|
| return html.MediaQueryList.changeEvent.forTarget(this);
|
| @@ -63556,11 +63556,11 @@ html.MediaSession = class MediaSession extends _interceptors.Interceptor {
|
| static _create_1() {
|
| return new MediaSession();
|
| }
|
| - [dartx.activate]() {
|
| - return this.activate();
|
| + [dartx.activate](...args) {
|
| + return this.activate.apply(this, args);
|
| }
|
| - [dartx.deactivate]() {
|
| - return this.deactivate();
|
| + [dartx.deactivate](...args) {
|
| + return this.deactivate.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MediaSession, {
|
| @@ -63613,14 +63613,14 @@ html.MediaSource = class MediaSource extends html.EventTarget {
|
| get [dartx.sourceBuffers]() {
|
| return this.sourceBuffers;
|
| }
|
| - [dartx.addSourceBuffer](type) {
|
| - return this.addSourceBuffer(type);
|
| + [dartx.addSourceBuffer](...args) {
|
| + return this.addSourceBuffer.apply(this, args);
|
| }
|
| - [dartx.endOfStream](error) {
|
| - return this.endOfStream(error);
|
| + [dartx.endOfStream](...args) {
|
| + return this.endOfStream.apply(this, args);
|
| }
|
| - [dartx.removeSourceBuffer](buffer) {
|
| - return this.removeSourceBuffer(buffer);
|
| + [dartx.removeSourceBuffer](...args) {
|
| + return this.removeSourceBuffer.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MediaSource, {
|
| @@ -63702,29 +63702,29 @@ html.MediaStream = class MediaStream extends html.EventTarget {
|
| get [dartx.label]() {
|
| return this.label;
|
| }
|
| - [dartx.addTrack](track) {
|
| - return this.addTrack(track);
|
| + [dartx.addTrack](...args) {
|
| + return this.addTrack.apply(this, args);
|
| }
|
| - [dartx.clone]() {
|
| - return this.clone();
|
| + [dartx.clone](...args) {
|
| + return this.clone.apply(this, args);
|
| }
|
| - [dartx.getAudioTracks]() {
|
| - return this.getAudioTracks();
|
| + [dartx.getAudioTracks](...args) {
|
| + return this.getAudioTracks.apply(this, args);
|
| }
|
| - [dartx.getTrackById](trackId) {
|
| - return this.getTrackById(trackId);
|
| + [dartx.getTrackById](...args) {
|
| + return this.getTrackById.apply(this, args);
|
| }
|
| - [dartx.getTracks]() {
|
| - return this.getTracks();
|
| + [dartx.getTracks](...args) {
|
| + return this.getTracks.apply(this, args);
|
| }
|
| - [dartx.getVideoTracks]() {
|
| - return this.getVideoTracks();
|
| + [dartx.getVideoTracks](...args) {
|
| + return this.getVideoTracks.apply(this, args);
|
| }
|
| - [dartx.removeTrack](track) {
|
| - return this.removeTrack(track);
|
| + [dartx.removeTrack](...args) {
|
| + return this.removeTrack.apply(this, args);
|
| }
|
| - [dartx.stop]() {
|
| - return this.stop();
|
| + [dartx.stop](...args) {
|
| + return this.stop.apply(this, args);
|
| }
|
| get [dartx.onAddTrack]() {
|
| return html.MediaStream.addTrackEvent.forTarget(this);
|
| @@ -63870,8 +63870,8 @@ html.MediaStreamTrack = class MediaStreamTrack extends html.EventTarget {
|
| get [dartx.readyState]() {
|
| return this.readyState;
|
| }
|
| - [dartx.clone]() {
|
| - return this.clone();
|
| + [dartx.clone](...args) {
|
| + return this.clone.apply(this, args);
|
| }
|
| static getSources() {
|
| let completer = CompleterOfListOfSourceInfo().new();
|
| @@ -63880,8 +63880,8 @@ html.MediaStreamTrack = class MediaStreamTrack extends html.EventTarget {
|
| }, ListOfSourceInfoTovoid()));
|
| return completer.future;
|
| }
|
| - [dartx.stop]() {
|
| - return this.stop();
|
| + [dartx.stop](...args) {
|
| + return this.stop.apply(this, args);
|
| }
|
| get [dartx.onEnded]() {
|
| return html.MediaStreamTrack.endedEvent.forTarget(this);
|
| @@ -64192,8 +64192,8 @@ html.MessageEvent = class MessageEvent extends html.Event {
|
| get [_get_source]() {
|
| return this.source;
|
| }
|
| - [_initMessageEvent](typeArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sourceArg, portsArg) {
|
| - return this.initMessageEvent(typeArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sourceArg, portsArg);
|
| + [_initMessageEvent](...args) {
|
| + return this.initMessageEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MessageEvent, {
|
| @@ -64229,8 +64229,8 @@ html.MessagePort = class MessagePort extends html.EventTarget {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| [dartx.postMessage](message, transfer) {
|
| if (transfer === void 0) transfer = null;
|
| @@ -64243,14 +64243,14 @@ html.MessagePort = class MessagePort extends html.EventTarget {
|
| this[_postMessage_2](message_1);
|
| return;
|
| }
|
| - [_postMessage_1](message, transfer) {
|
| - return this.postMessage(message, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message) {
|
| - return this.postMessage(message);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [dartx.start]() {
|
| - return this.start();
|
| + [dartx.start](...args) {
|
| + return this.start.apply(this, args);
|
| }
|
| get [dartx.onMessage]() {
|
| return html.MessagePort.messageEvent.forTarget(this);
|
| @@ -64544,11 +64544,11 @@ html.MidiPort = class MidiPort extends html.EventTarget {
|
| get [dartx.version]() {
|
| return this.version;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| - [dartx.open]() {
|
| - return this.open();
|
| + [dartx.open](...args) {
|
| + return this.open.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MidiPort, {
|
| @@ -64658,8 +64658,8 @@ html.MidiOutput = class MidiOutput extends html.MidiPort {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.send](data, timestamp) {
|
| - return this.send(data, timestamp);
|
| + [dartx.send](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.MidiOutput, {
|
| @@ -64770,11 +64770,11 @@ html.MimeTypeArray = class MimeTypeArray extends dart.mixin(_interceptors.Interc
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.namedItem](name) {
|
| - return this.namedItem(name);
|
| + [dartx.namedItem](...args) {
|
| + return this.namedItem.apply(this, args);
|
| }
|
| };
|
| html.MimeTypeArray[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfMimeType()];
|
| @@ -64981,8 +64981,8 @@ html.MouseEvent = class MouseEvent extends html.UIEvent {
|
| this[_initMouseEvent_1](type, bubbles, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget_1);
|
| return;
|
| }
|
| - [_initMouseEvent_1](type, bubbles, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget) {
|
| - return this.initMouseEvent(type, bubbles, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget);
|
| + [_initMouseEvent_1](...args) {
|
| + return this.initMouseEvent.apply(this, args);
|
| }
|
| get [dartx.client]() {
|
| return new (PointOfnum())(this[_clientX], this[_clientY]);
|
| @@ -65075,19 +65075,19 @@ dart.defineExtensionNames([
|
| 'observe'
|
| ]);
|
| html.MutationObserver = class MutationObserver extends _interceptors.Interceptor {
|
| - [dartx.disconnect]() {
|
| - return this.disconnect();
|
| + [dartx.disconnect](...args) {
|
| + return this.disconnect.apply(this, args);
|
| }
|
| [_observe](target, options) {
|
| let options_1 = html_common.convertDartToNative_Dictionary(options);
|
| this[_observe_1](target, options_1);
|
| return;
|
| }
|
| - [_observe_1](target, options) {
|
| - return this.observe(target, options);
|
| + [_observe_1](...args) {
|
| + return this.observe.apply(this, args);
|
| }
|
| - [dartx.takeRecords]() {
|
| - return this.takeRecords();
|
| + [dartx.takeRecords](...args) {
|
| + return this.takeRecords.apply(this, args);
|
| }
|
| static get supported() {
|
| return !!(window.MutationObserver || window.WebKitMutationObserver);
|
| @@ -65125,8 +65125,8 @@ html.MutationObserver = class MutationObserver extends _interceptors.Interceptor
|
| static _fixupList(list) {
|
| return list;
|
| }
|
| - [_call](target, options) {
|
| - return this.observe(target, options);
|
| + [_call](...args) {
|
| + return this.observe.apply(this, args);
|
| }
|
| static new(callback) {
|
| 0;
|
| @@ -65280,8 +65280,8 @@ html.Navigator = class Navigator extends _interceptors.Interceptor {
|
| this.getUserMedia = this.getUserMedia || this.webkitGetUserMedia || this.mozGetUserMedia || this.msGetUserMedia;
|
| }
|
| }
|
| - [_getUserMedia](options, success, error) {
|
| - return this.getUserMedia(options, success, error);
|
| + [_getUserMedia](...args) {
|
| + return this.getUserMedia.apply(this, args);
|
| }
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| @@ -65340,17 +65340,17 @@ html.Navigator = class Navigator extends _interceptors.Interceptor {
|
| get [dartx.temporaryStorage]() {
|
| return this.webkitTemporaryStorage;
|
| }
|
| - [dartx.getBattery]() {
|
| - return this.getBattery();
|
| + [dartx.getBattery](...args) {
|
| + return this.getBattery.apply(this, args);
|
| }
|
| - [dartx.getGamepads]() {
|
| - return this.getGamepads();
|
| + [dartx.getGamepads](...args) {
|
| + return this.getGamepads.apply(this, args);
|
| }
|
| - [dartx.getVRDevices]() {
|
| - return this.getVRDevices();
|
| + [dartx.getVRDevices](...args) {
|
| + return this.getVRDevices.apply(this, args);
|
| }
|
| - [dartx.registerProtocolHandler](scheme, url, title) {
|
| - return this.registerProtocolHandler(scheme, url, title);
|
| + [dartx.registerProtocolHandler](...args) {
|
| + return this.registerProtocolHandler.apply(this, args);
|
| }
|
| [dartx.requestMidiAccess](options) {
|
| if (options === void 0) options = null;
|
| @@ -65360,17 +65360,17 @@ html.Navigator = class Navigator extends _interceptors.Interceptor {
|
| }
|
| return this[_requestMidiAccess_2]();
|
| }
|
| - [_requestMidiAccess_1](options) {
|
| - return this.requestMIDIAccess(options);
|
| + [_requestMidiAccess_1](...args) {
|
| + return this.requestMIDIAccess.apply(this, args);
|
| }
|
| - [_requestMidiAccess_2]() {
|
| - return this.requestMIDIAccess();
|
| + [_requestMidiAccess_2](...args) {
|
| + return this.requestMIDIAccess.apply(this, args);
|
| }
|
| - [dartx.requestMediaKeySystemAccess](keySystem, supportedConfigurations) {
|
| - return this.requestMediaKeySystemAccess(keySystem, supportedConfigurations);
|
| + [dartx.requestMediaKeySystemAccess](...args) {
|
| + return this.requestMediaKeySystemAccess.apply(this, args);
|
| }
|
| - [dartx.sendBeacon](url, data) {
|
| - return this.sendBeacon(url, data);
|
| + [dartx.sendBeacon](...args) {
|
| + return this.sendBeacon.apply(this, args);
|
| }
|
| get [dartx.hardwareConcurrency]() {
|
| return this.hardwareConcurrency;
|
| @@ -65405,8 +65405,8 @@ html.Navigator = class Navigator extends _interceptors.Interceptor {
|
| get [dartx.cookieEnabled]() {
|
| return this.cookieEnabled;
|
| }
|
| - [dartx.getStorageUpdates]() {
|
| - return this.getStorageUpdates();
|
| + [dartx.getStorageUpdates](...args) {
|
| + return this.getStorageUpdates.apply(this, args);
|
| }
|
| };
|
| html.Navigator[dart.implements] = () => [html.NavigatorStorageUtils, html.NavigatorCpu, html.NavigatorLanguage, html.NavigatorOnLine, html.NavigatorID];
|
| @@ -65627,8 +65627,8 @@ html.NavigatorStorageUtils = class NavigatorStorageUtils extends _interceptors.I
|
| get [dartx.cookieEnabled]() {
|
| return this.cookieEnabled;
|
| }
|
| - [dartx.getStorageUpdates]() {
|
| - return this.getStorageUpdates();
|
| + [dartx.getStorageUpdates](...args) {
|
| + return this.getStorageUpdates.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.NavigatorStorageUtils, {
|
| @@ -65935,14 +65935,14 @@ html.NodeIterator = class NodeIterator extends _interceptors.Interceptor {
|
| get [dartx.whatToShow]() {
|
| return this.whatToShow;
|
| }
|
| - [dartx.detach]() {
|
| - return this.detach();
|
| + [dartx.detach](...args) {
|
| + return this.detach.apply(this, args);
|
| }
|
| - [dartx.nextNode]() {
|
| - return this.nextNode();
|
| + [dartx.nextNode](...args) {
|
| + return this.nextNode.apply(this, args);
|
| }
|
| - [dartx.previousNode]() {
|
| - return this.previousNode();
|
| + [dartx.previousNode](...args) {
|
| + return this.previousNode.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.NodeIterator, {
|
| @@ -66015,8 +66015,8 @@ html.NodeList = class NodeList extends dart.mixin(_interceptors.Interceptor, col
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [_item](index) {
|
| - return this.item(index);
|
| + [_item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html.NodeList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfNode()];
|
| @@ -66068,8 +66068,8 @@ html.NonElementParentNode = class NonElementParentNode extends _interceptors.Int
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.getElementById](elementId) {
|
| - return this.getElementById(elementId);
|
| + [dartx.getElementById](...args) {
|
| + return this.getElementById.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.NonElementParentNode, {
|
| @@ -66159,8 +66159,8 @@ html.Notification = class Notification extends html.EventTarget {
|
| get [dartx.vibrate]() {
|
| return this.vibrate;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| static requestPermission() {
|
| let completer = CompleterOfString().new();
|
| @@ -66413,20 +66413,20 @@ html.ObjectElement = class ObjectElement extends html.HtmlElement {
|
| get [dartx.willValidate]() {
|
| return this.willValidate;
|
| }
|
| - [__getter__](index_OR_name) {
|
| - return this.__getter__(index_OR_name);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [__setter__](index_OR_name, value) {
|
| - return this.__setter__(index_OR_name, value);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| - [dartx.setCustomValidity](error) {
|
| - return this.setCustomValidity(error);
|
| + [dartx.setCustomValidity](...args) {
|
| + return this.setCustomValidity.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.ObjectElement, 'created');
|
| @@ -66700,14 +66700,14 @@ html.OutputElement = class OutputElement extends html.HtmlElement {
|
| get [dartx.willValidate]() {
|
| return this.willValidate;
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| - [dartx.setCustomValidity](error) {
|
| - return this.setCustomValidity(error);
|
| + [dartx.setCustomValidity](...args) {
|
| + return this.setCustomValidity.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.OutputElement, 'created');
|
| @@ -66941,35 +66941,35 @@ html.Path2D = class Path2D extends _interceptors.Interceptor {
|
| static _create_3(path_OR_text) {
|
| return new Path2D(path_OR_text);
|
| }
|
| - [dartx.addPath](path, transform) {
|
| - return this.addPath(path, transform);
|
| + [dartx.addPath](...args) {
|
| + return this.addPath.apply(this, args);
|
| }
|
| - [dartx.arc](x, y, radius, startAngle, endAngle, anticlockwise) {
|
| - return this.arc(x, y, radius, startAngle, endAngle, anticlockwise);
|
| + [dartx.arc](...args) {
|
| + return this.arc.apply(this, args);
|
| }
|
| - [dartx.arcTo](x1, y1, x2, y2, radius) {
|
| - return this.arcTo(x1, y1, x2, y2, radius);
|
| + [dartx.arcTo](...args) {
|
| + return this.arcTo.apply(this, args);
|
| }
|
| - [dartx.bezierCurveTo](cp1x, cp1y, cp2x, cp2y, x, y) {
|
| - return this.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y);
|
| + [dartx.bezierCurveTo](...args) {
|
| + return this.bezierCurveTo.apply(this, args);
|
| }
|
| - [dartx.closePath]() {
|
| - return this.closePath();
|
| + [dartx.closePath](...args) {
|
| + return this.closePath.apply(this, args);
|
| }
|
| - [dartx.ellipse](x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise) {
|
| - return this.ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, anticlockwise);
|
| + [dartx.ellipse](...args) {
|
| + return this.ellipse.apply(this, args);
|
| }
|
| - [dartx.lineTo](x, y) {
|
| - return this.lineTo(x, y);
|
| + [dartx.lineTo](...args) {
|
| + return this.lineTo.apply(this, args);
|
| }
|
| - [dartx.moveTo](x, y) {
|
| - return this.moveTo(x, y);
|
| + [dartx.moveTo](...args) {
|
| + return this.moveTo.apply(this, args);
|
| }
|
| - [dartx.quadraticCurveTo](cpx, cpy, x, y) {
|
| - return this.quadraticCurveTo(cpx, cpy, x, y);
|
| + [dartx.quadraticCurveTo](...args) {
|
| + return this.quadraticCurveTo.apply(this, args);
|
| }
|
| - [dartx.rect](x, y, width, height) {
|
| - return this.rect(x, y, width, height);
|
| + [dartx.rect](...args) {
|
| + return this.rect.apply(this, args);
|
| }
|
| };
|
| html.Path2D[dart.implements] = () => [html._CanvasPathMethods];
|
| @@ -67032,41 +67032,41 @@ html.Performance = class Performance extends html.EventTarget {
|
| get [dartx.timing]() {
|
| return this.timing;
|
| }
|
| - [dartx.clearFrameTimings]() {
|
| - return this.clearFrameTimings();
|
| + [dartx.clearFrameTimings](...args) {
|
| + return this.clearFrameTimings.apply(this, args);
|
| }
|
| - [dartx.clearMarks](markName) {
|
| - return this.clearMarks(markName);
|
| + [dartx.clearMarks](...args) {
|
| + return this.clearMarks.apply(this, args);
|
| }
|
| - [dartx.clearMeasures](measureName) {
|
| - return this.clearMeasures(measureName);
|
| + [dartx.clearMeasures](...args) {
|
| + return this.clearMeasures.apply(this, args);
|
| }
|
| - [dartx.getEntries]() {
|
| - return this.getEntries();
|
| + [dartx.getEntries](...args) {
|
| + return this.getEntries.apply(this, args);
|
| }
|
| - [dartx.getEntriesByName](name, entryType) {
|
| - return this.getEntriesByName(name, entryType);
|
| + [dartx.getEntriesByName](...args) {
|
| + return this.getEntriesByName.apply(this, args);
|
| }
|
| - [dartx.getEntriesByType](entryType) {
|
| - return this.getEntriesByType(entryType);
|
| + [dartx.getEntriesByType](...args) {
|
| + return this.getEntriesByType.apply(this, args);
|
| }
|
| - [dartx.mark](markName) {
|
| - return this.mark(markName);
|
| + [dartx.mark](...args) {
|
| + return this.mark.apply(this, args);
|
| }
|
| - [dartx.measure](measureName, startMark, endMark) {
|
| - return this.measure(measureName, startMark, endMark);
|
| + [dartx.measure](...args) {
|
| + return this.measure.apply(this, args);
|
| }
|
| - [dartx.now]() {
|
| - return this.now();
|
| + [dartx.now](...args) {
|
| + return this.now.apply(this, args);
|
| }
|
| - [dartx.setFrameTimingBufferSize](maxSize) {
|
| - return this.setFrameTimingBufferSize(maxSize);
|
| + [dartx.setFrameTimingBufferSize](...args) {
|
| + return this.setFrameTimingBufferSize.apply(this, args);
|
| }
|
| - [dartx.clearResourceTimings]() {
|
| - return this.webkitClearResourceTimings();
|
| + [dartx.clearResourceTimings](...args) {
|
| + return this.webkitClearResourceTimings.apply(this, args);
|
| }
|
| - [dartx.setResourceTimingBufferSize](maxSize) {
|
| - return this.webkitSetResourceTimingBufferSize(maxSize);
|
| + [dartx.setResourceTimingBufferSize](...args) {
|
| + return this.webkitSetResourceTimingBufferSize.apply(this, args);
|
| }
|
| get [dartx.onResourceTimingBufferFull]() {
|
| return html.Performance.resourceTimingBufferFullEvent.forTarget(this);
|
| @@ -67459,14 +67459,14 @@ html.PeriodicSyncManager = class PeriodicSyncManager extends _interceptors.Inter
|
| get [dartx.minPossiblePeriod]() {
|
| return this.minPossiblePeriod;
|
| }
|
| - [dartx.getRegistration](tag) {
|
| - return this.getRegistration(tag);
|
| + [dartx.getRegistration](...args) {
|
| + return this.getRegistration.apply(this, args);
|
| }
|
| - [dartx.getRegistrations]() {
|
| - return this.getRegistrations();
|
| + [dartx.getRegistrations](...args) {
|
| + return this.getRegistrations.apply(this, args);
|
| }
|
| - [dartx.permissionState]() {
|
| - return this.permissionState();
|
| + [dartx.permissionState](...args) {
|
| + return this.permissionState.apply(this, args);
|
| }
|
| [dartx.register](options) {
|
| if (options === void 0) options = null;
|
| @@ -67476,11 +67476,11 @@ html.PeriodicSyncManager = class PeriodicSyncManager extends _interceptors.Inter
|
| }
|
| return this[_register_2]();
|
| }
|
| - [_register_1](options) {
|
| - return this.register(options);
|
| + [_register_1](...args) {
|
| + return this.register.apply(this, args);
|
| }
|
| - [_register_2]() {
|
| - return this.register();
|
| + [_register_2](...args) {
|
| + return this.register.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.PeriodicSyncManager, {
|
| @@ -67519,8 +67519,8 @@ html.PeriodicSyncRegistration = class PeriodicSyncRegistration extends _intercep
|
| get [dartx.tag]() {
|
| return this.tag;
|
| }
|
| - [dartx.unregister]() {
|
| - return this.unregister();
|
| + [dartx.unregister](...args) {
|
| + return this.unregister.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.PeriodicSyncRegistration, {
|
| @@ -67575,8 +67575,8 @@ html.Permissions = class Permissions extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.query](permission) {
|
| - return this.query(permission);
|
| + [dartx.query](...args) {
|
| + return this.query.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Permissions, {
|
| @@ -67624,11 +67624,11 @@ html.Plugin = class Plugin extends _interceptors.Interceptor {
|
| get [dartx.name]() {
|
| return this.name;
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.namedItem](name) {
|
| - return this.namedItem(name);
|
| + [dartx.namedItem](...args) {
|
| + return this.namedItem.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Plugin, {
|
| @@ -67700,14 +67700,14 @@ html.PluginArray = class PluginArray extends dart.mixin(_interceptors.Intercepto
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.namedItem](name) {
|
| - return this.namedItem(name);
|
| + [dartx.namedItem](...args) {
|
| + return this.namedItem.apply(this, args);
|
| }
|
| - [dartx.refresh](reload) {
|
| - return this.refresh(reload);
|
| + [dartx.refresh](...args) {
|
| + return this.refresh.apply(this, args);
|
| }
|
| };
|
| html.PluginArray[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfPlugin()];
|
| @@ -67756,8 +67756,8 @@ html.PluginPlaceholderElement = class PluginPlaceholderElement extends html.DivE
|
| set [dartx.message](value) {
|
| this.message = value;
|
| }
|
| - [dartx.createdCallback]() {
|
| - return this.createdCallback();
|
| + [dartx.createdCallback](...args) {
|
| + return this.createdCallback.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.PluginPlaceholderElement, 'created');
|
| @@ -67932,14 +67932,14 @@ html.PositionSensorVRDevice = class PositionSensorVRDevice extends html.VRDevice
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.getImmediateState]() {
|
| - return this.getImmediateState();
|
| + [dartx.getImmediateState](...args) {
|
| + return this.getImmediateState.apply(this, args);
|
| }
|
| - [dartx.getState]() {
|
| - return this.getState();
|
| + [dartx.getState](...args) {
|
| + return this.getState.apply(this, args);
|
| }
|
| - [dartx.resetSensor]() {
|
| - return this.resetSensor();
|
| + [dartx.resetSensor](...args) {
|
| + return this.resetSensor.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.PositionSensorVRDevice, {
|
| @@ -67984,14 +67984,14 @@ html.Presentation = class Presentation extends html.EventTarget {
|
| get [dartx.session]() {
|
| return this.session;
|
| }
|
| - [dartx.getAvailability](url) {
|
| - return this.getAvailability(url);
|
| + [dartx.getAvailability](...args) {
|
| + return this.getAvailability.apply(this, args);
|
| }
|
| - [dartx.joinSession](url, presentationId) {
|
| - return this.joinSession(url, presentationId);
|
| + [dartx.joinSession](...args) {
|
| + return this.joinSession.apply(this, args);
|
| }
|
| - [dartx.startSession](url) {
|
| - return this.startSession(url);
|
| + [dartx.startSession](...args) {
|
| + return this.startSession.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Presentation, {
|
| @@ -68055,11 +68055,11 @@ html.PresentationSession = class PresentationSession extends html.EventTarget {
|
| get [dartx.state]() {
|
| return this.state;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| - [dartx.send](data_OR_message) {
|
| - return this.send(data_OR_message);
|
| + [dartx.send](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| get [dartx.onMessage]() {
|
| return html.PresentationSession.messageEvent.forTarget(this);
|
| @@ -68312,8 +68312,8 @@ html.PushManager = class PushManager extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.getSubscription]() {
|
| - return this.getSubscription();
|
| + [dartx.getSubscription](...args) {
|
| + return this.getSubscription.apply(this, args);
|
| }
|
| [dartx.permissionState](options) {
|
| if (options === void 0) options = null;
|
| @@ -68323,11 +68323,11 @@ html.PushManager = class PushManager extends _interceptors.Interceptor {
|
| }
|
| return this[_permissionState_2]();
|
| }
|
| - [_permissionState_1](options) {
|
| - return this.permissionState(options);
|
| + [_permissionState_1](...args) {
|
| + return this.permissionState.apply(this, args);
|
| }
|
| - [_permissionState_2]() {
|
| - return this.permissionState();
|
| + [_permissionState_2](...args) {
|
| + return this.permissionState.apply(this, args);
|
| }
|
| [dartx.subscribe](options) {
|
| if (options === void 0) options = null;
|
| @@ -68337,11 +68337,11 @@ html.PushManager = class PushManager extends _interceptors.Interceptor {
|
| }
|
| return this[_subscribe_2]();
|
| }
|
| - [_subscribe_1](options) {
|
| - return this.subscribe(options);
|
| + [_subscribe_1](...args) {
|
| + return this.subscribe.apply(this, args);
|
| }
|
| - [_subscribe_2]() {
|
| - return this.subscribe();
|
| + [_subscribe_2](...args) {
|
| + return this.subscribe.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.PushManager, {
|
| @@ -68373,17 +68373,17 @@ html.PushMessageData = class PushMessageData extends _interceptors.Interceptor {
|
| static _create_1(message) {
|
| return new PushMessageData(message);
|
| }
|
| - [dartx.arrayBuffer]() {
|
| - return this.arrayBuffer();
|
| + [dartx.arrayBuffer](...args) {
|
| + return this.arrayBuffer.apply(this, args);
|
| }
|
| - [dartx.blob]() {
|
| - return this.blob();
|
| + [dartx.blob](...args) {
|
| + return this.blob.apply(this, args);
|
| }
|
| - [dartx.json]() {
|
| - return this.json();
|
| + [dartx.json](...args) {
|
| + return this.json.apply(this, args);
|
| }
|
| - [dartx.text]() {
|
| - return this.text();
|
| + [dartx.text](...args) {
|
| + return this.text.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.PushMessageData, {
|
| @@ -68412,8 +68412,8 @@ html.PushSubscription = class PushSubscription extends _interceptors.Interceptor
|
| get [dartx.endpoint]() {
|
| return this.endpoint;
|
| }
|
| - [dartx.unsubscribe]() {
|
| - return this.unsubscribe();
|
| + [dartx.unsubscribe](...args) {
|
| + return this.unsubscribe.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.PushSubscription, {
|
| @@ -68515,74 +68515,74 @@ html.Range = class Range extends _interceptors.Interceptor {
|
| get [dartx.startOffset]() {
|
| return this.startOffset;
|
| }
|
| - [dartx.cloneContents]() {
|
| - return this.cloneContents();
|
| + [dartx.cloneContents](...args) {
|
| + return this.cloneContents.apply(this, args);
|
| }
|
| - [dartx.cloneRange]() {
|
| - return this.cloneRange();
|
| + [dartx.cloneRange](...args) {
|
| + return this.cloneRange.apply(this, args);
|
| }
|
| - [dartx.collapse](toStart) {
|
| - return this.collapse(toStart);
|
| + [dartx.collapse](...args) {
|
| + return this.collapse.apply(this, args);
|
| }
|
| - [dartx.compareBoundaryPoints](how, sourceRange) {
|
| - return this.compareBoundaryPoints(how, sourceRange);
|
| + [dartx.compareBoundaryPoints](...args) {
|
| + return this.compareBoundaryPoints.apply(this, args);
|
| }
|
| - [dartx.comparePoint](node, offset) {
|
| - return this.comparePoint(node, offset);
|
| + [dartx.comparePoint](...args) {
|
| + return this.comparePoint.apply(this, args);
|
| }
|
| - [dartx.createContextualFragment](fragment) {
|
| - return this.createContextualFragment(fragment);
|
| + [dartx.createContextualFragment](...args) {
|
| + return this.createContextualFragment.apply(this, args);
|
| }
|
| - [dartx.deleteContents]() {
|
| - return this.deleteContents();
|
| + [dartx.deleteContents](...args) {
|
| + return this.deleteContents.apply(this, args);
|
| }
|
| - [dartx.detach]() {
|
| - return this.detach();
|
| + [dartx.detach](...args) {
|
| + return this.detach.apply(this, args);
|
| }
|
| - [dartx.expand](unit) {
|
| - return this.expand(unit);
|
| + [dartx.expand](...args) {
|
| + return this.expand.apply(this, args);
|
| }
|
| - [dartx.extractContents]() {
|
| - return this.extractContents();
|
| + [dartx.extractContents](...args) {
|
| + return this.extractContents.apply(this, args);
|
| }
|
| - [dartx.getBoundingClientRect]() {
|
| - return this.getBoundingClientRect();
|
| + [dartx.getBoundingClientRect](...args) {
|
| + return this.getBoundingClientRect.apply(this, args);
|
| }
|
| - [dartx.getClientRects]() {
|
| - return this.getClientRects();
|
| + [dartx.getClientRects](...args) {
|
| + return this.getClientRects.apply(this, args);
|
| }
|
| - [dartx.insertNode](node) {
|
| - return this.insertNode(node);
|
| + [dartx.insertNode](...args) {
|
| + return this.insertNode.apply(this, args);
|
| }
|
| - [dartx.isPointInRange](node, offset) {
|
| - return this.isPointInRange(node, offset);
|
| + [dartx.isPointInRange](...args) {
|
| + return this.isPointInRange.apply(this, args);
|
| }
|
| - [dartx.selectNode](node) {
|
| - return this.selectNode(node);
|
| + [dartx.selectNode](...args) {
|
| + return this.selectNode.apply(this, args);
|
| }
|
| - [dartx.selectNodeContents](node) {
|
| - return this.selectNodeContents(node);
|
| + [dartx.selectNodeContents](...args) {
|
| + return this.selectNodeContents.apply(this, args);
|
| }
|
| - [dartx.setEnd](node, offset) {
|
| - return this.setEnd(node, offset);
|
| + [dartx.setEnd](...args) {
|
| + return this.setEnd.apply(this, args);
|
| }
|
| - [dartx.setEndAfter](node) {
|
| - return this.setEndAfter(node);
|
| + [dartx.setEndAfter](...args) {
|
| + return this.setEndAfter.apply(this, args);
|
| }
|
| - [dartx.setEndBefore](node) {
|
| - return this.setEndBefore(node);
|
| + [dartx.setEndBefore](...args) {
|
| + return this.setEndBefore.apply(this, args);
|
| }
|
| - [dartx.setStart](node, offset) {
|
| - return this.setStart(node, offset);
|
| + [dartx.setStart](...args) {
|
| + return this.setStart.apply(this, args);
|
| }
|
| - [dartx.setStartAfter](node) {
|
| - return this.setStartAfter(node);
|
| + [dartx.setStartAfter](...args) {
|
| + return this.setStartAfter.apply(this, args);
|
| }
|
| - [dartx.setStartBefore](node) {
|
| - return this.setStartBefore(node);
|
| + [dartx.setStartBefore](...args) {
|
| + return this.setStartBefore.apply(this, args);
|
| }
|
| - [dartx.surroundContents](newParent) {
|
| - return this.surroundContents(newParent);
|
| + [dartx.surroundContents](...args) {
|
| + return this.surroundContents.apply(this, args);
|
| }
|
| static get supportsCreateContextualFragment() {
|
| return "createContextualFragment" in window.Range.prototype;
|
| @@ -68648,11 +68648,11 @@ html.ReadableByteStream = class ReadableByteStream extends _interceptors.Interce
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.cancel](reason) {
|
| - return this.cancel(reason);
|
| + [dartx.cancel](...args) {
|
| + return this.cancel.apply(this, args);
|
| }
|
| - [dartx.getReader]() {
|
| - return this.getReader();
|
| + [dartx.getReader](...args) {
|
| + return this.getReader.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ReadableByteStream, {
|
| @@ -68676,14 +68676,14 @@ html.ReadableByteStreamReader = class ReadableByteStreamReader extends _intercep
|
| get [dartx.closed]() {
|
| return this.closed;
|
| }
|
| - [dartx.cancel](reason) {
|
| - return this.cancel(reason);
|
| + [dartx.cancel](...args) {
|
| + return this.cancel.apply(this, args);
|
| }
|
| - [dartx.read]() {
|
| - return this.read();
|
| + [dartx.read](...args) {
|
| + return this.read.apply(this, args);
|
| }
|
| - [dartx.releaseLock]() {
|
| - return this.releaseLock();
|
| + [dartx.releaseLock](...args) {
|
| + return this.releaseLock.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ReadableByteStreamReader, {
|
| @@ -68704,11 +68704,11 @@ html.ReadableStream = class ReadableStream extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.cancel](reason) {
|
| - return this.cancel(reason);
|
| + [dartx.cancel](...args) {
|
| + return this.cancel.apply(this, args);
|
| }
|
| - [dartx.getReader]() {
|
| - return this.getReader();
|
| + [dartx.getReader](...args) {
|
| + return this.getReader.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ReadableStream, {
|
| @@ -68732,14 +68732,14 @@ html.ReadableStreamReader = class ReadableStreamReader extends _interceptors.Int
|
| get [dartx.closed]() {
|
| return this.closed;
|
| }
|
| - [dartx.cancel](reason) {
|
| - return this.cancel(reason);
|
| + [dartx.cancel](...args) {
|
| + return this.cancel.apply(this, args);
|
| }
|
| - [dartx.read]() {
|
| - return this.read();
|
| + [dartx.read](...args) {
|
| + return this.read.apply(this, args);
|
| }
|
| - [dartx.releaseLock]() {
|
| - return this.releaseLock();
|
| + [dartx.releaseLock](...args) {
|
| + return this.releaseLock.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ReadableStreamReader, {
|
| @@ -68874,23 +68874,23 @@ html.RtcDataChannel = class RtcDataChannel extends html.EventTarget {
|
| get [dartx.reliable]() {
|
| return this.reliable;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| - [dartx.send](data) {
|
| - return this.send(data);
|
| + [dartx.send](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.sendBlob](data) {
|
| - return this.send(data);
|
| + [dartx.sendBlob](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.sendByteBuffer](data) {
|
| - return this.send(data);
|
| + [dartx.sendByteBuffer](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.sendString](data) {
|
| - return this.send(data);
|
| + [dartx.sendString](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.sendTypedData](data) {
|
| - return this.send(data);
|
| + [dartx.sendTypedData](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| get [dartx.onClose]() {
|
| return html.RtcDataChannel.closeEvent.forTarget(this);
|
| @@ -69001,8 +69001,8 @@ html.RtcDtmfSender = class RtcDtmfSender extends html.EventTarget {
|
| get [dartx.track]() {
|
| return this.track;
|
| }
|
| - [dartx.insertDtmf](tones, duration, interToneGap) {
|
| - return this.insertDTMF(tones, duration, interToneGap);
|
| + [dartx.insertDtmf](...args) {
|
| + return this.insertDTMF.apply(this, args);
|
| }
|
| get [dartx.onToneChange]() {
|
| return html.RtcDtmfSender.toneChangeEvent.forTarget(this);
|
| @@ -69227,8 +69227,8 @@ html.RtcPeerConnection = class RtcPeerConnection extends html.EventTarget {
|
| get [dartx.signalingState]() {
|
| return this.signalingState;
|
| }
|
| - [dartx.addIceCandidate](candidate, successCallback, failureCallback) {
|
| - return this.addIceCandidate(candidate, successCallback, failureCallback);
|
| + [dartx.addIceCandidate](...args) {
|
| + return this.addIceCandidate.apply(this, args);
|
| }
|
| [dartx.addStream](stream, mediaConstraints) {
|
| if (mediaConstraints === void 0) mediaConstraints = null;
|
| @@ -69240,14 +69240,14 @@ html.RtcPeerConnection = class RtcPeerConnection extends html.EventTarget {
|
| this[_addStream_2](stream);
|
| return;
|
| }
|
| - [_addStream_1](stream, mediaConstraints) {
|
| - return this.addStream(stream, mediaConstraints);
|
| + [_addStream_1](...args) {
|
| + return this.addStream.apply(this, args);
|
| }
|
| - [_addStream_2](stream) {
|
| - return this.addStream(stream);
|
| + [_addStream_2](...args) {
|
| + return this.addStream.apply(this, args);
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| [_createAnswer](successCallback, failureCallback, mediaConstraints) {
|
| if (failureCallback === void 0) failureCallback = null;
|
| @@ -69260,14 +69260,14 @@ html.RtcPeerConnection = class RtcPeerConnection extends html.EventTarget {
|
| this[_createAnswer_2](successCallback, failureCallback);
|
| return;
|
| }
|
| - [_createAnswer_1](successCallback, failureCallback, mediaConstraints) {
|
| - return this.createAnswer(successCallback, failureCallback, mediaConstraints);
|
| + [_createAnswer_1](...args) {
|
| + return this.createAnswer.apply(this, args);
|
| }
|
| - [_createAnswer_2](successCallback, failureCallback) {
|
| - return this.createAnswer(successCallback, failureCallback);
|
| + [_createAnswer_2](...args) {
|
| + return this.createAnswer.apply(this, args);
|
| }
|
| - [dartx.createDtmfSender](track) {
|
| - return this.createDTMFSender(track);
|
| + [dartx.createDtmfSender](...args) {
|
| + return this.createDTMFSender.apply(this, args);
|
| }
|
| [dartx.createDataChannel](label, options) {
|
| if (options === void 0) options = null;
|
| @@ -69277,11 +69277,11 @@ html.RtcPeerConnection = class RtcPeerConnection extends html.EventTarget {
|
| }
|
| return this[_createDataChannel_2](label);
|
| }
|
| - [_createDataChannel_1](label, options) {
|
| - return this.createDataChannel(label, options);
|
| + [_createDataChannel_1](...args) {
|
| + return this.createDataChannel.apply(this, args);
|
| }
|
| - [_createDataChannel_2](label) {
|
| - return this.createDataChannel(label);
|
| + [_createDataChannel_2](...args) {
|
| + return this.createDataChannel.apply(this, args);
|
| }
|
| [_createOffer](successCallback, failureCallback, rtcOfferOptions) {
|
| if (failureCallback === void 0) failureCallback = null;
|
| @@ -69294,29 +69294,29 @@ html.RtcPeerConnection = class RtcPeerConnection extends html.EventTarget {
|
| this[_createOffer_2](successCallback, failureCallback);
|
| return;
|
| }
|
| - [_createOffer_1](successCallback, failureCallback, rtcOfferOptions) {
|
| - return this.createOffer(successCallback, failureCallback, rtcOfferOptions);
|
| + [_createOffer_1](...args) {
|
| + return this.createOffer.apply(this, args);
|
| }
|
| - [_createOffer_2](successCallback, failureCallback) {
|
| - return this.createOffer(successCallback, failureCallback);
|
| + [_createOffer_2](...args) {
|
| + return this.createOffer.apply(this, args);
|
| }
|
| - [dartx.getLocalStreams]() {
|
| - return this.getLocalStreams();
|
| + [dartx.getLocalStreams](...args) {
|
| + return this.getLocalStreams.apply(this, args);
|
| }
|
| - [dartx.getRemoteStreams]() {
|
| - return this.getRemoteStreams();
|
| + [dartx.getRemoteStreams](...args) {
|
| + return this.getRemoteStreams.apply(this, args);
|
| }
|
| - [_getStats](successCallback, selector) {
|
| - return this.getStats(successCallback, selector);
|
| + [_getStats](...args) {
|
| + return this.getStats.apply(this, args);
|
| }
|
| - [dartx.getStreamById](streamId) {
|
| - return this.getStreamById(streamId);
|
| + [dartx.getStreamById](...args) {
|
| + return this.getStreamById.apply(this, args);
|
| }
|
| - [dartx.removeStream](stream) {
|
| - return this.removeStream(stream);
|
| + [dartx.removeStream](...args) {
|
| + return this.removeStream.apply(this, args);
|
| }
|
| - [_setLocalDescription](description, successCallback, failureCallback) {
|
| - return this.setLocalDescription(description, successCallback, failureCallback);
|
| + [_setLocalDescription](...args) {
|
| + return this.setLocalDescription.apply(this, args);
|
| }
|
| [dartx.setLocalDescription](description) {
|
| let completer = async.Completer.new();
|
| @@ -69327,8 +69327,8 @@ html.RtcPeerConnection = class RtcPeerConnection extends html.EventTarget {
|
| }, StringTovoid()));
|
| return completer.future;
|
| }
|
| - [_setRemoteDescription](description, successCallback, failureCallback) {
|
| - return this.setRemoteDescription(description, successCallback, failureCallback);
|
| + [_setRemoteDescription](...args) {
|
| + return this.setRemoteDescription.apply(this, args);
|
| }
|
| [dartx.setRemoteDescription](description) {
|
| let completer = async.Completer.new();
|
| @@ -69356,14 +69356,14 @@ html.RtcPeerConnection = class RtcPeerConnection extends html.EventTarget {
|
| this[_updateIce_3]();
|
| return;
|
| }
|
| - [_updateIce_1](configuration, mediaConstraints) {
|
| - return this.updateIce(configuration, mediaConstraints);
|
| + [_updateIce_1](...args) {
|
| + return this.updateIce.apply(this, args);
|
| }
|
| - [_updateIce_2](configuration) {
|
| - return this.updateIce(configuration);
|
| + [_updateIce_2](...args) {
|
| + return this.updateIce.apply(this, args);
|
| }
|
| - [_updateIce_3]() {
|
| - return this.updateIce();
|
| + [_updateIce_3](...args) {
|
| + return this.updateIce.apply(this, args);
|
| }
|
| get [dartx.onAddStream]() {
|
| return html.RtcPeerConnection.addStreamEvent.forTarget(this);
|
| @@ -69538,11 +69538,11 @@ html.RtcStatsReport = class RtcStatsReport extends _interceptors.Interceptor {
|
| get [dartx.type]() {
|
| return this.type;
|
| }
|
| - [dartx.names]() {
|
| - return this.names();
|
| + [dartx.names](...args) {
|
| + return this.names.apply(this, args);
|
| }
|
| - [dartx.stat](name) {
|
| - return this.stat(name);
|
| + [dartx.stat](...args) {
|
| + return this.stat.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.RtcStatsReport, {
|
| @@ -69567,11 +69567,11 @@ html.RtcStatsResponse = class RtcStatsResponse extends _interceptors.Interceptor
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.namedItem](name) {
|
| - return this.namedItem(name);
|
| + [dartx.namedItem](...args) {
|
| + return this.namedItem.apply(this, args);
|
| }
|
| - [dartx.result]() {
|
| - return this.result();
|
| + [dartx.result](...args) {
|
| + return this.result.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.RtcStatsResponse, {
|
| @@ -69662,11 +69662,11 @@ html.ScreenOrientation = class ScreenOrientation extends html.EventTarget {
|
| get [dartx.type]() {
|
| return this.type;
|
| }
|
| - [dartx.lock](orientation) {
|
| - return this.lock(orientation);
|
| + [dartx.lock](...args) {
|
| + return this.lock.apply(this, args);
|
| }
|
| - [dartx.unlock]() {
|
| - return this.unlock();
|
| + [dartx.unlock](...args) {
|
| + return this.unlock.apply(this, args);
|
| }
|
| get [dartx.onChange]() {
|
| return html.ScreenOrientation.changeEvent.forTarget(this);
|
| @@ -69896,8 +69896,8 @@ html.ScrollState = class ScrollState extends _interceptors.Interceptor {
|
| get [dartx.velocityY]() {
|
| return this.velocityY;
|
| }
|
| - [dartx.consumeDelta](x, y) {
|
| - return this.consumeDelta(x, y);
|
| + [dartx.consumeDelta](...args) {
|
| + return this.consumeDelta.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ScrollState, {
|
| @@ -70139,26 +70139,26 @@ html.SelectElement = class SelectElement extends html.HtmlElement {
|
| get [dartx.willValidate]() {
|
| return this.willValidate;
|
| }
|
| - [__setter__](index, option) {
|
| - return this.__setter__(index, option);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [dartx.add](element, before) {
|
| - return this.add(element, before);
|
| + [dartx.add](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.namedItem](name) {
|
| - return this.namedItem(name);
|
| + [dartx.namedItem](...args) {
|
| + return this.namedItem.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| - [dartx.setCustomValidity](error) {
|
| - return this.setCustomValidity(error);
|
| + [dartx.setCustomValidity](...args) {
|
| + return this.setCustomValidity.apply(this, args);
|
| }
|
| get [dartx.options]() {
|
| let options = ListOfOptionElement().from(this[dartx.querySelectorAll](html.Element)('option'));
|
| @@ -70276,47 +70276,47 @@ html.Selection = class Selection extends _interceptors.Interceptor {
|
| get [dartx.type]() {
|
| return this.type;
|
| }
|
| - [dartx.addRange](range) {
|
| - return this.addRange(range);
|
| + [dartx.addRange](...args) {
|
| + return this.addRange.apply(this, args);
|
| }
|
| - [dartx.collapse](node, offset) {
|
| - return this.collapse(node, offset);
|
| + [dartx.collapse](...args) {
|
| + return this.collapse.apply(this, args);
|
| }
|
| - [dartx.collapseToEnd]() {
|
| - return this.collapseToEnd();
|
| + [dartx.collapseToEnd](...args) {
|
| + return this.collapseToEnd.apply(this, args);
|
| }
|
| - [dartx.collapseToStart]() {
|
| - return this.collapseToStart();
|
| + [dartx.collapseToStart](...args) {
|
| + return this.collapseToStart.apply(this, args);
|
| }
|
| - [dartx.containsNode](node, allowPartialContainment) {
|
| - return this.containsNode(node, allowPartialContainment);
|
| + [dartx.containsNode](...args) {
|
| + return this.containsNode.apply(this, args);
|
| }
|
| - [dartx.deleteFromDocument]() {
|
| - return this.deleteFromDocument();
|
| + [dartx.deleteFromDocument](...args) {
|
| + return this.deleteFromDocument.apply(this, args);
|
| }
|
| - [dartx.empty]() {
|
| - return this.empty();
|
| + [dartx.empty](...args) {
|
| + return this.empty.apply(this, args);
|
| }
|
| - [dartx.extend](node, offset) {
|
| - return this.extend(node, offset);
|
| + [dartx.extend](...args) {
|
| + return this.extend.apply(this, args);
|
| }
|
| - [dartx.getRangeAt](index) {
|
| - return this.getRangeAt(index);
|
| + [dartx.getRangeAt](...args) {
|
| + return this.getRangeAt.apply(this, args);
|
| }
|
| - [dartx.modify](alter, direction, granularity) {
|
| - return this.modify(alter, direction, granularity);
|
| + [dartx.modify](...args) {
|
| + return this.modify.apply(this, args);
|
| }
|
| - [dartx.removeAllRanges]() {
|
| - return this.removeAllRanges();
|
| + [dartx.removeAllRanges](...args) {
|
| + return this.removeAllRanges.apply(this, args);
|
| }
|
| - [dartx.selectAllChildren](node) {
|
| - return this.selectAllChildren(node);
|
| + [dartx.selectAllChildren](...args) {
|
| + return this.selectAllChildren.apply(this, args);
|
| }
|
| - [dartx.setBaseAndExtent](baseNode, baseOffset, extentNode, extentOffset) {
|
| - return this.setBaseAndExtent(baseNode, baseOffset, extentNode, extentOffset);
|
| + [dartx.setBaseAndExtent](...args) {
|
| + return this.setBaseAndExtent.apply(this, args);
|
| }
|
| - [dartx.setPosition](node, offset) {
|
| - return this.setPosition(node, offset);
|
| + [dartx.setPosition](...args) {
|
| + return this.setPosition.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.Selection, {
|
| @@ -70372,8 +70372,8 @@ html.ServicePort = class ServicePort extends _interceptors.Interceptor {
|
| get [dartx.targetUrl]() {
|
| return this.targetURL;
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| [dartx.postMessage](message, transfer) {
|
| if (transfer === void 0) transfer = null;
|
| @@ -70386,11 +70386,11 @@ html.ServicePort = class ServicePort extends _interceptors.Interceptor {
|
| this[_postMessage_2](message_1);
|
| return;
|
| }
|
| - [_postMessage_1](message, transfer) {
|
| - return this.postMessage(message, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message) {
|
| - return this.postMessage(message);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ServicePort, {
|
| @@ -70428,18 +70428,18 @@ html.ServicePortCollection = class ServicePortCollection extends html.EventTarge
|
| }
|
| return this[_connect_2](url);
|
| }
|
| - [_connect_1](url, options) {
|
| - return this.connect(url, options);
|
| + [_connect_1](...args) {
|
| + return this.connect.apply(this, args);
|
| }
|
| - [_connect_2](url) {
|
| - return this.connect(url);
|
| + [_connect_2](...args) {
|
| + return this.connect.apply(this, args);
|
| }
|
| [dartx.match](options) {
|
| let options_1 = html_common.convertDartToNative_Dictionary(options);
|
| return this[_match_1](options_1);
|
| }
|
| - [_match_1](options) {
|
| - return this.match(options);
|
| + [_match_1](...args) {
|
| + return this.match.apply(this, args);
|
| }
|
| [dartx.matchAll](options) {
|
| if (options === void 0) options = null;
|
| @@ -70449,11 +70449,11 @@ html.ServicePortCollection = class ServicePortCollection extends html.EventTarge
|
| }
|
| return this[_matchAll_2]();
|
| }
|
| - [_matchAll_1](options) {
|
| - return this.matchAll(options);
|
| + [_matchAll_1](...args) {
|
| + return this.matchAll.apply(this, args);
|
| }
|
| - [_matchAll_2]() {
|
| - return this.matchAll();
|
| + [_matchAll_2](...args) {
|
| + return this.matchAll.apply(this, args);
|
| }
|
| get [dartx.onMessage]() {
|
| return html.ServicePortCollection.messageEvent.forTarget(this);
|
| @@ -70509,8 +70509,8 @@ html.ServicePortConnectEvent = class ServicePortConnectEvent extends html.Extend
|
| get [dartx.targetUrl]() {
|
| return this.targetURL;
|
| }
|
| - [dartx.respondWith](response) {
|
| - return this.respondWith(response);
|
| + [dartx.respondWith](...args) {
|
| + return this.respondWith.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ServicePortConnectEvent, {
|
| @@ -70548,11 +70548,11 @@ html.ServiceWorkerContainer = class ServiceWorkerContainer extends html.EventTar
|
| get [dartx.ready]() {
|
| return this.ready;
|
| }
|
| - [dartx.getRegistration](documentURL) {
|
| - return this.getRegistration(documentURL);
|
| + [dartx.getRegistration](...args) {
|
| + return this.getRegistration.apply(this, args);
|
| }
|
| - [dartx.getRegistrations]() {
|
| - return this.getRegistrations();
|
| + [dartx.getRegistrations](...args) {
|
| + return this.getRegistrations.apply(this, args);
|
| }
|
| [dartx.register](url, options) {
|
| if (options === void 0) options = null;
|
| @@ -70562,11 +70562,11 @@ html.ServiceWorkerContainer = class ServiceWorkerContainer extends html.EventTar
|
| }
|
| return this[_register_2](url);
|
| }
|
| - [_register_1](url, options) {
|
| - return this.register(url, options);
|
| + [_register_1](...args) {
|
| + return this.register.apply(this, args);
|
| }
|
| - [_register_2](url) {
|
| - return this.register(url);
|
| + [_register_2](...args) {
|
| + return this.register.apply(this, args);
|
| }
|
| get [dartx.onMessage]() {
|
| return html.ServiceWorkerContainer.messageEvent.forTarget(this);
|
| @@ -70614,8 +70614,8 @@ html.ServiceWorkerGlobalScope = class ServiceWorkerGlobalScope extends html.Work
|
| get [dartx.registration]() {
|
| return this.registration;
|
| }
|
| - [dartx.skipWaiting]() {
|
| - return this.skipWaiting();
|
| + [dartx.skipWaiting](...args) {
|
| + return this.skipWaiting.apply(this, args);
|
| }
|
| get [dartx.onMessage]() {
|
| return html.ServiceWorkerGlobalScope.messageEvent.forTarget(this);
|
| @@ -70756,11 +70756,11 @@ html.ServiceWorkerRegistration = class ServiceWorkerRegistration extends html.Ev
|
| }
|
| return this[_getNotifications_2]();
|
| }
|
| - [_getNotifications_1](filter) {
|
| - return this.getNotifications(filter);
|
| + [_getNotifications_1](...args) {
|
| + return this.getNotifications.apply(this, args);
|
| }
|
| - [_getNotifications_2]() {
|
| - return this.getNotifications();
|
| + [_getNotifications_2](...args) {
|
| + return this.getNotifications.apply(this, args);
|
| }
|
| [dartx.showNotification](title, options) {
|
| if (options === void 0) options = null;
|
| @@ -70770,17 +70770,17 @@ html.ServiceWorkerRegistration = class ServiceWorkerRegistration extends html.Ev
|
| }
|
| return this[_showNotification_2](title);
|
| }
|
| - [_showNotification_1](title, options) {
|
| - return this.showNotification(title, options);
|
| + [_showNotification_1](...args) {
|
| + return this.showNotification.apply(this, args);
|
| }
|
| - [_showNotification_2](title) {
|
| - return this.showNotification(title);
|
| + [_showNotification_2](...args) {
|
| + return this.showNotification.apply(this, args);
|
| }
|
| - [dartx.unregister]() {
|
| - return this.unregister();
|
| + [dartx.unregister](...args) {
|
| + return this.unregister.apply(this, args);
|
| }
|
| - [dartx.update]() {
|
| - return this.update();
|
| + [dartx.update](...args) {
|
| + return this.update.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.ServiceWorkerRegistration, {
|
| @@ -70823,8 +70823,8 @@ html.ShadowElement = class ShadowElement extends html.HtmlElement {
|
| static get supported() {
|
| return html.Element.isTagSupported('shadow');
|
| }
|
| - [dartx.getDistributedNodes]() {
|
| - return this.getDistributedNodes();
|
| + [dartx.getDistributedNodes](...args) {
|
| + return this.getDistributedNodes.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.ShadowElement, 'created');
|
| @@ -70879,17 +70879,17 @@ html.ShadowRoot = class ShadowRoot extends html.DocumentFragment {
|
| get [dartx.styleSheets]() {
|
| return this.styleSheets;
|
| }
|
| - [dartx.clone](deep) {
|
| - return this.cloneNode(deep);
|
| + [dartx.clone](...args) {
|
| + return this.cloneNode.apply(this, args);
|
| }
|
| - [dartx.elementFromPoint](x, y) {
|
| - return this.elementFromPoint(x, y);
|
| + [dartx.elementFromPoint](...args) {
|
| + return this.elementFromPoint.apply(this, args);
|
| }
|
| - [dartx.elementsFromPoint](x, y) {
|
| - return this.elementsFromPoint(x, y);
|
| + [dartx.elementsFromPoint](...args) {
|
| + return this.elementsFromPoint.apply(this, args);
|
| }
|
| - [dartx.getSelection]() {
|
| - return this.getSelection();
|
| + [dartx.getSelection](...args) {
|
| + return this.getSelection.apply(this, args);
|
| }
|
| static get supported() {
|
| return !!(Element.prototype.createShadowRoot || Element.prototype.webkitCreateShadowRoot);
|
| @@ -71099,20 +71099,20 @@ html.SourceBuffer = class SourceBuffer extends html.EventTarget {
|
| get [dartx.updating]() {
|
| return this.updating;
|
| }
|
| - [dartx.abort]() {
|
| - return this.abort();
|
| + [dartx.abort](...args) {
|
| + return this.abort.apply(this, args);
|
| }
|
| - [dartx.appendBuffer](data) {
|
| - return this.appendBuffer(data);
|
| + [dartx.appendBuffer](...args) {
|
| + return this.appendBuffer.apply(this, args);
|
| }
|
| - [dartx.appendStream](stream, maxSize) {
|
| - return this.appendStream(stream, maxSize);
|
| + [dartx.appendStream](...args) {
|
| + return this.appendStream.apply(this, args);
|
| }
|
| - [dartx.appendTypedData](data) {
|
| - return this.appendBuffer(data);
|
| + [dartx.appendTypedData](...args) {
|
| + return this.appendBuffer.apply(this, args);
|
| }
|
| - [dartx.remove](start, end) {
|
| - return this.remove(start, end);
|
| + [dartx.remove](...args) {
|
| + return this.remove.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.SourceBuffer, {
|
| @@ -71188,8 +71188,8 @@ html.SourceBufferList = class SourceBufferList extends dart.mixin(html.EventTarg
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html.SourceBufferList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfSourceBuffer()];
|
| @@ -71433,14 +71433,14 @@ html.SpeechGrammarList = class SpeechGrammarList extends dart.mixin(_interceptor
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.addFromString](string, weight) {
|
| - return this.addFromString(string, weight);
|
| + [dartx.addFromString](...args) {
|
| + return this.addFromString.apply(this, args);
|
| }
|
| - [dartx.addFromUri](src, weight) {
|
| - return this.addFromUri(src, weight);
|
| + [dartx.addFromUri](...args) {
|
| + return this.addFromUri.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html.SpeechGrammarList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfSpeechGrammar()];
|
| @@ -71540,14 +71540,14 @@ html.SpeechRecognition = class SpeechRecognition extends html.EventTarget {
|
| set [dartx.serviceUri](value) {
|
| this.serviceURI = value;
|
| }
|
| - [dartx.abort]() {
|
| - return this.abort();
|
| + [dartx.abort](...args) {
|
| + return this.abort.apply(this, args);
|
| }
|
| - [dartx.start]() {
|
| - return this.start();
|
| + [dartx.start](...args) {
|
| + return this.start.apply(this, args);
|
| }
|
| - [dartx.stop]() {
|
| - return this.stop();
|
| + [dartx.stop](...args) {
|
| + return this.stop.apply(this, args);
|
| }
|
| get [dartx.onAudioEnd]() {
|
| return html.SpeechRecognition.audioEndEvent.forTarget(this);
|
| @@ -71807,8 +71807,8 @@ html.SpeechRecognitionResult = class SpeechRecognitionResult extends _intercepto
|
| get [dartx.length]() {
|
| return this.length;
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.SpeechRecognitionResult, {
|
| @@ -71843,20 +71843,20 @@ html.SpeechSynthesis = class SpeechSynthesis extends html.EventTarget {
|
| get [dartx.speaking]() {
|
| return this.speaking;
|
| }
|
| - [dartx.cancel]() {
|
| - return this.cancel();
|
| + [dartx.cancel](...args) {
|
| + return this.cancel.apply(this, args);
|
| }
|
| - [dartx.getVoices]() {
|
| - return this.getVoices();
|
| + [dartx.getVoices](...args) {
|
| + return this.getVoices.apply(this, args);
|
| }
|
| - [dartx.pause]() {
|
| - return this.pause();
|
| + [dartx.pause](...args) {
|
| + return this.pause.apply(this, args);
|
| }
|
| - [dartx.resume]() {
|
| - return this.resume();
|
| + [dartx.resume](...args) {
|
| + return this.resume.apply(this, args);
|
| }
|
| - [dartx.speak](utterance) {
|
| - return this.speak(utterance);
|
| + [dartx.speak](...args) {
|
| + return this.speak.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.SpeechSynthesis, {
|
| @@ -72121,8 +72121,8 @@ html.StashedPortCollection = class StashedPortCollection extends html.EventTarge
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.add](name, port) {
|
| - return this.add(name, port);
|
| + [dartx.add](...args) {
|
| + return this.add.apply(this, args);
|
| }
|
| get [dartx.onMessage]() {
|
| return html.StashedPortCollection.messageEvent.forTarget(this);
|
| @@ -72225,29 +72225,29 @@ html.Storage = class Storage extends _interceptors.Interceptor {
|
| get [_length]() {
|
| return this.length;
|
| }
|
| - [__delete__](index_OR_name) {
|
| - return this.__delete__(index_OR_name);
|
| + [__delete__](...args) {
|
| + return this.__delete__.apply(this, args);
|
| }
|
| - [__getter__](index_OR_name) {
|
| - return this.__getter__(index_OR_name);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [__setter__](index_OR_name, value) {
|
| - return this.__setter__(index_OR_name, value);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [_clear]() {
|
| - return this.clear();
|
| + [_clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [_getItem](key) {
|
| - return this.getItem(key);
|
| + [_getItem](...args) {
|
| + return this.getItem.apply(this, args);
|
| }
|
| - [_key](index) {
|
| - return this.key(index);
|
| + [_key](...args) {
|
| + return this.key.apply(this, args);
|
| }
|
| - [_removeItem](key) {
|
| - return this.removeItem(key);
|
| + [_removeItem](...args) {
|
| + return this.removeItem.apply(this, args);
|
| }
|
| - [_setItem](key, data) {
|
| - return this.setItem(key, data);
|
| + [_setItem](...args) {
|
| + return this.setItem.apply(this, args);
|
| }
|
| };
|
| html.Storage[dart.implements] = () => [MapOfString$String()];
|
| @@ -72333,8 +72333,8 @@ html.StorageEvent = class StorageEvent extends html.Event {
|
| get [dartx.url]() {
|
| return this.url;
|
| }
|
| - [_initStorageEvent](typeArg, canBubbleArg, cancelableArg, keyArg, oldValueArg, newValueArg, urlArg, storageAreaArg) {
|
| - return this.initStorageEvent(typeArg, canBubbleArg, cancelableArg, keyArg, oldValueArg, newValueArg, urlArg, storageAreaArg);
|
| + [_initStorageEvent](...args) {
|
| + return this.initStorageEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.StorageEvent, {
|
| @@ -72392,11 +72392,11 @@ html.StorageQuota = class StorageQuota extends _interceptors.Interceptor {
|
| get [dartx.supportedTypes]() {
|
| return this.supportedTypes;
|
| }
|
| - [dartx.queryInfo](type) {
|
| - return this.queryInfo(type);
|
| + [dartx.queryInfo](...args) {
|
| + return this.queryInfo.apply(this, args);
|
| }
|
| - [dartx.requestPersistentQuota](newQuota) {
|
| - return this.requestPersistentQuota(newQuota);
|
| + [dartx.requestPersistentQuota](...args) {
|
| + return this.requestPersistentQuota.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.StorageQuota, {
|
| @@ -72479,8 +72479,8 @@ html.StyleMedia = class StyleMedia extends _interceptors.Interceptor {
|
| get [dartx.type]() {
|
| return this.type;
|
| }
|
| - [dartx.matchMedium](mediaquery) {
|
| - return this.matchMedium(mediaquery);
|
| + [dartx.matchMedium](...args) {
|
| + return this.matchMedium.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.StyleMedia, {
|
| @@ -72527,14 +72527,14 @@ html.SyncManager = class SyncManager extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.getRegistration](tag) {
|
| - return this.getRegistration(tag);
|
| + [dartx.getRegistration](...args) {
|
| + return this.getRegistration.apply(this, args);
|
| }
|
| - [dartx.getRegistrations]() {
|
| - return this.getRegistrations();
|
| + [dartx.getRegistrations](...args) {
|
| + return this.getRegistrations.apply(this, args);
|
| }
|
| - [dartx.permissionState]() {
|
| - return this.permissionState();
|
| + [dartx.permissionState](...args) {
|
| + return this.permissionState.apply(this, args);
|
| }
|
| [dartx.register](options) {
|
| if (options === void 0) options = null;
|
| @@ -72544,11 +72544,11 @@ html.SyncManager = class SyncManager extends _interceptors.Interceptor {
|
| }
|
| return this[_register_2]();
|
| }
|
| - [_register_1](options) {
|
| - return this.register(options);
|
| + [_register_1](...args) {
|
| + return this.register.apply(this, args);
|
| }
|
| - [_register_2]() {
|
| - return this.register();
|
| + [_register_2](...args) {
|
| + return this.register.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.SyncManager, {
|
| @@ -72574,8 +72574,8 @@ html.SyncRegistration = class SyncRegistration extends _interceptors.Interceptor
|
| get [dartx.tag]() {
|
| return this.tag;
|
| }
|
| - [dartx.unregister]() {
|
| - return this.unregister();
|
| + [dartx.unregister](...args) {
|
| + return this.unregister.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.SyncRegistration, {
|
| @@ -72753,8 +72753,8 @@ html.TableElement = class TableElement extends html.HtmlElement {
|
| this[dartx.children][dartx.add](tbody);
|
| return html.TableSectionElement._check(tbody);
|
| }
|
| - [_nativeCreateTBody]() {
|
| - return this.createTBody();
|
| + [_nativeCreateTBody](...args) {
|
| + return this.createTBody.apply(this, args);
|
| }
|
| [dartx.createFragment](html, opts) {
|
| let validator = opts && 'validator' in opts ? opts.validator : null;
|
| @@ -72806,29 +72806,29 @@ html.TableElement = class TableElement extends html.HtmlElement {
|
| set [dartx.tHead](value) {
|
| this.tHead = value;
|
| }
|
| - [_createCaption]() {
|
| - return this.createCaption();
|
| + [_createCaption](...args) {
|
| + return this.createCaption.apply(this, args);
|
| }
|
| - [_createTFoot]() {
|
| - return this.createTFoot();
|
| + [_createTFoot](...args) {
|
| + return this.createTFoot.apply(this, args);
|
| }
|
| - [_createTHead]() {
|
| - return this.createTHead();
|
| + [_createTHead](...args) {
|
| + return this.createTHead.apply(this, args);
|
| }
|
| - [dartx.deleteCaption]() {
|
| - return this.deleteCaption();
|
| + [dartx.deleteCaption](...args) {
|
| + return this.deleteCaption.apply(this, args);
|
| }
|
| - [dartx.deleteRow](index) {
|
| - return this.deleteRow(index);
|
| + [dartx.deleteRow](...args) {
|
| + return this.deleteRow.apply(this, args);
|
| }
|
| - [dartx.deleteTFoot]() {
|
| - return this.deleteTFoot();
|
| + [dartx.deleteTFoot](...args) {
|
| + return this.deleteTFoot.apply(this, args);
|
| }
|
| - [dartx.deleteTHead]() {
|
| - return this.deleteTHead();
|
| + [dartx.deleteTHead](...args) {
|
| + return this.deleteTHead.apply(this, args);
|
| }
|
| - [_insertRow](index) {
|
| - return this.insertRow(index);
|
| + [_insertRow](...args) {
|
| + return this.insertRow.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.TableElement, 'created');
|
| @@ -72923,11 +72923,11 @@ html.TableRowElement = class TableRowElement extends html.HtmlElement {
|
| get [dartx.sectionRowIndex]() {
|
| return this.sectionRowIndex;
|
| }
|
| - [dartx.deleteCell](index) {
|
| - return this.deleteCell(index);
|
| + [dartx.deleteCell](...args) {
|
| + return this.deleteCell.apply(this, args);
|
| }
|
| - [_insertCell](index) {
|
| - return this.insertCell(index);
|
| + [_insertCell](...args) {
|
| + return this.insertCell.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.TableRowElement, 'created');
|
| @@ -72989,11 +72989,11 @@ html.TableSectionElement = class TableSectionElement extends html.HtmlElement {
|
| get [_rows]() {
|
| return this.rows;
|
| }
|
| - [dartx.deleteRow](index) {
|
| - return this.deleteRow(index);
|
| + [dartx.deleteRow](...args) {
|
| + return this.deleteRow.apply(this, args);
|
| }
|
| - [_insertRow](index) {
|
| - return this.insertRow(index);
|
| + [_insertRow](...args) {
|
| + return this.insertRow.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.TableSectionElement, 'created');
|
| @@ -73257,23 +73257,23 @@ html.TextAreaElement = class TextAreaElement extends html.HtmlElement {
|
| set [dartx.wrap](value) {
|
| this.wrap = value;
|
| }
|
| - [dartx.checkValidity]() {
|
| - return this.checkValidity();
|
| + [dartx.checkValidity](...args) {
|
| + return this.checkValidity.apply(this, args);
|
| }
|
| - [dartx.reportValidity]() {
|
| - return this.reportValidity();
|
| + [dartx.reportValidity](...args) {
|
| + return this.reportValidity.apply(this, args);
|
| }
|
| - [dartx.select]() {
|
| - return this.select();
|
| + [dartx.select](...args) {
|
| + return this.select.apply(this, args);
|
| }
|
| - [dartx.setCustomValidity](error) {
|
| - return this.setCustomValidity(error);
|
| + [dartx.setCustomValidity](...args) {
|
| + return this.setCustomValidity.apply(this, args);
|
| }
|
| - [dartx.setRangeText](replacement, opts) {
|
| - return this.setRangeText(replacement, opts);
|
| + [dartx.setRangeText](...args) {
|
| + return this.setRangeText.apply(this, args);
|
| }
|
| - [dartx.setSelectionRange](start, end, direction) {
|
| - return this.setSelectionRange(start, end, direction);
|
| + [dartx.setSelectionRange](...args) {
|
| + return this.setSelectionRange.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.TextAreaElement, 'created');
|
| @@ -73344,8 +73344,8 @@ html.TextEvent = class TextEvent extends html.UIEvent {
|
| get [dartx.data]() {
|
| return this.data;
|
| }
|
| - [_initTextEvent](typeArg, canBubbleArg, cancelableArg, viewArg, dataArg) {
|
| - return this.initTextEvent(typeArg, canBubbleArg, cancelableArg, viewArg, dataArg);
|
| + [_initTextEvent](...args) {
|
| + return this.initTextEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.TextEvent, {
|
| @@ -73476,17 +73476,17 @@ html.TextTrack = class TextTrack extends html.EventTarget {
|
| get [dartx.regions]() {
|
| return this.regions;
|
| }
|
| - [dartx.addCue](cue) {
|
| - return this.addCue(cue);
|
| + [dartx.addCue](...args) {
|
| + return this.addCue.apply(this, args);
|
| }
|
| - [dartx.addRegion](region) {
|
| - return this.addRegion(region);
|
| + [dartx.addRegion](...args) {
|
| + return this.addRegion.apply(this, args);
|
| }
|
| - [dartx.removeCue](cue) {
|
| - return this.removeCue(cue);
|
| + [dartx.removeCue](...args) {
|
| + return this.removeCue.apply(this, args);
|
| }
|
| - [dartx.removeRegion](region) {
|
| - return this.removeRegion(region);
|
| + [dartx.removeRegion](...args) {
|
| + return this.removeRegion.apply(this, args);
|
| }
|
| get [dartx.onCueChange]() {
|
| return html.TextTrack.cueChangeEvent.forTarget(this);
|
| @@ -73647,11 +73647,11 @@ html.TextTrackCueList = class TextTrackCueList extends dart.mixin(_interceptors.
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.getCueById](id) {
|
| - return this.getCueById(id);
|
| + [dartx.getCueById](...args) {
|
| + return this.getCueById.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html.TextTrackCueList[dart.implements] = () => [ListOfTextTrackCue(), _js_helper.JavaScriptIndexingBehavior];
|
| @@ -73729,11 +73729,11 @@ html.TextTrackList = class TextTrackList extends dart.mixin(html.EventTarget, co
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.getTrackById](id) {
|
| - return this.getTrackById(id);
|
| + [dartx.getTrackById](...args) {
|
| + return this.getTrackById.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| get [dartx.onAddTrack]() {
|
| return html.TextTrackList.addTrackEvent.forTarget(this);
|
| @@ -73787,11 +73787,11 @@ html.TimeRanges = class TimeRanges extends _interceptors.Interceptor {
|
| get [dartx.length]() {
|
| return this.length;
|
| }
|
| - [dartx.end](index) {
|
| - return this.end(index);
|
| + [dartx.end](...args) {
|
| + return this.end.apply(this, args);
|
| }
|
| - [dartx.start](index) {
|
| - return this.start(index);
|
| + [dartx.start](...args) {
|
| + return this.start.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.TimeRanges, {
|
| @@ -74014,8 +74014,8 @@ html.TouchEvent = class TouchEvent extends html.UIEvent {
|
| get [dartx.touches]() {
|
| return this.touches;
|
| }
|
| - [_initTouchEvent](touches, targetTouches, changedTouches, type, view, unused1, unused2, unused3, unused4, ctrlKey, altKey, shiftKey, metaKey) {
|
| - return this.initTouchEvent(touches, targetTouches, changedTouches, type, view, unused1, unused2, unused3, unused4, ctrlKey, altKey, shiftKey, metaKey);
|
| + [_initTouchEvent](...args) {
|
| + return this.initTouchEvent.apply(this, args);
|
| }
|
| static get supported() {
|
| return html_common.Device.isEventTypeSupported('TouchEvent');
|
| @@ -74098,8 +74098,8 @@ html.TouchList = class TouchList extends dart.mixin(_interceptors.Interceptor, c
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html.TouchList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfTouch()];
|
| @@ -74209,8 +74209,8 @@ html.TrackDefaultList = class TrackDefaultList extends _interceptors.Interceptor
|
| get [dartx.length]() {
|
| return this.length;
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.TrackDefaultList, {
|
| @@ -74446,26 +74446,26 @@ html.TreeWalker = class TreeWalker extends _interceptors.Interceptor {
|
| get [dartx.whatToShow]() {
|
| return this.whatToShow;
|
| }
|
| - [dartx.firstChild]() {
|
| - return this.firstChild();
|
| + [dartx.firstChild](...args) {
|
| + return this.firstChild.apply(this, args);
|
| }
|
| - [dartx.lastChild]() {
|
| - return this.lastChild();
|
| + [dartx.lastChild](...args) {
|
| + return this.lastChild.apply(this, args);
|
| }
|
| - [dartx.nextNode]() {
|
| - return this.nextNode();
|
| + [dartx.nextNode](...args) {
|
| + return this.nextNode.apply(this, args);
|
| }
|
| - [dartx.nextSibling]() {
|
| - return this.nextSibling();
|
| + [dartx.nextSibling](...args) {
|
| + return this.nextSibling.apply(this, args);
|
| }
|
| - [dartx.parentNode]() {
|
| - return this.parentNode();
|
| + [dartx.parentNode](...args) {
|
| + return this.parentNode.apply(this, args);
|
| }
|
| - [dartx.previousNode]() {
|
| - return this.previousNode();
|
| + [dartx.previousNode](...args) {
|
| + return this.previousNode.apply(this, args);
|
| }
|
| - [dartx.previousSibling]() {
|
| - return this.previousSibling();
|
| + [dartx.previousSibling](...args) {
|
| + return this.previousSibling.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.TreeWalker, {
|
| @@ -75175,14 +75175,14 @@ html.VideoElement = class VideoElement extends html.MediaElement {
|
| set [dartx.width](value) {
|
| this.width = value;
|
| }
|
| - [dartx.getVideoPlaybackQuality]() {
|
| - return this.getVideoPlaybackQuality();
|
| + [dartx.getVideoPlaybackQuality](...args) {
|
| + return this.getVideoPlaybackQuality.apply(this, args);
|
| }
|
| - [dartx.enterFullscreen]() {
|
| - return this.webkitEnterFullscreen();
|
| + [dartx.enterFullscreen](...args) {
|
| + return this.webkitEnterFullscreen.apply(this, args);
|
| }
|
| - [dartx.exitFullscreen]() {
|
| - return this.webkitExitFullscreen();
|
| + [dartx.exitFullscreen](...args) {
|
| + return this.webkitExitFullscreen.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(html.VideoElement, 'created');
|
| @@ -75299,11 +75299,11 @@ html.VideoTrackList = class VideoTrackList extends html.EventTarget {
|
| get [dartx.selectedIndex]() {
|
| return this.selectedIndex;
|
| }
|
| - [__getter__](index) {
|
| - return this.__getter__(index);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [dartx.getTrackById](id) {
|
| - return this.getTrackById(id);
|
| + [dartx.getTrackById](...args) {
|
| + return this.getTrackById.apply(this, args);
|
| }
|
| get [dartx.onChange]() {
|
| return html.VideoTrackList.changeEvent.forTarget(this);
|
| @@ -75398,8 +75398,8 @@ html.VttCue = class VttCue extends html.TextTrackCue {
|
| set [dartx.vertical](value) {
|
| this.vertical = value;
|
| }
|
| - [dartx.getCueAsHtml]() {
|
| - return this.getCueAsHTML();
|
| + [dartx.getCueAsHtml](...args) {
|
| + return this.getCueAsHTML.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.VttCue, {
|
| @@ -75527,11 +75527,11 @@ html.VttRegionList = class VttRegionList extends _interceptors.Interceptor {
|
| get [dartx.length]() {
|
| return this.length;
|
| }
|
| - [dartx.getRegionById](id) {
|
| - return this.getRegionById(id);
|
| + [dartx.getRegionById](...args) {
|
| + return this.getRegionById.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.VttRegionList, {
|
| @@ -75602,23 +75602,23 @@ html.WebSocket = class WebSocket extends html.EventTarget {
|
| get [dartx.url]() {
|
| return this.url;
|
| }
|
| - [dartx.close](code, reason) {
|
| - return this.close(code, reason);
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| - [dartx.send](data) {
|
| - return this.send(data);
|
| + [dartx.send](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.sendBlob](data) {
|
| - return this.send(data);
|
| + [dartx.sendBlob](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.sendByteBuffer](data) {
|
| - return this.send(data);
|
| + [dartx.sendByteBuffer](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.sendString](data) {
|
| - return this.send(data);
|
| + [dartx.sendString](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| - [dartx.sendTypedData](data) {
|
| - return this.send(data);
|
| + [dartx.sendTypedData](...args) {
|
| + return this.send.apply(this, args);
|
| }
|
| get [dartx.onClose]() {
|
| return html.WebSocket.closeEvent.forTarget(this);
|
| @@ -75789,14 +75789,14 @@ html.WheelEvent = class WheelEvent extends html.MouseEvent {
|
| get [_hasInitMouseScrollEvent]() {
|
| return !!this.initMouseScrollEvent;
|
| }
|
| - [_initMouseScrollEvent](type, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, axis) {
|
| - return this.initMouseScrollEvent(type, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, axis);
|
| + [_initMouseScrollEvent](...args) {
|
| + return this.initMouseScrollEvent.apply(this, args);
|
| }
|
| get [_hasInitWheelEvent]() {
|
| return !!this.initWheelEvent;
|
| }
|
| - [_initWheelEvent](eventType, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, button, relatedTarget, modifiersList, deltaX, deltaY, deltaZ, deltaMode) {
|
| - return this.initWheelEvent(eventType, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, button, relatedTarget, modifiersList, deltaX, deltaY, deltaZ, deltaMode);
|
| + [_initWheelEvent](...args) {
|
| + return this.initWheelEvent.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.WheelEvent, {
|
| @@ -76058,11 +76058,11 @@ html.Window = class Window extends html.EventTarget {
|
| this[_ensureRequestAnimationFrame]();
|
| this[_cancelAnimationFrame](id);
|
| }
|
| - [_requestAnimationFrame](callback) {
|
| - return this.requestAnimationFrame(callback);
|
| + [_requestAnimationFrame](...args) {
|
| + return this.requestAnimationFrame.apply(this, args);
|
| }
|
| - [_cancelAnimationFrame](id) {
|
| - return this.cancelAnimationFrame(id);
|
| + [_cancelAnimationFrame](...args) {
|
| + return this.cancelAnimationFrame.apply(this, args);
|
| }
|
| [_ensureRequestAnimationFrame]() {
|
| if (!!(this.requestAnimationFrame && this.cancelAnimationFrame)) return;
|
| @@ -76255,20 +76255,20 @@ html.Window = class Window extends html.EventTarget {
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [__getter___1](index) {
|
| - return this.__getter__(index);
|
| + [__getter___1](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [__getter___2](name) {
|
| - return this.__getter__(name);
|
| + [__getter___2](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [dartx.alert](message) {
|
| - return this.alert(message);
|
| + [dartx.alert](...args) {
|
| + return this.alert.apply(this, args);
|
| }
|
| - [dartx.close]() {
|
| - return this.close();
|
| + [dartx.close](...args) {
|
| + return this.close.apply(this, args);
|
| }
|
| - [dartx.confirm](message) {
|
| - return this.confirm(message);
|
| + [dartx.confirm](...args) {
|
| + return this.confirm.apply(this, args);
|
| }
|
| [dartx.fetch](input, init) {
|
| if (init === void 0) init = null;
|
| @@ -76278,35 +76278,35 @@ html.Window = class Window extends html.EventTarget {
|
| }
|
| return this[_fetch_2](input);
|
| }
|
| - [_fetch_1](input, init) {
|
| - return this.fetch(input, init);
|
| + [_fetch_1](...args) {
|
| + return this.fetch.apply(this, args);
|
| }
|
| - [_fetch_2](input) {
|
| - return this.fetch(input);
|
| + [_fetch_2](...args) {
|
| + return this.fetch.apply(this, args);
|
| }
|
| - [dartx.find](string, caseSensitive, backwards, wrap, wholeWord, searchInFrames, showDialog) {
|
| - return this.find(string, caseSensitive, backwards, wrap, wholeWord, searchInFrames, showDialog);
|
| + [dartx.find](...args) {
|
| + return this.find.apply(this, args);
|
| }
|
| - [_getComputedStyle](elt, pseudoElt) {
|
| - return this.getComputedStyle(elt, pseudoElt);
|
| + [_getComputedStyle](...args) {
|
| + return this.getComputedStyle.apply(this, args);
|
| }
|
| - [dartx.getMatchedCssRules](element, pseudoElement) {
|
| - return this.getMatchedCSSRules(element, pseudoElement);
|
| + [dartx.getMatchedCssRules](...args) {
|
| + return this.getMatchedCSSRules.apply(this, args);
|
| }
|
| - [dartx.getSelection]() {
|
| - return this.getSelection();
|
| + [dartx.getSelection](...args) {
|
| + return this.getSelection.apply(this, args);
|
| }
|
| - [dartx.matchMedia](query) {
|
| - return this.matchMedia(query);
|
| + [dartx.matchMedia](...args) {
|
| + return this.matchMedia.apply(this, args);
|
| }
|
| - [dartx.moveBy](x, y) {
|
| - return this.moveBy(x, y);
|
| + [dartx.moveBy](...args) {
|
| + return this.moveBy.apply(this, args);
|
| }
|
| - [_moveTo](x, y) {
|
| - return this.moveTo(x, y);
|
| + [_moveTo](...args) {
|
| + return this.moveTo.apply(this, args);
|
| }
|
| - [dartx.openDatabase](name, version, displayName, estimatedSize, creationCallback) {
|
| - return this.openDatabase(name, version, displayName, estimatedSize, creationCallback);
|
| + [dartx.openDatabase](...args) {
|
| + return this.openDatabase.apply(this, args);
|
| }
|
| [dartx.postMessage](message, targetOrigin, transfer) {
|
| if (transfer === void 0) transfer = null;
|
| @@ -76319,20 +76319,20 @@ html.Window = class Window extends html.EventTarget {
|
| this[_postMessage_2](message_1, targetOrigin);
|
| return;
|
| }
|
| - [_postMessage_1](message, targetOrigin, transfer) {
|
| - return this.postMessage(message, targetOrigin, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message, targetOrigin) {
|
| - return this.postMessage(message, targetOrigin);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [dartx.print]() {
|
| - return this.print();
|
| + [dartx.print](...args) {
|
| + return this.print.apply(this, args);
|
| }
|
| - [dartx.resizeBy](x, y) {
|
| - return this.resizeBy(x, y);
|
| + [dartx.resizeBy](...args) {
|
| + return this.resizeBy.apply(this, args);
|
| }
|
| - [dartx.resizeTo](x, y) {
|
| - return this.resizeTo(x, y);
|
| + [dartx.resizeTo](...args) {
|
| + return this.resizeTo.apply(this, args);
|
| }
|
| [dartx.scroll](options_OR_x, y, scrollOptions) {
|
| if (options_OR_x === void 0) options_OR_x = null;
|
| @@ -76362,20 +76362,20 @@ html.Window = class Window extends html.EventTarget {
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_scroll_1]() {
|
| - return this.scroll();
|
| + [_scroll_1](...args) {
|
| + return this.scroll.apply(this, args);
|
| }
|
| - [_scroll_2](options) {
|
| - return this.scroll(options);
|
| + [_scroll_2](...args) {
|
| + return this.scroll.apply(this, args);
|
| }
|
| - [_scroll_3](x, y) {
|
| - return this.scroll(x, y);
|
| + [_scroll_3](...args) {
|
| + return this.scroll.apply(this, args);
|
| }
|
| - [_scroll_4](x, y) {
|
| - return this.scroll(x, y);
|
| + [_scroll_4](...args) {
|
| + return this.scroll.apply(this, args);
|
| }
|
| - [_scroll_5](x, y, scrollOptions) {
|
| - return this.scroll(x, y, scrollOptions);
|
| + [_scroll_5](...args) {
|
| + return this.scroll.apply(this, args);
|
| }
|
| [dartx.scrollBy](options_OR_x, y, scrollOptions) {
|
| if (options_OR_x === void 0) options_OR_x = null;
|
| @@ -76405,20 +76405,20 @@ html.Window = class Window extends html.EventTarget {
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_scrollBy_1]() {
|
| - return this.scrollBy();
|
| + [_scrollBy_1](...args) {
|
| + return this.scrollBy.apply(this, args);
|
| }
|
| - [_scrollBy_2](options) {
|
| - return this.scrollBy(options);
|
| + [_scrollBy_2](...args) {
|
| + return this.scrollBy.apply(this, args);
|
| }
|
| - [_scrollBy_3](x, y) {
|
| - return this.scrollBy(x, y);
|
| + [_scrollBy_3](...args) {
|
| + return this.scrollBy.apply(this, args);
|
| }
|
| - [_scrollBy_4](x, y) {
|
| - return this.scrollBy(x, y);
|
| + [_scrollBy_4](...args) {
|
| + return this.scrollBy.apply(this, args);
|
| }
|
| - [_scrollBy_5](x, y, scrollOptions) {
|
| - return this.scrollBy(x, y, scrollOptions);
|
| + [_scrollBy_5](...args) {
|
| + return this.scrollBy.apply(this, args);
|
| }
|
| [dartx.scrollTo](options_OR_x, y, scrollOptions) {
|
| if (options_OR_x === void 0) options_OR_x = null;
|
| @@ -76448,26 +76448,26 @@ html.Window = class Window extends html.EventTarget {
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_scrollTo_1]() {
|
| - return this.scrollTo();
|
| + [_scrollTo_1](...args) {
|
| + return this.scrollTo.apply(this, args);
|
| }
|
| - [_scrollTo_2](options) {
|
| - return this.scrollTo(options);
|
| + [_scrollTo_2](...args) {
|
| + return this.scrollTo.apply(this, args);
|
| }
|
| - [_scrollTo_3](x, y) {
|
| - return this.scrollTo(x, y);
|
| + [_scrollTo_3](...args) {
|
| + return this.scrollTo.apply(this, args);
|
| }
|
| - [_scrollTo_4](x, y) {
|
| - return this.scrollTo(x, y);
|
| + [_scrollTo_4](...args) {
|
| + return this.scrollTo.apply(this, args);
|
| }
|
| - [_scrollTo_5](x, y, scrollOptions) {
|
| - return this.scrollTo(x, y, scrollOptions);
|
| + [_scrollTo_5](...args) {
|
| + return this.scrollTo.apply(this, args);
|
| }
|
| - [dartx.stop]() {
|
| - return this.stop();
|
| + [dartx.stop](...args) {
|
| + return this.stop.apply(this, args);
|
| }
|
| - [__requestFileSystem](type, size, successCallback, errorCallback) {
|
| - return this.webkitRequestFileSystem(type, size, successCallback, errorCallback);
|
| + [__requestFileSystem](...args) {
|
| + return this.webkitRequestFileSystem.apply(this, args);
|
| }
|
| [_requestFileSystem](type, size) {
|
| let completer = CompleterOfFileSystem().new();
|
| @@ -76478,8 +76478,8 @@ html.Window = class Window extends html.EventTarget {
|
| }, FileErrorTovoid()));
|
| return completer.future;
|
| }
|
| - [_resolveLocalFileSystemUrl](url, successCallback, errorCallback) {
|
| - return this.webkitResolveLocalFileSystemURL(url, successCallback, errorCallback);
|
| + [_resolveLocalFileSystemUrl](...args) {
|
| + return this.webkitResolveLocalFileSystemURL.apply(this, args);
|
| }
|
| [dartx.resolveLocalFileSystemUrl](url) {
|
| let completer = CompleterOfEntry().new();
|
| @@ -76490,29 +76490,29 @@ html.Window = class Window extends html.EventTarget {
|
| }, FileErrorTovoid()));
|
| return completer.future;
|
| }
|
| - [dartx.atob](atob) {
|
| - return this.atob(atob);
|
| + [dartx.atob](...args) {
|
| + return this.atob.apply(this, args);
|
| }
|
| - [dartx.btoa](btoa) {
|
| - return this.btoa(btoa);
|
| + [dartx.btoa](...args) {
|
| + return this.btoa.apply(this, args);
|
| }
|
| - [_setInterval_String](handler, timeout, arguments$) {
|
| - return this.setInterval(handler, timeout, arguments$);
|
| + [_setInterval_String](...args) {
|
| + return this.setInterval.apply(this, args);
|
| }
|
| - [_setTimeout_String](handler, timeout, arguments$) {
|
| - return this.setTimeout(handler, timeout, arguments$);
|
| + [_setTimeout_String](...args) {
|
| + return this.setTimeout.apply(this, args);
|
| }
|
| - [_clearInterval](handle) {
|
| - return this.clearInterval(handle);
|
| + [_clearInterval](...args) {
|
| + return this.clearInterval.apply(this, args);
|
| }
|
| - [_clearTimeout](handle) {
|
| - return this.clearTimeout(handle);
|
| + [_clearTimeout](...args) {
|
| + return this.clearTimeout.apply(this, args);
|
| }
|
| - [_setInterval](handler, timeout) {
|
| - return this.setInterval(handler, timeout);
|
| + [_setInterval](...args) {
|
| + return this.setInterval.apply(this, args);
|
| }
|
| - [_setTimeout](handler, timeout) {
|
| - return this.setTimeout(handler, timeout);
|
| + [_setTimeout](...args) {
|
| + return this.setTimeout.apply(this, args);
|
| }
|
| get [dartx.onContentLoaded]() {
|
| return html.Window.contentLoadedEvent.forTarget(this);
|
| @@ -77226,8 +77226,8 @@ html.WindowClient = class WindowClient extends html.Client {
|
| get [dartx.visibilityState]() {
|
| return this.visibilityState;
|
| }
|
| - [dartx.focus]() {
|
| - return this.focus();
|
| + [dartx.focus](...args) {
|
| + return this.focus.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.WindowClient, {
|
| @@ -77357,14 +77357,14 @@ html.Worker = class Worker extends html.EventTarget {
|
| this[_postMessage_2](message_1);
|
| return;
|
| }
|
| - [_postMessage_1](message, transfer) {
|
| - return this.postMessage(message, transfer);
|
| + [_postMessage_1](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [_postMessage_2](message) {
|
| - return this.postMessage(message);
|
| + [_postMessage_2](...args) {
|
| + return this.postMessage.apply(this, args);
|
| }
|
| - [dartx.terminate]() {
|
| - return this.terminate();
|
| + [dartx.terminate](...args) {
|
| + return this.terminate.apply(this, args);
|
| }
|
| get [dartx.onError]() {
|
| return html.Worker.errorEvent.forTarget(this);
|
| @@ -77435,35 +77435,35 @@ html.WorkerPerformance = class WorkerPerformance extends html.EventTarget {
|
| get [dartx.memory]() {
|
| return this.memory;
|
| }
|
| - [dartx.clearMarks](markName) {
|
| - return this.clearMarks(markName);
|
| + [dartx.clearMarks](...args) {
|
| + return this.clearMarks.apply(this, args);
|
| }
|
| - [dartx.clearMeasures](measureName) {
|
| - return this.clearMeasures(measureName);
|
| + [dartx.clearMeasures](...args) {
|
| + return this.clearMeasures.apply(this, args);
|
| }
|
| - [dartx.getEntries]() {
|
| - return this.getEntries();
|
| + [dartx.getEntries](...args) {
|
| + return this.getEntries.apply(this, args);
|
| }
|
| - [dartx.getEntriesByName](name, entryType) {
|
| - return this.getEntriesByName(name, entryType);
|
| + [dartx.getEntriesByName](...args) {
|
| + return this.getEntriesByName.apply(this, args);
|
| }
|
| - [dartx.getEntriesByType](entryType) {
|
| - return this.getEntriesByType(entryType);
|
| + [dartx.getEntriesByType](...args) {
|
| + return this.getEntriesByType.apply(this, args);
|
| }
|
| - [dartx.mark](markName) {
|
| - return this.mark(markName);
|
| + [dartx.mark](...args) {
|
| + return this.mark.apply(this, args);
|
| }
|
| - [dartx.measure](measureName, startMark, endMark) {
|
| - return this.measure(measureName, startMark, endMark);
|
| + [dartx.measure](...args) {
|
| + return this.measure.apply(this, args);
|
| }
|
| - [dartx.now]() {
|
| - return this.now();
|
| + [dartx.now](...args) {
|
| + return this.now.apply(this, args);
|
| }
|
| - [dartx.clearResourceTimings]() {
|
| - return this.webkitClearResourceTimings();
|
| + [dartx.clearResourceTimings](...args) {
|
| + return this.webkitClearResourceTimings.apply(this, args);
|
| }
|
| - [dartx.setResourceTimingBufferSize](maxSize) {
|
| - return this.webkitSetResourceTimingBufferSize(maxSize);
|
| + [dartx.setResourceTimingBufferSize](...args) {
|
| + return this.webkitSetResourceTimingBufferSize.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.WorkerPerformance, {
|
| @@ -77498,14 +77498,14 @@ html.XPathEvaluator = class XPathEvaluator extends _interceptors.Interceptor {
|
| static _create_1() {
|
| return new XPathEvaluator();
|
| }
|
| - [dartx.createExpression](expression, resolver) {
|
| - return this.createExpression(expression, resolver);
|
| + [dartx.createExpression](...args) {
|
| + return this.createExpression.apply(this, args);
|
| }
|
| - [dartx.createNSResolver](nodeResolver) {
|
| - return this.createNSResolver(nodeResolver);
|
| + [dartx.createNSResolver](...args) {
|
| + return this.createNSResolver.apply(this, args);
|
| }
|
| - [dartx.evaluate](expression, contextNode, resolver, type, inResult) {
|
| - return this.evaluate(expression, contextNode, resolver, type, inResult);
|
| + [dartx.evaluate](...args) {
|
| + return this.evaluate.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.XPathEvaluator, {
|
| @@ -77529,8 +77529,8 @@ html.XPathExpression = class XPathExpression extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.evaluate](contextNode, type, inResult) {
|
| - return this.evaluate(contextNode, type, inResult);
|
| + [dartx.evaluate](...args) {
|
| + return this.evaluate.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.XPathExpression, {
|
| @@ -77545,8 +77545,8 @@ html.XPathNSResolver = class XPathNSResolver extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.lookupNamespaceUri](prefix) {
|
| - return this.lookupNamespaceURI(prefix);
|
| + [dartx.lookupNamespaceUri](...args) {
|
| + return this.lookupNamespaceURI.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.XPathNSResolver, {
|
| @@ -77590,11 +77590,11 @@ html.XPathResult = class XPathResult extends _interceptors.Interceptor {
|
| get [dartx.stringValue]() {
|
| return this.stringValue;
|
| }
|
| - [dartx.iterateNext]() {
|
| - return this.iterateNext();
|
| + [dartx.iterateNext](...args) {
|
| + return this.iterateNext.apply(this, args);
|
| }
|
| - [dartx.snapshotItem](index) {
|
| - return this.snapshotItem(index);
|
| + [dartx.snapshotItem](...args) {
|
| + return this.snapshotItem.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.XPathResult, {
|
| @@ -77658,8 +77658,8 @@ html.XmlSerializer = class XmlSerializer extends _interceptors.Interceptor {
|
| static _create_1() {
|
| return new XMLSerializer();
|
| }
|
| - [dartx.serializeToString](root) {
|
| - return this.serializeToString(root);
|
| + [dartx.serializeToString](...args) {
|
| + return this.serializeToString.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.XmlSerializer, {
|
| @@ -77695,29 +77695,29 @@ html.XsltProcessor = class XsltProcessor extends _interceptors.Interceptor {
|
| static get supported() {
|
| return !!window.XSLTProcessor;
|
| }
|
| - [dartx.clearParameters]() {
|
| - return this.clearParameters();
|
| + [dartx.clearParameters](...args) {
|
| + return this.clearParameters.apply(this, args);
|
| }
|
| - [dartx.getParameter](namespaceURI, localName) {
|
| - return this.getParameter(namespaceURI, localName);
|
| + [dartx.getParameter](...args) {
|
| + return this.getParameter.apply(this, args);
|
| }
|
| - [dartx.importStylesheet](style) {
|
| - return this.importStylesheet(style);
|
| + [dartx.importStylesheet](...args) {
|
| + return this.importStylesheet.apply(this, args);
|
| }
|
| - [dartx.removeParameter](namespaceURI, localName) {
|
| - return this.removeParameter(namespaceURI, localName);
|
| + [dartx.removeParameter](...args) {
|
| + return this.removeParameter.apply(this, args);
|
| }
|
| - [dartx.reset]() {
|
| - return this.reset();
|
| + [dartx.reset](...args) {
|
| + return this.reset.apply(this, args);
|
| }
|
| - [dartx.setParameter](namespaceURI, localName, value) {
|
| - return this.setParameter(namespaceURI, localName, value);
|
| + [dartx.setParameter](...args) {
|
| + return this.setParameter.apply(this, args);
|
| }
|
| - [dartx.transformToDocument](source) {
|
| - return this.transformToDocument(source);
|
| + [dartx.transformToDocument](...args) {
|
| + return this.transformToDocument.apply(this, args);
|
| }
|
| - [dartx.transformToFragment](source, output) {
|
| - return this.transformToFragment(source, output);
|
| + [dartx.transformToFragment](...args) {
|
| + return this.transformToFragment.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html.XsltProcessor, {
|
| @@ -77982,11 +77982,11 @@ html._ClientRectList = class _ClientRectList extends dart.mixin(_interceptors.In
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [__getter__](index) {
|
| - return this.__getter__(index);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html._ClientRectList[dart.implements] = () => [ListOfRectangleOfnum()];
|
| @@ -78062,8 +78062,8 @@ html._CssRuleList = class _CssRuleList extends dart.mixin(_interceptors.Intercep
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html._CssRuleList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfCssRule()];
|
| @@ -78315,8 +78315,8 @@ html._GamepadList = class _GamepadList extends dart.mixin(_interceptors.Intercep
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html._GamepadList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfGamepad()];
|
| @@ -78341,8 +78341,8 @@ html._HTMLAllCollection = class _HTMLAllCollection extends _interceptors.Interce
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [_item](index) {
|
| - return this.item(index);
|
| + [_item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html._HTMLAllCollection, {
|
| @@ -78506,26 +78506,26 @@ html._NamedNodeMap = class _NamedNodeMap extends dart.mixin(_interceptors.Interc
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.getNamedItem](name) {
|
| - return this.getNamedItem(name);
|
| + [dartx.getNamedItem](...args) {
|
| + return this.getNamedItem.apply(this, args);
|
| }
|
| - [dartx.getNamedItemNS](namespaceURI, localName) {
|
| - return this.getNamedItemNS(namespaceURI, localName);
|
| + [dartx.getNamedItemNS](...args) {
|
| + return this.getNamedItemNS.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| - [dartx.removeNamedItem](name) {
|
| - return this.removeNamedItem(name);
|
| + [dartx.removeNamedItem](...args) {
|
| + return this.removeNamedItem.apply(this, args);
|
| }
|
| - [dartx.removeNamedItemNS](namespaceURI, localName) {
|
| - return this.removeNamedItemNS(namespaceURI, localName);
|
| + [dartx.removeNamedItemNS](...args) {
|
| + return this.removeNamedItemNS.apply(this, args);
|
| }
|
| - [dartx.setNamedItem](attr) {
|
| - return this.setNamedItem(attr);
|
| + [dartx.setNamedItem](...args) {
|
| + return this.setNamedItem.apply(this, args);
|
| }
|
| - [dartx.setNamedItemNS](attr) {
|
| - return this.setNamedItemNS(attr);
|
| + [dartx.setNamedItemNS](...args) {
|
| + return this.setNamedItemNS.apply(this, args);
|
| }
|
| };
|
| html._NamedNodeMap[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfNode()];
|
| @@ -78607,8 +78607,8 @@ html._Request = class _Request extends html.Body {
|
| get [dartx.url]() {
|
| return this.url;
|
| }
|
| - [dartx.clone]() {
|
| - return this.clone();
|
| + [dartx.clone](...args) {
|
| + return this.clone.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(html._Request, {
|
| @@ -78734,8 +78734,8 @@ html._SpeechRecognitionResultList = class _SpeechRecognitionResultList extends d
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html._SpeechRecognitionResultList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfSpeechRecognitionResult()];
|
| @@ -78809,11 +78809,11 @@ html._StyleSheetList = class _StyleSheetList extends dart.mixin(_interceptors.In
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [__getter__](name) {
|
| - return this.__getter__(name);
|
| + [__getter__](...args) {
|
| + return this.__getter__.apply(this, args);
|
| }
|
| - [dartx.item](index) {
|
| - return this.item(index);
|
| + [dartx.item](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| html._StyleSheetList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, ListOfStyleSheet()];
|
| @@ -84005,11 +84005,11 @@ svg.SvgElement = class SvgElement extends html.Element {
|
| get [dartx.viewportElement]() {
|
| return this.viewportElement;
|
| }
|
| - [dartx.blur]() {
|
| - return this.blur();
|
| + [dartx.blur](...args) {
|
| + return this.blur.apply(this, args);
|
| }
|
| - [dartx.focus]() {
|
| - return this.focus();
|
| + [dartx.focus](...args) {
|
| + return this.focus.apply(this, args);
|
| }
|
| get [dartx.onAbort]() {
|
| return svg.SvgElement.abortEvent.forElement(this);
|
| @@ -84438,17 +84438,17 @@ svg.GraphicsElement = class GraphicsElement extends svg.SvgElement {
|
| get [dartx.transform]() {
|
| return this.transform;
|
| }
|
| - [dartx.getBBox]() {
|
| - return this.getBBox();
|
| + [dartx.getBBox](...args) {
|
| + return this.getBBox.apply(this, args);
|
| }
|
| - [dartx.getCtm]() {
|
| - return this.getCTM();
|
| + [dartx.getCtm](...args) {
|
| + return this.getCTM.apply(this, args);
|
| }
|
| - [dartx.getScreenCtm]() {
|
| - return this.getScreenCTM();
|
| + [dartx.getScreenCtm](...args) {
|
| + return this.getScreenCTM.apply(this, args);
|
| }
|
| - [dartx.getTransformToElement](element) {
|
| - return this.getTransformToElement(element);
|
| + [dartx.getTransformToElement](...args) {
|
| + return this.getTransformToElement.apply(this, args);
|
| }
|
| get [dartx.requiredExtensions]() {
|
| return this.requiredExtensions;
|
| @@ -84459,8 +84459,8 @@ svg.GraphicsElement = class GraphicsElement extends svg.SvgElement {
|
| get [dartx.systemLanguage]() {
|
| return this.systemLanguage;
|
| }
|
| - [dartx.hasExtension](extension) {
|
| - return this.hasExtension(extension);
|
| + [dartx.hasExtension](...args) {
|
| + return this.hasExtension.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(svg.GraphicsElement, 'created');
|
| @@ -84557,11 +84557,11 @@ svg.Angle = class Angle extends _interceptors.Interceptor {
|
| set [dartx.valueInSpecifiedUnits](value) {
|
| this.valueInSpecifiedUnits = value;
|
| }
|
| - [dartx.convertToSpecifiedUnits](unitType) {
|
| - return this.convertToSpecifiedUnits(unitType);
|
| + [dartx.convertToSpecifiedUnits](...args) {
|
| + return this.convertToSpecifiedUnits.apply(this, args);
|
| }
|
| - [dartx.newValueSpecifiedUnits](unitType, valueInSpecifiedUnits) {
|
| - return this.newValueSpecifiedUnits(unitType, valueInSpecifiedUnits);
|
| + [dartx.newValueSpecifiedUnits](...args) {
|
| + return this.newValueSpecifiedUnits.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(svg.Angle, {
|
| @@ -84621,26 +84621,26 @@ svg.AnimationElement = class AnimationElement extends svg.SvgElement {
|
| get [dartx.targetElement]() {
|
| return this.targetElement;
|
| }
|
| - [dartx.beginElement]() {
|
| - return this.beginElement();
|
| + [dartx.beginElement](...args) {
|
| + return this.beginElement.apply(this, args);
|
| }
|
| - [dartx.beginElementAt](offset) {
|
| - return this.beginElementAt(offset);
|
| + [dartx.beginElementAt](...args) {
|
| + return this.beginElementAt.apply(this, args);
|
| }
|
| - [dartx.endElement]() {
|
| - return this.endElement();
|
| + [dartx.endElement](...args) {
|
| + return this.endElement.apply(this, args);
|
| }
|
| - [dartx.endElementAt](offset) {
|
| - return this.endElementAt(offset);
|
| + [dartx.endElementAt](...args) {
|
| + return this.endElementAt.apply(this, args);
|
| }
|
| - [dartx.getCurrentTime]() {
|
| - return this.getCurrentTime();
|
| + [dartx.getCurrentTime](...args) {
|
| + return this.getCurrentTime.apply(this, args);
|
| }
|
| - [dartx.getSimpleDuration]() {
|
| - return this.getSimpleDuration();
|
| + [dartx.getSimpleDuration](...args) {
|
| + return this.getSimpleDuration.apply(this, args);
|
| }
|
| - [dartx.getStartTime]() {
|
| - return this.getStartTime();
|
| + [dartx.getStartTime](...args) {
|
| + return this.getStartTime.apply(this, args);
|
| }
|
| get [dartx.requiredExtensions]() {
|
| return this.requiredExtensions;
|
| @@ -84651,8 +84651,8 @@ svg.AnimationElement = class AnimationElement extends svg.SvgElement {
|
| get [dartx.systemLanguage]() {
|
| return this.systemLanguage;
|
| }
|
| - [dartx.hasExtension](extension) {
|
| - return this.hasExtension(extension);
|
| + [dartx.hasExtension](...args) {
|
| + return this.hasExtension.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(svg.AnimationElement, 'created');
|
| @@ -85055,11 +85055,11 @@ svg.GeometryElement = class GeometryElement extends svg.GraphicsElement {
|
| created() {
|
| super.created();
|
| }
|
| - [dartx.isPointInFill](point) {
|
| - return this.isPointInFill(point);
|
| + [dartx.isPointInFill](...args) {
|
| + return this.isPointInFill.apply(this, args);
|
| }
|
| - [dartx.isPointInStroke](point) {
|
| - return this.isPointInStroke(point);
|
| + [dartx.isPointInStroke](...args) {
|
| + return this.isPointInStroke.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(svg.GeometryElement, 'created');
|
| @@ -86185,8 +86185,8 @@ svg.FEGaussianBlurElement = class FEGaussianBlurElement extends svg.SvgElement {
|
| get [dartx.stdDeviationY]() {
|
| return this.stdDeviationY;
|
| }
|
| - [dartx.setStdDeviation](stdDeviationX, stdDeviationY) {
|
| - return this.setStdDeviation(stdDeviationX, stdDeviationY);
|
| + [dartx.setStdDeviation](...args) {
|
| + return this.setStdDeviation.apply(this, args);
|
| }
|
| get [dartx.height]() {
|
| return this.height;
|
| @@ -87271,11 +87271,11 @@ svg.Length = class Length extends _interceptors.Interceptor {
|
| set [dartx.valueInSpecifiedUnits](value) {
|
| this.valueInSpecifiedUnits = value;
|
| }
|
| - [dartx.convertToSpecifiedUnits](unitType) {
|
| - return this.convertToSpecifiedUnits(unitType);
|
| + [dartx.convertToSpecifiedUnits](...args) {
|
| + return this.convertToSpecifiedUnits.apply(this, args);
|
| }
|
| - [dartx.newValueSpecifiedUnits](unitType, valueInSpecifiedUnits) {
|
| - return this.newValueSpecifiedUnits(unitType, valueInSpecifiedUnits);
|
| + [dartx.newValueSpecifiedUnits](...args) {
|
| + return this.newValueSpecifiedUnits.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(svg.Length, {
|
| @@ -87380,29 +87380,29 @@ svg.LengthList = class LengthList extends dart.mixin(_interceptors.Interceptor,
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [__setter__](index, newItem) {
|
| - return this.__setter__(index, newItem);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [dartx.appendItem](newItem) {
|
| - return this.appendItem(newItem);
|
| + [dartx.appendItem](...args) {
|
| + return this.appendItem.apply(this, args);
|
| }
|
| - [dartx.clear]() {
|
| - return this.clear();
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.getItem](index) {
|
| - return this.getItem(index);
|
| + [dartx.getItem](...args) {
|
| + return this.getItem.apply(this, args);
|
| }
|
| - [dartx.initialize](newItem) {
|
| - return this.initialize(newItem);
|
| + [dartx.initialize](...args) {
|
| + return this.initialize.apply(this, args);
|
| }
|
| - [dartx.insertItemBefore](newItem, index) {
|
| - return this.insertItemBefore(newItem, index);
|
| + [dartx.insertItemBefore](...args) {
|
| + return this.insertItemBefore.apply(this, args);
|
| }
|
| - [dartx.removeItem](index) {
|
| - return this.removeItem(index);
|
| + [dartx.removeItem](...args) {
|
| + return this.removeItem.apply(this, args);
|
| }
|
| - [dartx.replaceItem](newItem, index) {
|
| - return this.replaceItem(newItem, index);
|
| + [dartx.replaceItem](...args) {
|
| + return this.replaceItem.apply(this, args);
|
| }
|
| };
|
| svg.LengthList[dart.implements] = () => [ListOfLength()];
|
| @@ -87634,11 +87634,11 @@ svg.MarkerElement = class MarkerElement extends svg.SvgElement {
|
| get [dartx.refY]() {
|
| return this.refY;
|
| }
|
| - [dartx.setOrientToAngle](angle) {
|
| - return this.setOrientToAngle(angle);
|
| + [dartx.setOrientToAngle](...args) {
|
| + return this.setOrientToAngle.apply(this, args);
|
| }
|
| - [dartx.setOrientToAuto]() {
|
| - return this.setOrientToAuto();
|
| + [dartx.setOrientToAuto](...args) {
|
| + return this.setOrientToAuto.apply(this, args);
|
| }
|
| get [dartx.preserveAspectRatio]() {
|
| return this.preserveAspectRatio;
|
| @@ -87744,8 +87744,8 @@ svg.MaskElement = class MaskElement extends svg.SvgElement {
|
| get [dartx.systemLanguage]() {
|
| return this.systemLanguage;
|
| }
|
| - [dartx.hasExtension](extension) {
|
| - return this.hasExtension(extension);
|
| + [dartx.hasExtension](...args) {
|
| + return this.hasExtension.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(svg.MaskElement, 'created');
|
| @@ -87829,38 +87829,38 @@ svg.Matrix = class Matrix extends _interceptors.Interceptor {
|
| set [dartx.f](value) {
|
| this.f = value;
|
| }
|
| - [dartx.flipX]() {
|
| - return this.flipX();
|
| + [dartx.flipX](...args) {
|
| + return this.flipX.apply(this, args);
|
| }
|
| - [dartx.flipY]() {
|
| - return this.flipY();
|
| + [dartx.flipY](...args) {
|
| + return this.flipY.apply(this, args);
|
| }
|
| - [dartx.inverse]() {
|
| - return this.inverse();
|
| + [dartx.inverse](...args) {
|
| + return this.inverse.apply(this, args);
|
| }
|
| - [dartx.multiply](secondMatrix) {
|
| - return this.multiply(secondMatrix);
|
| + [dartx.multiply](...args) {
|
| + return this.multiply.apply(this, args);
|
| }
|
| - [dartx.rotate](angle) {
|
| - return this.rotate(angle);
|
| + [dartx.rotate](...args) {
|
| + return this.rotate.apply(this, args);
|
| }
|
| - [dartx.rotateFromVector](x, y) {
|
| - return this.rotateFromVector(x, y);
|
| + [dartx.rotateFromVector](...args) {
|
| + return this.rotateFromVector.apply(this, args);
|
| }
|
| - [dartx.scale](scaleFactor) {
|
| - return this.scale(scaleFactor);
|
| + [dartx.scale](...args) {
|
| + return this.scale.apply(this, args);
|
| }
|
| - [dartx.scaleNonUniform](scaleFactorX, scaleFactorY) {
|
| - return this.scaleNonUniform(scaleFactorX, scaleFactorY);
|
| + [dartx.scaleNonUniform](...args) {
|
| + return this.scaleNonUniform.apply(this, args);
|
| }
|
| - [dartx.skewX](angle) {
|
| - return this.skewX(angle);
|
| + [dartx.skewX](...args) {
|
| + return this.skewX.apply(this, args);
|
| }
|
| - [dartx.skewY](angle) {
|
| - return this.skewY(angle);
|
| + [dartx.skewY](...args) {
|
| + return this.skewY.apply(this, args);
|
| }
|
| - [dartx.translate](x, y) {
|
| - return this.translate(x, y);
|
| + [dartx.translate](...args) {
|
| + return this.translate.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(svg.Matrix, {
|
| @@ -87986,29 +87986,29 @@ svg.NumberList = class NumberList extends dart.mixin(_interceptors.Interceptor,
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [__setter__](index, newItem) {
|
| - return this.__setter__(index, newItem);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [dartx.appendItem](newItem) {
|
| - return this.appendItem(newItem);
|
| + [dartx.appendItem](...args) {
|
| + return this.appendItem.apply(this, args);
|
| }
|
| - [dartx.clear]() {
|
| - return this.clear();
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.getItem](index) {
|
| - return this.getItem(index);
|
| + [dartx.getItem](...args) {
|
| + return this.getItem.apply(this, args);
|
| }
|
| - [dartx.initialize](newItem) {
|
| - return this.initialize(newItem);
|
| + [dartx.initialize](...args) {
|
| + return this.initialize.apply(this, args);
|
| }
|
| - [dartx.insertItemBefore](newItem, index) {
|
| - return this.insertItemBefore(newItem, index);
|
| + [dartx.insertItemBefore](...args) {
|
| + return this.insertItemBefore.apply(this, args);
|
| }
|
| - [dartx.removeItem](index) {
|
| - return this.removeItem(index);
|
| + [dartx.removeItem](...args) {
|
| + return this.removeItem.apply(this, args);
|
| }
|
| - [dartx.replaceItem](newItem, index) {
|
| - return this.replaceItem(newItem, index);
|
| + [dartx.replaceItem](...args) {
|
| + return this.replaceItem.apply(this, args);
|
| }
|
| };
|
| svg.NumberList[dart.implements] = () => [ListOfNumber()];
|
| @@ -88095,71 +88095,71 @@ svg.PathElement = class PathElement extends svg.GeometryElement {
|
| get [dartx.pathSegList]() {
|
| return this.pathSegList;
|
| }
|
| - [dartx.createSvgPathSegArcAbs](x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
|
| - return this.createSVGPathSegArcAbs(x, y, r1, r2, angle, largeArcFlag, sweepFlag);
|
| + [dartx.createSvgPathSegArcAbs](...args) {
|
| + return this.createSVGPathSegArcAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegArcRel](x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
|
| - return this.createSVGPathSegArcRel(x, y, r1, r2, angle, largeArcFlag, sweepFlag);
|
| + [dartx.createSvgPathSegArcRel](...args) {
|
| + return this.createSVGPathSegArcRel.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegClosePath]() {
|
| - return this.createSVGPathSegClosePath();
|
| + [dartx.createSvgPathSegClosePath](...args) {
|
| + return this.createSVGPathSegClosePath.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegCurvetoCubicAbs](x, y, x1, y1, x2, y2) {
|
| - return this.createSVGPathSegCurvetoCubicAbs(x, y, x1, y1, x2, y2);
|
| + [dartx.createSvgPathSegCurvetoCubicAbs](...args) {
|
| + return this.createSVGPathSegCurvetoCubicAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegCurvetoCubicRel](x, y, x1, y1, x2, y2) {
|
| - return this.createSVGPathSegCurvetoCubicRel(x, y, x1, y1, x2, y2);
|
| + [dartx.createSvgPathSegCurvetoCubicRel](...args) {
|
| + return this.createSVGPathSegCurvetoCubicRel.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegCurvetoCubicSmoothAbs](x, y, x2, y2) {
|
| - return this.createSVGPathSegCurvetoCubicSmoothAbs(x, y, x2, y2);
|
| + [dartx.createSvgPathSegCurvetoCubicSmoothAbs](...args) {
|
| + return this.createSVGPathSegCurvetoCubicSmoothAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegCurvetoCubicSmoothRel](x, y, x2, y2) {
|
| - return this.createSVGPathSegCurvetoCubicSmoothRel(x, y, x2, y2);
|
| + [dartx.createSvgPathSegCurvetoCubicSmoothRel](...args) {
|
| + return this.createSVGPathSegCurvetoCubicSmoothRel.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegCurvetoQuadraticAbs](x, y, x1, y1) {
|
| - return this.createSVGPathSegCurvetoQuadraticAbs(x, y, x1, y1);
|
| + [dartx.createSvgPathSegCurvetoQuadraticAbs](...args) {
|
| + return this.createSVGPathSegCurvetoQuadraticAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegCurvetoQuadraticRel](x, y, x1, y1) {
|
| - return this.createSVGPathSegCurvetoQuadraticRel(x, y, x1, y1);
|
| + [dartx.createSvgPathSegCurvetoQuadraticRel](...args) {
|
| + return this.createSVGPathSegCurvetoQuadraticRel.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegCurvetoQuadraticSmoothAbs](x, y) {
|
| - return this.createSVGPathSegCurvetoQuadraticSmoothAbs(x, y);
|
| + [dartx.createSvgPathSegCurvetoQuadraticSmoothAbs](...args) {
|
| + return this.createSVGPathSegCurvetoQuadraticSmoothAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegCurvetoQuadraticSmoothRel](x, y) {
|
| - return this.createSVGPathSegCurvetoQuadraticSmoothRel(x, y);
|
| + [dartx.createSvgPathSegCurvetoQuadraticSmoothRel](...args) {
|
| + return this.createSVGPathSegCurvetoQuadraticSmoothRel.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegLinetoAbs](x, y) {
|
| - return this.createSVGPathSegLinetoAbs(x, y);
|
| + [dartx.createSvgPathSegLinetoAbs](...args) {
|
| + return this.createSVGPathSegLinetoAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegLinetoHorizontalAbs](x) {
|
| - return this.createSVGPathSegLinetoHorizontalAbs(x);
|
| + [dartx.createSvgPathSegLinetoHorizontalAbs](...args) {
|
| + return this.createSVGPathSegLinetoHorizontalAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegLinetoHorizontalRel](x) {
|
| - return this.createSVGPathSegLinetoHorizontalRel(x);
|
| + [dartx.createSvgPathSegLinetoHorizontalRel](...args) {
|
| + return this.createSVGPathSegLinetoHorizontalRel.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegLinetoRel](x, y) {
|
| - return this.createSVGPathSegLinetoRel(x, y);
|
| + [dartx.createSvgPathSegLinetoRel](...args) {
|
| + return this.createSVGPathSegLinetoRel.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegLinetoVerticalAbs](y) {
|
| - return this.createSVGPathSegLinetoVerticalAbs(y);
|
| + [dartx.createSvgPathSegLinetoVerticalAbs](...args) {
|
| + return this.createSVGPathSegLinetoVerticalAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegLinetoVerticalRel](y) {
|
| - return this.createSVGPathSegLinetoVerticalRel(y);
|
| + [dartx.createSvgPathSegLinetoVerticalRel](...args) {
|
| + return this.createSVGPathSegLinetoVerticalRel.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegMovetoAbs](x, y) {
|
| - return this.createSVGPathSegMovetoAbs(x, y);
|
| + [dartx.createSvgPathSegMovetoAbs](...args) {
|
| + return this.createSVGPathSegMovetoAbs.apply(this, args);
|
| }
|
| - [dartx.createSvgPathSegMovetoRel](x, y) {
|
| - return this.createSVGPathSegMovetoRel(x, y);
|
| + [dartx.createSvgPathSegMovetoRel](...args) {
|
| + return this.createSVGPathSegMovetoRel.apply(this, args);
|
| }
|
| - [dartx.getPathSegAtLength](distance) {
|
| - return this.getPathSegAtLength(distance);
|
| + [dartx.getPathSegAtLength](...args) {
|
| + return this.getPathSegAtLength.apply(this, args);
|
| }
|
| - [dartx.getPointAtLength](distance) {
|
| - return this.getPointAtLength(distance);
|
| + [dartx.getPointAtLength](...args) {
|
| + return this.getPointAtLength.apply(this, args);
|
| }
|
| - [dartx.getTotalLength]() {
|
| - return this.getTotalLength();
|
| + [dartx.getTotalLength](...args) {
|
| + return this.getTotalLength.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(svg.PathElement, 'created');
|
| @@ -88971,29 +88971,29 @@ svg.PathSegList = class PathSegList extends dart.mixin(_interceptors.Interceptor
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [__setter__](index, newItem) {
|
| - return this.__setter__(index, newItem);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [dartx.appendItem](newItem) {
|
| - return this.appendItem(newItem);
|
| + [dartx.appendItem](...args) {
|
| + return this.appendItem.apply(this, args);
|
| }
|
| - [dartx.clear]() {
|
| - return this.clear();
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.getItem](index) {
|
| - return this.getItem(index);
|
| + [dartx.getItem](...args) {
|
| + return this.getItem.apply(this, args);
|
| }
|
| - [dartx.initialize](newItem) {
|
| - return this.initialize(newItem);
|
| + [dartx.initialize](...args) {
|
| + return this.initialize.apply(this, args);
|
| }
|
| - [dartx.insertItemBefore](newItem, index) {
|
| - return this.insertItemBefore(newItem, index);
|
| + [dartx.insertItemBefore](...args) {
|
| + return this.insertItemBefore.apply(this, args);
|
| }
|
| - [dartx.removeItem](index) {
|
| - return this.removeItem(index);
|
| + [dartx.removeItem](...args) {
|
| + return this.removeItem.apply(this, args);
|
| }
|
| - [dartx.replaceItem](newItem, index) {
|
| - return this.replaceItem(newItem, index);
|
| + [dartx.replaceItem](...args) {
|
| + return this.replaceItem.apply(this, args);
|
| }
|
| };
|
| svg.PathSegList[dart.implements] = () => [ListOfPathSeg()];
|
| @@ -89154,8 +89154,8 @@ svg.PatternElement = class PatternElement extends svg.SvgElement {
|
| get [dartx.systemLanguage]() {
|
| return this.systemLanguage;
|
| }
|
| - [dartx.hasExtension](extension) {
|
| - return this.hasExtension(extension);
|
| + [dartx.hasExtension](...args) {
|
| + return this.hasExtension.apply(this, args);
|
| }
|
| get [dartx.href]() {
|
| return this.href;
|
| @@ -89208,8 +89208,8 @@ svg.Point = class Point extends _interceptors.Interceptor {
|
| set [dartx.y](value) {
|
| this.y = value;
|
| }
|
| - [dartx.matrixTransform](matrix) {
|
| - return this.matrixTransform(matrix);
|
| + [dartx.matrixTransform](...args) {
|
| + return this.matrixTransform.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(svg.Point, {
|
| @@ -89242,29 +89242,29 @@ svg.PointList = class PointList extends _interceptors.Interceptor {
|
| get [dartx.numberOfItems]() {
|
| return this.numberOfItems;
|
| }
|
| - [__setter__](index, newItem) {
|
| - return this.__setter__(index, newItem);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [dartx.appendItem](newItem) {
|
| - return this.appendItem(newItem);
|
| + [dartx.appendItem](...args) {
|
| + return this.appendItem.apply(this, args);
|
| }
|
| - [dartx.clear]() {
|
| - return this.clear();
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.getItem](index) {
|
| - return this.getItem(index);
|
| + [dartx.getItem](...args) {
|
| + return this.getItem.apply(this, args);
|
| }
|
| - [dartx.initialize](newItem) {
|
| - return this.initialize(newItem);
|
| + [dartx.initialize](...args) {
|
| + return this.initialize.apply(this, args);
|
| }
|
| - [dartx.insertItemBefore](newItem, index) {
|
| - return this.insertItemBefore(newItem, index);
|
| + [dartx.insertItemBefore](...args) {
|
| + return this.insertItemBefore.apply(this, args);
|
| }
|
| - [dartx.removeItem](index) {
|
| - return this.removeItem(index);
|
| + [dartx.removeItem](...args) {
|
| + return this.removeItem.apply(this, args);
|
| }
|
| - [dartx.replaceItem](newItem, index) {
|
| - return this.replaceItem(newItem, index);
|
| + [dartx.replaceItem](...args) {
|
| + return this.replaceItem.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(svg.PointList, {
|
| @@ -89736,29 +89736,29 @@ svg.StringList = class StringList extends dart.mixin(_interceptors.Interceptor,
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [__setter__](index, newItem) {
|
| - return this.__setter__(index, newItem);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [dartx.appendItem](newItem) {
|
| - return this.appendItem(newItem);
|
| + [dartx.appendItem](...args) {
|
| + return this.appendItem.apply(this, args);
|
| }
|
| - [dartx.clear]() {
|
| - return this.clear();
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.getItem](index) {
|
| - return this.getItem(index);
|
| + [dartx.getItem](...args) {
|
| + return this.getItem.apply(this, args);
|
| }
|
| - [dartx.initialize](newItem) {
|
| - return this.initialize(newItem);
|
| + [dartx.initialize](...args) {
|
| + return this.initialize.apply(this, args);
|
| }
|
| - [dartx.insertItemBefore](item, index) {
|
| - return this.insertItemBefore(item, index);
|
| + [dartx.insertItemBefore](...args) {
|
| + return this.insertItemBefore.apply(this, args);
|
| }
|
| - [dartx.removeItem](index) {
|
| - return this.removeItem(index);
|
| + [dartx.removeItem](...args) {
|
| + return this.removeItem.apply(this, args);
|
| }
|
| - [dartx.replaceItem](newItem, index) {
|
| - return this.replaceItem(newItem, index);
|
| + [dartx.replaceItem](...args) {
|
| + return this.replaceItem.apply(this, args);
|
| }
|
| };
|
| svg.StringList[dart.implements] = () => [ListOfString()];
|
| @@ -89985,74 +89985,74 @@ svg.SvgSvgElement = class SvgSvgElement extends svg.GraphicsElement {
|
| get [dartx.y]() {
|
| return this.y;
|
| }
|
| - [dartx.animationsPaused]() {
|
| - return this.animationsPaused();
|
| + [dartx.animationsPaused](...args) {
|
| + return this.animationsPaused.apply(this, args);
|
| }
|
| - [dartx.checkEnclosure](element, rect) {
|
| - return this.checkEnclosure(element, rect);
|
| + [dartx.checkEnclosure](...args) {
|
| + return this.checkEnclosure.apply(this, args);
|
| }
|
| - [dartx.checkIntersection](element, rect) {
|
| - return this.checkIntersection(element, rect);
|
| + [dartx.checkIntersection](...args) {
|
| + return this.checkIntersection.apply(this, args);
|
| }
|
| - [dartx.createSvgAngle]() {
|
| - return this.createSVGAngle();
|
| + [dartx.createSvgAngle](...args) {
|
| + return this.createSVGAngle.apply(this, args);
|
| }
|
| - [dartx.createSvgLength]() {
|
| - return this.createSVGLength();
|
| + [dartx.createSvgLength](...args) {
|
| + return this.createSVGLength.apply(this, args);
|
| }
|
| - [dartx.createSvgMatrix]() {
|
| - return this.createSVGMatrix();
|
| + [dartx.createSvgMatrix](...args) {
|
| + return this.createSVGMatrix.apply(this, args);
|
| }
|
| - [dartx.createSvgNumber]() {
|
| - return this.createSVGNumber();
|
| + [dartx.createSvgNumber](...args) {
|
| + return this.createSVGNumber.apply(this, args);
|
| }
|
| - [dartx.createSvgPoint]() {
|
| - return this.createSVGPoint();
|
| + [dartx.createSvgPoint](...args) {
|
| + return this.createSVGPoint.apply(this, args);
|
| }
|
| - [dartx.createSvgRect]() {
|
| - return this.createSVGRect();
|
| + [dartx.createSvgRect](...args) {
|
| + return this.createSVGRect.apply(this, args);
|
| }
|
| - [dartx.createSvgTransform]() {
|
| - return this.createSVGTransform();
|
| + [dartx.createSvgTransform](...args) {
|
| + return this.createSVGTransform.apply(this, args);
|
| }
|
| - [dartx.createSvgTransformFromMatrix](matrix) {
|
| - return this.createSVGTransformFromMatrix(matrix);
|
| + [dartx.createSvgTransformFromMatrix](...args) {
|
| + return this.createSVGTransformFromMatrix.apply(this, args);
|
| }
|
| - [dartx.deselectAll]() {
|
| - return this.deselectAll();
|
| + [dartx.deselectAll](...args) {
|
| + return this.deselectAll.apply(this, args);
|
| }
|
| - [dartx.forceRedraw]() {
|
| - return this.forceRedraw();
|
| + [dartx.forceRedraw](...args) {
|
| + return this.forceRedraw.apply(this, args);
|
| }
|
| - [dartx.getCurrentTime]() {
|
| - return this.getCurrentTime();
|
| + [dartx.getCurrentTime](...args) {
|
| + return this.getCurrentTime.apply(this, args);
|
| }
|
| - [dartx.getElementById](elementId) {
|
| - return this.getElementById(elementId);
|
| + [dartx.getElementById](...args) {
|
| + return this.getElementById.apply(this, args);
|
| }
|
| - [dartx.getEnclosureList](rect, referenceElement) {
|
| - return this.getEnclosureList(rect, referenceElement);
|
| + [dartx.getEnclosureList](...args) {
|
| + return this.getEnclosureList.apply(this, args);
|
| }
|
| - [dartx.getIntersectionList](rect, referenceElement) {
|
| - return this.getIntersectionList(rect, referenceElement);
|
| + [dartx.getIntersectionList](...args) {
|
| + return this.getIntersectionList.apply(this, args);
|
| }
|
| - [dartx.pauseAnimations]() {
|
| - return this.pauseAnimations();
|
| + [dartx.pauseAnimations](...args) {
|
| + return this.pauseAnimations.apply(this, args);
|
| }
|
| - [dartx.setCurrentTime](seconds) {
|
| - return this.setCurrentTime(seconds);
|
| + [dartx.setCurrentTime](...args) {
|
| + return this.setCurrentTime.apply(this, args);
|
| }
|
| - [dartx.suspendRedraw](maxWaitMilliseconds) {
|
| - return this.suspendRedraw(maxWaitMilliseconds);
|
| + [dartx.suspendRedraw](...args) {
|
| + return this.suspendRedraw.apply(this, args);
|
| }
|
| - [dartx.unpauseAnimations]() {
|
| - return this.unpauseAnimations();
|
| + [dartx.unpauseAnimations](...args) {
|
| + return this.unpauseAnimations.apply(this, args);
|
| }
|
| - [dartx.unsuspendRedraw](suspendHandleId) {
|
| - return this.unsuspendRedraw(suspendHandleId);
|
| + [dartx.unsuspendRedraw](...args) {
|
| + return this.unsuspendRedraw.apply(this, args);
|
| }
|
| - [dartx.unsuspendRedrawAll]() {
|
| - return this.unsuspendRedrawAll();
|
| + [dartx.unsuspendRedrawAll](...args) {
|
| + return this.unsuspendRedrawAll.apply(this, args);
|
| }
|
| get [dartx.preserveAspectRatio]() {
|
| return this.preserveAspectRatio;
|
| @@ -90205,32 +90205,32 @@ svg.TextContentElement = class TextContentElement extends svg.GraphicsElement {
|
| get [dartx.textLength]() {
|
| return this.textLength;
|
| }
|
| - [dartx.getCharNumAtPosition](point) {
|
| - return this.getCharNumAtPosition(point);
|
| + [dartx.getCharNumAtPosition](...args) {
|
| + return this.getCharNumAtPosition.apply(this, args);
|
| }
|
| - [dartx.getComputedTextLength]() {
|
| - return this.getComputedTextLength();
|
| + [dartx.getComputedTextLength](...args) {
|
| + return this.getComputedTextLength.apply(this, args);
|
| }
|
| - [dartx.getEndPositionOfChar](charnum) {
|
| - return this.getEndPositionOfChar(charnum);
|
| + [dartx.getEndPositionOfChar](...args) {
|
| + return this.getEndPositionOfChar.apply(this, args);
|
| }
|
| - [dartx.getExtentOfChar](charnum) {
|
| - return this.getExtentOfChar(charnum);
|
| + [dartx.getExtentOfChar](...args) {
|
| + return this.getExtentOfChar.apply(this, args);
|
| }
|
| - [dartx.getNumberOfChars]() {
|
| - return this.getNumberOfChars();
|
| + [dartx.getNumberOfChars](...args) {
|
| + return this.getNumberOfChars.apply(this, args);
|
| }
|
| - [dartx.getRotationOfChar](charnum) {
|
| - return this.getRotationOfChar(charnum);
|
| + [dartx.getRotationOfChar](...args) {
|
| + return this.getRotationOfChar.apply(this, args);
|
| }
|
| - [dartx.getStartPositionOfChar](charnum) {
|
| - return this.getStartPositionOfChar(charnum);
|
| + [dartx.getStartPositionOfChar](...args) {
|
| + return this.getStartPositionOfChar.apply(this, args);
|
| }
|
| - [dartx.getSubStringLength](charnum, nchars) {
|
| - return this.getSubStringLength(charnum, nchars);
|
| + [dartx.getSubStringLength](...args) {
|
| + return this.getSubStringLength.apply(this, args);
|
| }
|
| - [dartx.selectSubString](charnum, nchars) {
|
| - return this.selectSubString(charnum, nchars);
|
| + [dartx.selectSubString](...args) {
|
| + return this.selectSubString.apply(this, args);
|
| }
|
| };
|
| dart.defineNamedConstructor(svg.TextContentElement, 'created');
|
| @@ -90497,23 +90497,23 @@ svg.Transform = class Transform extends _interceptors.Interceptor {
|
| get [dartx.type]() {
|
| return this.type;
|
| }
|
| - [dartx.setMatrix](matrix) {
|
| - return this.setMatrix(matrix);
|
| + [dartx.setMatrix](...args) {
|
| + return this.setMatrix.apply(this, args);
|
| }
|
| - [dartx.setRotate](angle, cx, cy) {
|
| - return this.setRotate(angle, cx, cy);
|
| + [dartx.setRotate](...args) {
|
| + return this.setRotate.apply(this, args);
|
| }
|
| - [dartx.setScale](sx, sy) {
|
| - return this.setScale(sx, sy);
|
| + [dartx.setScale](...args) {
|
| + return this.setScale.apply(this, args);
|
| }
|
| - [dartx.setSkewX](angle) {
|
| - return this.setSkewX(angle);
|
| + [dartx.setSkewX](...args) {
|
| + return this.setSkewX.apply(this, args);
|
| }
|
| - [dartx.setSkewY](angle) {
|
| - return this.setSkewY(angle);
|
| + [dartx.setSkewY](...args) {
|
| + return this.setSkewY.apply(this, args);
|
| }
|
| - [dartx.setTranslate](tx, ty) {
|
| - return this.setTranslate(tx, ty);
|
| + [dartx.setTranslate](...args) {
|
| + return this.setTranslate.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(svg.Transform, {
|
| @@ -90614,35 +90614,35 @@ svg.TransformList = class TransformList extends dart.mixin(_interceptors.Interce
|
| [dartx.elementAt](index) {
|
| return this[dartx._get](index);
|
| }
|
| - [__setter__](index, newItem) {
|
| - return this.__setter__(index, newItem);
|
| + [__setter__](...args) {
|
| + return this.__setter__.apply(this, args);
|
| }
|
| - [dartx.appendItem](newItem) {
|
| - return this.appendItem(newItem);
|
| + [dartx.appendItem](...args) {
|
| + return this.appendItem.apply(this, args);
|
| }
|
| - [dartx.clear]() {
|
| - return this.clear();
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.consolidate]() {
|
| - return this.consolidate();
|
| + [dartx.consolidate](...args) {
|
| + return this.consolidate.apply(this, args);
|
| }
|
| - [dartx.createSvgTransformFromMatrix](matrix) {
|
| - return this.createSVGTransformFromMatrix(matrix);
|
| + [dartx.createSvgTransformFromMatrix](...args) {
|
| + return this.createSVGTransformFromMatrix.apply(this, args);
|
| }
|
| - [dartx.getItem](index) {
|
| - return this.getItem(index);
|
| + [dartx.getItem](...args) {
|
| + return this.getItem.apply(this, args);
|
| }
|
| - [dartx.initialize](newItem) {
|
| - return this.initialize(newItem);
|
| + [dartx.initialize](...args) {
|
| + return this.initialize.apply(this, args);
|
| }
|
| - [dartx.insertItemBefore](newItem, index) {
|
| - return this.insertItemBefore(newItem, index);
|
| + [dartx.insertItemBefore](...args) {
|
| + return this.insertItemBefore.apply(this, args);
|
| }
|
| - [dartx.removeItem](index) {
|
| - return this.removeItem(index);
|
| + [dartx.removeItem](...args) {
|
| + return this.removeItem.apply(this, args);
|
| }
|
| - [dartx.replaceItem](newItem, index) {
|
| - return this.replaceItem(newItem, index);
|
| + [dartx.replaceItem](...args) {
|
| + return this.replaceItem.apply(this, args);
|
| }
|
| };
|
| svg.TransformList[dart.implements] = () => [ListOfTransform()];
|
| @@ -91050,11 +91050,11 @@ web_audio.AudioNode = class AudioNode extends html.EventTarget {
|
| get [dartx.numberOfOutputs]() {
|
| return this.numberOfOutputs;
|
| }
|
| - [_connect](destination, output, input) {
|
| - return this.connect(destination, output, input);
|
| + [_connect](...args) {
|
| + return this.connect.apply(this, args);
|
| }
|
| - [dartx.disconnect](output) {
|
| - return this.disconnect(output);
|
| + [dartx.disconnect](...args) {
|
| + return this.disconnect.apply(this, args);
|
| }
|
| [dartx.connectNode](destination, output, input) {
|
| if (output === void 0) output = 0;
|
| @@ -91126,17 +91126,17 @@ web_audio.AnalyserNode = class AnalyserNode extends web_audio.AudioNode {
|
| set [dartx.smoothingTimeConstant](value) {
|
| this.smoothingTimeConstant = value;
|
| }
|
| - [dartx.getByteFrequencyData](array) {
|
| - return this.getByteFrequencyData(array);
|
| + [dartx.getByteFrequencyData](...args) {
|
| + return this.getByteFrequencyData.apply(this, args);
|
| }
|
| - [dartx.getByteTimeDomainData](array) {
|
| - return this.getByteTimeDomainData(array);
|
| + [dartx.getByteTimeDomainData](...args) {
|
| + return this.getByteTimeDomainData.apply(this, args);
|
| }
|
| - [dartx.getFloatFrequencyData](array) {
|
| - return this.getFloatFrequencyData(array);
|
| + [dartx.getFloatFrequencyData](...args) {
|
| + return this.getFloatFrequencyData.apply(this, args);
|
| }
|
| - [dartx.getFloatTimeDomainData](array) {
|
| - return this.getFloatTimeDomainData(array);
|
| + [dartx.getFloatTimeDomainData](...args) {
|
| + return this.getFloatTimeDomainData.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_audio.AnalyserNode, {
|
| @@ -91180,8 +91180,8 @@ web_audio.AudioBuffer = class AudioBuffer extends _interceptors.Interceptor {
|
| get [dartx.sampleRate]() {
|
| return this.sampleRate;
|
| }
|
| - [dartx.getChannelData](channelIndex) {
|
| - return this.getChannelData(channelIndex);
|
| + [dartx.getChannelData](...args) {
|
| + return this.getChannelData.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_audio.AudioBuffer, {
|
| @@ -91343,59 +91343,59 @@ web_audio.AudioContext = class AudioContext extends html.EventTarget {
|
| get [dartx.sampleRate]() {
|
| return this.sampleRate;
|
| }
|
| - [dartx.createAnalyser]() {
|
| - return this.createAnalyser();
|
| + [dartx.createAnalyser](...args) {
|
| + return this.createAnalyser.apply(this, args);
|
| }
|
| - [dartx.createBiquadFilter]() {
|
| - return this.createBiquadFilter();
|
| + [dartx.createBiquadFilter](...args) {
|
| + return this.createBiquadFilter.apply(this, args);
|
| }
|
| - [dartx.createBuffer](numberOfChannels, numberOfFrames, sampleRate) {
|
| - return this.createBuffer(numberOfChannels, numberOfFrames, sampleRate);
|
| + [dartx.createBuffer](...args) {
|
| + return this.createBuffer.apply(this, args);
|
| }
|
| - [dartx.createBufferSource]() {
|
| - return this.createBufferSource();
|
| + [dartx.createBufferSource](...args) {
|
| + return this.createBufferSource.apply(this, args);
|
| }
|
| - [dartx.createChannelMerger](numberOfInputs) {
|
| - return this.createChannelMerger(numberOfInputs);
|
| + [dartx.createChannelMerger](...args) {
|
| + return this.createChannelMerger.apply(this, args);
|
| }
|
| - [dartx.createChannelSplitter](numberOfOutputs) {
|
| - return this.createChannelSplitter(numberOfOutputs);
|
| + [dartx.createChannelSplitter](...args) {
|
| + return this.createChannelSplitter.apply(this, args);
|
| }
|
| - [dartx.createConvolver]() {
|
| - return this.createConvolver();
|
| + [dartx.createConvolver](...args) {
|
| + return this.createConvolver.apply(this, args);
|
| }
|
| - [dartx.createDelay](maxDelayTime) {
|
| - return this.createDelay(maxDelayTime);
|
| + [dartx.createDelay](...args) {
|
| + return this.createDelay.apply(this, args);
|
| }
|
| - [dartx.createDynamicsCompressor]() {
|
| - return this.createDynamicsCompressor();
|
| + [dartx.createDynamicsCompressor](...args) {
|
| + return this.createDynamicsCompressor.apply(this, args);
|
| }
|
| - [dartx.createMediaElementSource](mediaElement) {
|
| - return this.createMediaElementSource(mediaElement);
|
| + [dartx.createMediaElementSource](...args) {
|
| + return this.createMediaElementSource.apply(this, args);
|
| }
|
| - [dartx.createMediaStreamDestination]() {
|
| - return this.createMediaStreamDestination();
|
| + [dartx.createMediaStreamDestination](...args) {
|
| + return this.createMediaStreamDestination.apply(this, args);
|
| }
|
| - [dartx.createMediaStreamSource](mediaStream) {
|
| - return this.createMediaStreamSource(mediaStream);
|
| + [dartx.createMediaStreamSource](...args) {
|
| + return this.createMediaStreamSource.apply(this, args);
|
| }
|
| - [dartx.createOscillator]() {
|
| - return this.createOscillator();
|
| + [dartx.createOscillator](...args) {
|
| + return this.createOscillator.apply(this, args);
|
| }
|
| - [dartx.createPanner]() {
|
| - return this.createPanner();
|
| + [dartx.createPanner](...args) {
|
| + return this.createPanner.apply(this, args);
|
| }
|
| - [dartx.createPeriodicWave](real, imag) {
|
| - return this.createPeriodicWave(real, imag);
|
| + [dartx.createPeriodicWave](...args) {
|
| + return this.createPeriodicWave.apply(this, args);
|
| }
|
| - [dartx.createWaveShaper]() {
|
| - return this.createWaveShaper();
|
| + [dartx.createWaveShaper](...args) {
|
| + return this.createWaveShaper.apply(this, args);
|
| }
|
| - [_decodeAudioData](audioData, successCallback, errorCallback) {
|
| - return this.decodeAudioData(audioData, successCallback, errorCallback);
|
| + [_decodeAudioData](...args) {
|
| + return this.decodeAudioData.apply(this, args);
|
| }
|
| - [dartx.startRendering]() {
|
| - return this.startRendering();
|
| + [dartx.startRendering](...args) {
|
| + return this.startRendering.apply(this, args);
|
| }
|
| get [dartx.onComplete]() {
|
| return web_audio.AudioContext.completeEvent.forTarget(this);
|
| @@ -91516,14 +91516,14 @@ web_audio.AudioListener = class AudioListener extends _interceptors.Interceptor
|
| set [dartx.speedOfSound](value) {
|
| this.speedOfSound = value;
|
| }
|
| - [dartx.setOrientation](x, y, z, xUp, yUp, zUp) {
|
| - return this.setOrientation(x, y, z, xUp, yUp, zUp);
|
| + [dartx.setOrientation](...args) {
|
| + return this.setOrientation.apply(this, args);
|
| }
|
| - [dartx.setPosition](x, y, z) {
|
| - return this.setPosition(x, y, z);
|
| + [dartx.setPosition](...args) {
|
| + return this.setPosition.apply(this, args);
|
| }
|
| - [dartx.setVelocity](x, y, z) {
|
| - return this.setVelocity(x, y, z);
|
| + [dartx.setVelocity](...args) {
|
| + return this.setVelocity.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_audio.AudioListener, {
|
| @@ -91562,23 +91562,23 @@ web_audio.AudioParam = class AudioParam extends _interceptors.Interceptor {
|
| set [dartx.value](value) {
|
| this.value = value;
|
| }
|
| - [dartx.cancelScheduledValues](startTime) {
|
| - return this.cancelScheduledValues(startTime);
|
| + [dartx.cancelScheduledValues](...args) {
|
| + return this.cancelScheduledValues.apply(this, args);
|
| }
|
| - [dartx.exponentialRampToValueAtTime](value, time) {
|
| - return this.exponentialRampToValueAtTime(value, time);
|
| + [dartx.exponentialRampToValueAtTime](...args) {
|
| + return this.exponentialRampToValueAtTime.apply(this, args);
|
| }
|
| - [dartx.linearRampToValueAtTime](value, time) {
|
| - return this.linearRampToValueAtTime(value, time);
|
| + [dartx.linearRampToValueAtTime](...args) {
|
| + return this.linearRampToValueAtTime.apply(this, args);
|
| }
|
| - [dartx.setTargetAtTime](target, time, timeConstant) {
|
| - return this.setTargetAtTime(target, time, timeConstant);
|
| + [dartx.setTargetAtTime](...args) {
|
| + return this.setTargetAtTime.apply(this, args);
|
| }
|
| - [dartx.setValueAtTime](value, time) {
|
| - return this.setValueAtTime(value, time);
|
| + [dartx.setValueAtTime](...args) {
|
| + return this.setValueAtTime.apply(this, args);
|
| }
|
| - [dartx.setValueCurveAtTime](values, time, duration) {
|
| - return this.setValueCurveAtTime(values, time, duration);
|
| + [dartx.setValueCurveAtTime](...args) {
|
| + return this.setValueCurveAtTime.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_audio.AudioParam, {
|
| @@ -91655,8 +91655,8 @@ web_audio.BiquadFilterNode = class BiquadFilterNode extends web_audio.AudioNode
|
| set [dartx.type](value) {
|
| this.type = value;
|
| }
|
| - [dartx.getFrequencyResponse](frequencyHz, magResponse, phaseResponse) {
|
| - return this.getFrequencyResponse(frequencyHz, magResponse, phaseResponse);
|
| + [dartx.getFrequencyResponse](...args) {
|
| + return this.getFrequencyResponse.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_audio.BiquadFilterNode, {
|
| @@ -91907,20 +91907,20 @@ web_audio.OscillatorNode = class OscillatorNode extends web_audio.AudioSourceNod
|
| set [dartx.type](value) {
|
| this.type = value;
|
| }
|
| - [dartx.noteOff](when) {
|
| - return this.noteOff(when);
|
| + [dartx.noteOff](...args) {
|
| + return this.noteOff.apply(this, args);
|
| }
|
| - [dartx.noteOn](when) {
|
| - return this.noteOn(when);
|
| + [dartx.noteOn](...args) {
|
| + return this.noteOn.apply(this, args);
|
| }
|
| - [dartx.setPeriodicWave](periodicWave) {
|
| - return this.setPeriodicWave(periodicWave);
|
| + [dartx.setPeriodicWave](...args) {
|
| + return this.setPeriodicWave.apply(this, args);
|
| }
|
| - [dartx.start](when) {
|
| - return this.start(when);
|
| + [dartx.start](...args) {
|
| + return this.start.apply(this, args);
|
| }
|
| - [dartx.stop](when) {
|
| - return this.stop(when);
|
| + [dartx.stop](...args) {
|
| + return this.stop.apply(this, args);
|
| }
|
| get [dartx.onEnded]() {
|
| return web_audio.OscillatorNode.endedEvent.forTarget(this);
|
| @@ -92011,14 +92011,14 @@ web_audio.PannerNode = class PannerNode extends web_audio.AudioNode {
|
| set [dartx.rolloffFactor](value) {
|
| this.rolloffFactor = value;
|
| }
|
| - [dartx.setOrientation](x, y, z) {
|
| - return this.setOrientation(x, y, z);
|
| + [dartx.setOrientation](...args) {
|
| + return this.setOrientation.apply(this, args);
|
| }
|
| - [dartx.setPosition](x, y, z) {
|
| - return this.setPosition(x, y, z);
|
| + [dartx.setPosition](...args) {
|
| + return this.setPosition.apply(this, args);
|
| }
|
| - [dartx.setVelocity](x, y, z) {
|
| - return this.setVelocity(x, y, z);
|
| + [dartx.setVelocity](...args) {
|
| + return this.setVelocity.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_audio.PannerNode, {
|
| @@ -92063,8 +92063,8 @@ web_audio.ScriptProcessorNode = class ScriptProcessorNode extends web_audio.Audi
|
| get [dartx.bufferSize]() {
|
| return this.bufferSize;
|
| }
|
| - [dartx.setEventListener](eventListener) {
|
| - return this.setEventListener(eventListener);
|
| + [dartx.setEventListener](...args) {
|
| + return this.setEventListener.apply(this, args);
|
| }
|
| get [dartx.onAudioProcess]() {
|
| return web_audio.ScriptProcessorNode.audioProcessEvent.forTarget(this);
|
| @@ -92295,323 +92295,323 @@ web_gl.RenderingContext = class RenderingContext extends _interceptors.Intercept
|
| get [dartx.drawingBufferWidth]() {
|
| return this.drawingBufferWidth;
|
| }
|
| - [dartx.activeTexture](texture) {
|
| - return this.activeTexture(texture);
|
| + [dartx.activeTexture](...args) {
|
| + return this.activeTexture.apply(this, args);
|
| }
|
| - [dartx.attachShader](program, shader) {
|
| - return this.attachShader(program, shader);
|
| + [dartx.attachShader](...args) {
|
| + return this.attachShader.apply(this, args);
|
| }
|
| - [dartx.bindAttribLocation](program, index, name) {
|
| - return this.bindAttribLocation(program, index, name);
|
| + [dartx.bindAttribLocation](...args) {
|
| + return this.bindAttribLocation.apply(this, args);
|
| }
|
| - [dartx.bindBuffer](target, buffer) {
|
| - return this.bindBuffer(target, buffer);
|
| + [dartx.bindBuffer](...args) {
|
| + return this.bindBuffer.apply(this, args);
|
| }
|
| - [dartx.bindFramebuffer](target, framebuffer) {
|
| - return this.bindFramebuffer(target, framebuffer);
|
| + [dartx.bindFramebuffer](...args) {
|
| + return this.bindFramebuffer.apply(this, args);
|
| }
|
| - [dartx.bindRenderbuffer](target, renderbuffer) {
|
| - return this.bindRenderbuffer(target, renderbuffer);
|
| + [dartx.bindRenderbuffer](...args) {
|
| + return this.bindRenderbuffer.apply(this, args);
|
| }
|
| - [dartx.bindTexture](target, texture) {
|
| - return this.bindTexture(target, texture);
|
| + [dartx.bindTexture](...args) {
|
| + return this.bindTexture.apply(this, args);
|
| }
|
| - [dartx.blendColor](red, green, blue, alpha) {
|
| - return this.blendColor(red, green, blue, alpha);
|
| + [dartx.blendColor](...args) {
|
| + return this.blendColor.apply(this, args);
|
| }
|
| - [dartx.blendEquation](mode) {
|
| - return this.blendEquation(mode);
|
| + [dartx.blendEquation](...args) {
|
| + return this.blendEquation.apply(this, args);
|
| }
|
| - [dartx.blendEquationSeparate](modeRGB, modeAlpha) {
|
| - return this.blendEquationSeparate(modeRGB, modeAlpha);
|
| + [dartx.blendEquationSeparate](...args) {
|
| + return this.blendEquationSeparate.apply(this, args);
|
| }
|
| - [dartx.blendFunc](sfactor, dfactor) {
|
| - return this.blendFunc(sfactor, dfactor);
|
| + [dartx.blendFunc](...args) {
|
| + return this.blendFunc.apply(this, args);
|
| }
|
| - [dartx.blendFuncSeparate](srcRGB, dstRGB, srcAlpha, dstAlpha) {
|
| - return this.blendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
|
| + [dartx.blendFuncSeparate](...args) {
|
| + return this.blendFuncSeparate.apply(this, args);
|
| }
|
| - [dartx.bufferByteData](target, data, usage) {
|
| - return this.bufferData(target, data, usage);
|
| + [dartx.bufferByteData](...args) {
|
| + return this.bufferData.apply(this, args);
|
| }
|
| - [dartx.bufferData](target, data_OR_size, usage) {
|
| - return this.bufferData(target, data_OR_size, usage);
|
| + [dartx.bufferData](...args) {
|
| + return this.bufferData.apply(this, args);
|
| }
|
| - [dartx.bufferDataTyped](target, data, usage) {
|
| - return this.bufferData(target, data, usage);
|
| + [dartx.bufferDataTyped](...args) {
|
| + return this.bufferData.apply(this, args);
|
| }
|
| - [dartx.bufferSubByteData](target, offset, data) {
|
| - return this.bufferSubData(target, offset, data);
|
| + [dartx.bufferSubByteData](...args) {
|
| + return this.bufferSubData.apply(this, args);
|
| }
|
| - [dartx.bufferSubData](target, offset, data) {
|
| - return this.bufferSubData(target, offset, data);
|
| + [dartx.bufferSubData](...args) {
|
| + return this.bufferSubData.apply(this, args);
|
| }
|
| - [dartx.bufferSubDataTyped](target, offset, data) {
|
| - return this.bufferSubData(target, offset, data);
|
| + [dartx.bufferSubDataTyped](...args) {
|
| + return this.bufferSubData.apply(this, args);
|
| }
|
| - [dartx.checkFramebufferStatus](target) {
|
| - return this.checkFramebufferStatus(target);
|
| + [dartx.checkFramebufferStatus](...args) {
|
| + return this.checkFramebufferStatus.apply(this, args);
|
| }
|
| - [dartx.clear](mask) {
|
| - return this.clear(mask);
|
| + [dartx.clear](...args) {
|
| + return this.clear.apply(this, args);
|
| }
|
| - [dartx.clearColor](red, green, blue, alpha) {
|
| - return this.clearColor(red, green, blue, alpha);
|
| + [dartx.clearColor](...args) {
|
| + return this.clearColor.apply(this, args);
|
| }
|
| - [dartx.clearDepth](depth) {
|
| - return this.clearDepth(depth);
|
| + [dartx.clearDepth](...args) {
|
| + return this.clearDepth.apply(this, args);
|
| }
|
| - [dartx.clearStencil](s) {
|
| - return this.clearStencil(s);
|
| + [dartx.clearStencil](...args) {
|
| + return this.clearStencil.apply(this, args);
|
| }
|
| - [dartx.colorMask](red, green, blue, alpha) {
|
| - return this.colorMask(red, green, blue, alpha);
|
| + [dartx.colorMask](...args) {
|
| + return this.colorMask.apply(this, args);
|
| }
|
| - [dartx.compileShader](shader) {
|
| - return this.compileShader(shader);
|
| + [dartx.compileShader](...args) {
|
| + return this.compileShader.apply(this, args);
|
| }
|
| - [dartx.compressedTexImage2D](target, level, internalformat, width, height, border, data) {
|
| - return this.compressedTexImage2D(target, level, internalformat, width, height, border, data);
|
| + [dartx.compressedTexImage2D](...args) {
|
| + return this.compressedTexImage2D.apply(this, args);
|
| }
|
| - [dartx.compressedTexSubImage2D](target, level, xoffset, yoffset, width, height, format, data) {
|
| - return this.compressedTexSubImage2D(target, level, xoffset, yoffset, width, height, format, data);
|
| + [dartx.compressedTexSubImage2D](...args) {
|
| + return this.compressedTexSubImage2D.apply(this, args);
|
| }
|
| - [dartx.copyTexImage2D](target, level, internalformat, x, y, width, height, border) {
|
| - return this.copyTexImage2D(target, level, internalformat, x, y, width, height, border);
|
| + [dartx.copyTexImage2D](...args) {
|
| + return this.copyTexImage2D.apply(this, args);
|
| }
|
| - [dartx.copyTexSubImage2D](target, level, xoffset, yoffset, x, y, width, height) {
|
| - return this.copyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
|
| + [dartx.copyTexSubImage2D](...args) {
|
| + return this.copyTexSubImage2D.apply(this, args);
|
| }
|
| - [dartx.createBuffer]() {
|
| - return this.createBuffer();
|
| + [dartx.createBuffer](...args) {
|
| + return this.createBuffer.apply(this, args);
|
| }
|
| - [dartx.createFramebuffer]() {
|
| - return this.createFramebuffer();
|
| + [dartx.createFramebuffer](...args) {
|
| + return this.createFramebuffer.apply(this, args);
|
| }
|
| - [dartx.createProgram]() {
|
| - return this.createProgram();
|
| + [dartx.createProgram](...args) {
|
| + return this.createProgram.apply(this, args);
|
| }
|
| - [dartx.createRenderbuffer]() {
|
| - return this.createRenderbuffer();
|
| + [dartx.createRenderbuffer](...args) {
|
| + return this.createRenderbuffer.apply(this, args);
|
| }
|
| - [dartx.createShader](type) {
|
| - return this.createShader(type);
|
| + [dartx.createShader](...args) {
|
| + return this.createShader.apply(this, args);
|
| }
|
| - [dartx.createTexture]() {
|
| - return this.createTexture();
|
| + [dartx.createTexture](...args) {
|
| + return this.createTexture.apply(this, args);
|
| }
|
| - [dartx.cullFace](mode) {
|
| - return this.cullFace(mode);
|
| + [dartx.cullFace](...args) {
|
| + return this.cullFace.apply(this, args);
|
| }
|
| - [dartx.deleteBuffer](buffer) {
|
| - return this.deleteBuffer(buffer);
|
| + [dartx.deleteBuffer](...args) {
|
| + return this.deleteBuffer.apply(this, args);
|
| }
|
| - [dartx.deleteFramebuffer](framebuffer) {
|
| - return this.deleteFramebuffer(framebuffer);
|
| + [dartx.deleteFramebuffer](...args) {
|
| + return this.deleteFramebuffer.apply(this, args);
|
| }
|
| - [dartx.deleteProgram](program) {
|
| - return this.deleteProgram(program);
|
| + [dartx.deleteProgram](...args) {
|
| + return this.deleteProgram.apply(this, args);
|
| }
|
| - [dartx.deleteRenderbuffer](renderbuffer) {
|
| - return this.deleteRenderbuffer(renderbuffer);
|
| + [dartx.deleteRenderbuffer](...args) {
|
| + return this.deleteRenderbuffer.apply(this, args);
|
| }
|
| - [dartx.deleteShader](shader) {
|
| - return this.deleteShader(shader);
|
| + [dartx.deleteShader](...args) {
|
| + return this.deleteShader.apply(this, args);
|
| }
|
| - [dartx.deleteTexture](texture) {
|
| - return this.deleteTexture(texture);
|
| + [dartx.deleteTexture](...args) {
|
| + return this.deleteTexture.apply(this, args);
|
| }
|
| - [dartx.depthFunc](func) {
|
| - return this.depthFunc(func);
|
| + [dartx.depthFunc](...args) {
|
| + return this.depthFunc.apply(this, args);
|
| }
|
| - [dartx.depthMask](flag) {
|
| - return this.depthMask(flag);
|
| + [dartx.depthMask](...args) {
|
| + return this.depthMask.apply(this, args);
|
| }
|
| - [dartx.depthRange](zNear, zFar) {
|
| - return this.depthRange(zNear, zFar);
|
| + [dartx.depthRange](...args) {
|
| + return this.depthRange.apply(this, args);
|
| }
|
| - [dartx.detachShader](program, shader) {
|
| - return this.detachShader(program, shader);
|
| + [dartx.detachShader](...args) {
|
| + return this.detachShader.apply(this, args);
|
| }
|
| - [dartx.disable](cap) {
|
| - return this.disable(cap);
|
| + [dartx.disable](...args) {
|
| + return this.disable.apply(this, args);
|
| }
|
| - [dartx.disableVertexAttribArray](index) {
|
| - return this.disableVertexAttribArray(index);
|
| + [dartx.disableVertexAttribArray](...args) {
|
| + return this.disableVertexAttribArray.apply(this, args);
|
| }
|
| - [dartx.drawArrays](mode, first, count) {
|
| - return this.drawArrays(mode, first, count);
|
| + [dartx.drawArrays](...args) {
|
| + return this.drawArrays.apply(this, args);
|
| }
|
| - [dartx.drawElements](mode, count, type, offset) {
|
| - return this.drawElements(mode, count, type, offset);
|
| + [dartx.drawElements](...args) {
|
| + return this.drawElements.apply(this, args);
|
| }
|
| - [dartx.enable](cap) {
|
| - return this.enable(cap);
|
| + [dartx.enable](...args) {
|
| + return this.enable.apply(this, args);
|
| }
|
| - [dartx.enableVertexAttribArray](index) {
|
| - return this.enableVertexAttribArray(index);
|
| + [dartx.enableVertexAttribArray](...args) {
|
| + return this.enableVertexAttribArray.apply(this, args);
|
| }
|
| - [dartx.finish]() {
|
| - return this.finish();
|
| + [dartx.finish](...args) {
|
| + return this.finish.apply(this, args);
|
| }
|
| - [dartx.flush]() {
|
| - return this.flush();
|
| + [dartx.flush](...args) {
|
| + return this.flush.apply(this, args);
|
| }
|
| - [dartx.framebufferRenderbuffer](target, attachment, renderbuffertarget, renderbuffer) {
|
| - return this.framebufferRenderbuffer(target, attachment, renderbuffertarget, renderbuffer);
|
| + [dartx.framebufferRenderbuffer](...args) {
|
| + return this.framebufferRenderbuffer.apply(this, args);
|
| }
|
| - [dartx.framebufferTexture2D](target, attachment, textarget, texture, level) {
|
| - return this.framebufferTexture2D(target, attachment, textarget, texture, level);
|
| + [dartx.framebufferTexture2D](...args) {
|
| + return this.framebufferTexture2D.apply(this, args);
|
| }
|
| - [dartx.frontFace](mode) {
|
| - return this.frontFace(mode);
|
| + [dartx.frontFace](...args) {
|
| + return this.frontFace.apply(this, args);
|
| }
|
| - [dartx.generateMipmap](target) {
|
| - return this.generateMipmap(target);
|
| + [dartx.generateMipmap](...args) {
|
| + return this.generateMipmap.apply(this, args);
|
| }
|
| - [dartx.getActiveAttrib](program, index) {
|
| - return this.getActiveAttrib(program, index);
|
| + [dartx.getActiveAttrib](...args) {
|
| + return this.getActiveAttrib.apply(this, args);
|
| }
|
| - [dartx.getActiveUniform](program, index) {
|
| - return this.getActiveUniform(program, index);
|
| + [dartx.getActiveUniform](...args) {
|
| + return this.getActiveUniform.apply(this, args);
|
| }
|
| - [dartx.getAttachedShaders](program) {
|
| - return this.getAttachedShaders(program);
|
| + [dartx.getAttachedShaders](...args) {
|
| + return this.getAttachedShaders.apply(this, args);
|
| }
|
| - [dartx.getAttribLocation](program, name) {
|
| - return this.getAttribLocation(program, name);
|
| + [dartx.getAttribLocation](...args) {
|
| + return this.getAttribLocation.apply(this, args);
|
| }
|
| - [dartx.getBufferParameter](target, pname) {
|
| - return this.getBufferParameter(target, pname);
|
| + [dartx.getBufferParameter](...args) {
|
| + return this.getBufferParameter.apply(this, args);
|
| }
|
| [dartx.getContextAttributes]() {
|
| return web_gl.ContextAttributes._check(html_common.convertNativeToDart_ContextAttributes(this[_getContextAttributes_1]()));
|
| }
|
| - [_getContextAttributes_1]() {
|
| - return this.getContextAttributes();
|
| + [_getContextAttributes_1](...args) {
|
| + return this.getContextAttributes.apply(this, args);
|
| }
|
| - [dartx.getError]() {
|
| - return this.getError();
|
| + [dartx.getError](...args) {
|
| + return this.getError.apply(this, args);
|
| }
|
| - [dartx.getExtension](name) {
|
| - return this.getExtension(name);
|
| + [dartx.getExtension](...args) {
|
| + return this.getExtension.apply(this, args);
|
| }
|
| - [dartx.getFramebufferAttachmentParameter](target, attachment, pname) {
|
| - return this.getFramebufferAttachmentParameter(target, attachment, pname);
|
| + [dartx.getFramebufferAttachmentParameter](...args) {
|
| + return this.getFramebufferAttachmentParameter.apply(this, args);
|
| }
|
| - [dartx.getParameter](pname) {
|
| - return this.getParameter(pname);
|
| + [dartx.getParameter](...args) {
|
| + return this.getParameter.apply(this, args);
|
| }
|
| - [dartx.getProgramInfoLog](program) {
|
| - return this.getProgramInfoLog(program);
|
| + [dartx.getProgramInfoLog](...args) {
|
| + return this.getProgramInfoLog.apply(this, args);
|
| }
|
| - [dartx.getProgramParameter](program, pname) {
|
| - return this.getProgramParameter(program, pname);
|
| + [dartx.getProgramParameter](...args) {
|
| + return this.getProgramParameter.apply(this, args);
|
| }
|
| - [dartx.getRenderbufferParameter](target, pname) {
|
| - return this.getRenderbufferParameter(target, pname);
|
| + [dartx.getRenderbufferParameter](...args) {
|
| + return this.getRenderbufferParameter.apply(this, args);
|
| }
|
| - [dartx.getShaderInfoLog](shader) {
|
| - return this.getShaderInfoLog(shader);
|
| + [dartx.getShaderInfoLog](...args) {
|
| + return this.getShaderInfoLog.apply(this, args);
|
| }
|
| - [dartx.getShaderParameter](shader, pname) {
|
| - return this.getShaderParameter(shader, pname);
|
| + [dartx.getShaderParameter](...args) {
|
| + return this.getShaderParameter.apply(this, args);
|
| }
|
| - [dartx.getShaderPrecisionFormat](shadertype, precisiontype) {
|
| - return this.getShaderPrecisionFormat(shadertype, precisiontype);
|
| + [dartx.getShaderPrecisionFormat](...args) {
|
| + return this.getShaderPrecisionFormat.apply(this, args);
|
| }
|
| - [dartx.getShaderSource](shader) {
|
| - return this.getShaderSource(shader);
|
| + [dartx.getShaderSource](...args) {
|
| + return this.getShaderSource.apply(this, args);
|
| }
|
| - [dartx.getSupportedExtensions]() {
|
| - return this.getSupportedExtensions();
|
| + [dartx.getSupportedExtensions](...args) {
|
| + return this.getSupportedExtensions.apply(this, args);
|
| }
|
| - [dartx.getTexParameter](target, pname) {
|
| - return this.getTexParameter(target, pname);
|
| + [dartx.getTexParameter](...args) {
|
| + return this.getTexParameter.apply(this, args);
|
| }
|
| - [dartx.getUniform](program, location) {
|
| - return this.getUniform(program, location);
|
| + [dartx.getUniform](...args) {
|
| + return this.getUniform.apply(this, args);
|
| }
|
| - [dartx.getUniformLocation](program, name) {
|
| - return this.getUniformLocation(program, name);
|
| + [dartx.getUniformLocation](...args) {
|
| + return this.getUniformLocation.apply(this, args);
|
| }
|
| - [dartx.getVertexAttrib](index, pname) {
|
| - return this.getVertexAttrib(index, pname);
|
| + [dartx.getVertexAttrib](...args) {
|
| + return this.getVertexAttrib.apply(this, args);
|
| }
|
| - [dartx.getVertexAttribOffset](index, pname) {
|
| - return this.getVertexAttribOffset(index, pname);
|
| + [dartx.getVertexAttribOffset](...args) {
|
| + return this.getVertexAttribOffset.apply(this, args);
|
| }
|
| - [dartx.hint](target, mode) {
|
| - return this.hint(target, mode);
|
| + [dartx.hint](...args) {
|
| + return this.hint.apply(this, args);
|
| }
|
| - [dartx.isBuffer](buffer) {
|
| - return this.isBuffer(buffer);
|
| + [dartx.isBuffer](...args) {
|
| + return this.isBuffer.apply(this, args);
|
| }
|
| - [dartx.isContextLost]() {
|
| - return this.isContextLost();
|
| + [dartx.isContextLost](...args) {
|
| + return this.isContextLost.apply(this, args);
|
| }
|
| - [dartx.isEnabled](cap) {
|
| - return this.isEnabled(cap);
|
| + [dartx.isEnabled](...args) {
|
| + return this.isEnabled.apply(this, args);
|
| }
|
| - [dartx.isFramebuffer](framebuffer) {
|
| - return this.isFramebuffer(framebuffer);
|
| + [dartx.isFramebuffer](...args) {
|
| + return this.isFramebuffer.apply(this, args);
|
| }
|
| - [dartx.isProgram](program) {
|
| - return this.isProgram(program);
|
| + [dartx.isProgram](...args) {
|
| + return this.isProgram.apply(this, args);
|
| }
|
| - [dartx.isRenderbuffer](renderbuffer) {
|
| - return this.isRenderbuffer(renderbuffer);
|
| + [dartx.isRenderbuffer](...args) {
|
| + return this.isRenderbuffer.apply(this, args);
|
| }
|
| - [dartx.isShader](shader) {
|
| - return this.isShader(shader);
|
| + [dartx.isShader](...args) {
|
| + return this.isShader.apply(this, args);
|
| }
|
| - [dartx.isTexture](texture) {
|
| - return this.isTexture(texture);
|
| + [dartx.isTexture](...args) {
|
| + return this.isTexture.apply(this, args);
|
| }
|
| - [dartx.lineWidth](width) {
|
| - return this.lineWidth(width);
|
| + [dartx.lineWidth](...args) {
|
| + return this.lineWidth.apply(this, args);
|
| }
|
| - [dartx.linkProgram](program) {
|
| - return this.linkProgram(program);
|
| + [dartx.linkProgram](...args) {
|
| + return this.linkProgram.apply(this, args);
|
| }
|
| - [dartx.pixelStorei](pname, param) {
|
| - return this.pixelStorei(pname, param);
|
| + [dartx.pixelStorei](...args) {
|
| + return this.pixelStorei.apply(this, args);
|
| }
|
| - [dartx.polygonOffset](factor, units) {
|
| - return this.polygonOffset(factor, units);
|
| + [dartx.polygonOffset](...args) {
|
| + return this.polygonOffset.apply(this, args);
|
| }
|
| - [dartx.readPixels](x, y, width, height, format, type, pixels) {
|
| - return this.readPixels(x, y, width, height, format, type, pixels);
|
| + [dartx.readPixels](...args) {
|
| + return this.readPixels.apply(this, args);
|
| }
|
| - [dartx.renderbufferStorage](target, internalformat, width, height) {
|
| - return this.renderbufferStorage(target, internalformat, width, height);
|
| + [dartx.renderbufferStorage](...args) {
|
| + return this.renderbufferStorage.apply(this, args);
|
| }
|
| - [dartx.sampleCoverage](value, invert) {
|
| - return this.sampleCoverage(value, invert);
|
| + [dartx.sampleCoverage](...args) {
|
| + return this.sampleCoverage.apply(this, args);
|
| }
|
| - [dartx.scissor](x, y, width, height) {
|
| - return this.scissor(x, y, width, height);
|
| + [dartx.scissor](...args) {
|
| + return this.scissor.apply(this, args);
|
| }
|
| - [dartx.shaderSource](shader, string) {
|
| - return this.shaderSource(shader, string);
|
| + [dartx.shaderSource](...args) {
|
| + return this.shaderSource.apply(this, args);
|
| }
|
| - [dartx.stencilFunc](func, ref, mask) {
|
| - return this.stencilFunc(func, ref, mask);
|
| + [dartx.stencilFunc](...args) {
|
| + return this.stencilFunc.apply(this, args);
|
| }
|
| - [dartx.stencilFuncSeparate](face, func, ref, mask) {
|
| - return this.stencilFuncSeparate(face, func, ref, mask);
|
| + [dartx.stencilFuncSeparate](...args) {
|
| + return this.stencilFuncSeparate.apply(this, args);
|
| }
|
| - [dartx.stencilMask](mask) {
|
| - return this.stencilMask(mask);
|
| + [dartx.stencilMask](...args) {
|
| + return this.stencilMask.apply(this, args);
|
| }
|
| - [dartx.stencilMaskSeparate](face, mask) {
|
| - return this.stencilMaskSeparate(face, mask);
|
| + [dartx.stencilMaskSeparate](...args) {
|
| + return this.stencilMaskSeparate.apply(this, args);
|
| }
|
| - [dartx.stencilOp](fail, zfail, zpass) {
|
| - return this.stencilOp(fail, zfail, zpass);
|
| + [dartx.stencilOp](...args) {
|
| + return this.stencilOp.apply(this, args);
|
| }
|
| - [dartx.stencilOpSeparate](face, fail, zfail, zpass) {
|
| - return this.stencilOpSeparate(face, fail, zfail, zpass);
|
| + [dartx.stencilOpSeparate](...args) {
|
| + return this.stencilOpSeparate.apply(this, args);
|
| }
|
| [dartx.texImage2D](target, level, internalformat, format_OR_width, height_OR_type, border_OR_canvas_OR_image_OR_pixels_OR_video, format, type, pixels) {
|
| if (format === void 0) format = null;
|
| @@ -92640,43 +92640,43 @@ web_gl.RenderingContext = class RenderingContext extends _interceptors.Intercept
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_texImage2D_1](target, level, internalformat, width, height, border, format, type, pixels) {
|
| - return this.texImage2D(target, level, internalformat, width, height, border, format, type, pixels);
|
| + [_texImage2D_1](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [_texImage2D_2](target, level, internalformat, format, type, pixels) {
|
| - return this.texImage2D(target, level, internalformat, format, type, pixels);
|
| + [_texImage2D_2](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [_texImage2D_3](target, level, internalformat, format, type, image) {
|
| - return this.texImage2D(target, level, internalformat, format, type, image);
|
| + [_texImage2D_3](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [_texImage2D_4](target, level, internalformat, format, type, canvas) {
|
| - return this.texImage2D(target, level, internalformat, format, type, canvas);
|
| + [_texImage2D_4](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [_texImage2D_5](target, level, internalformat, format, type, video) {
|
| - return this.texImage2D(target, level, internalformat, format, type, video);
|
| + [_texImage2D_5](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [dartx.texImage2DCanvas](target, level, internalformat, format, type, canvas) {
|
| - return this.texImage2D(target, level, internalformat, format, type, canvas);
|
| + [dartx.texImage2DCanvas](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [dartx.texImage2DImage](target, level, internalformat, format, type, image) {
|
| - return this.texImage2D(target, level, internalformat, format, type, image);
|
| + [dartx.texImage2DImage](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| [dartx.texImage2DImageData](target, level, internalformat, format, type, pixels) {
|
| let pixels_1 = html_common.convertDartToNative_ImageData(pixels);
|
| this[_texImage2DImageData_1](target, level, internalformat, format, type, pixels_1);
|
| return;
|
| }
|
| - [_texImage2DImageData_1](target, level, internalformat, format, type, pixels) {
|
| - return this.texImage2D(target, level, internalformat, format, type, pixels);
|
| + [_texImage2DImageData_1](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [dartx.texImage2DVideo](target, level, internalformat, format, type, video) {
|
| - return this.texImage2D(target, level, internalformat, format, type, video);
|
| + [dartx.texImage2DVideo](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [dartx.texParameterf](target, pname, param) {
|
| - return this.texParameterf(target, pname, param);
|
| + [dartx.texParameterf](...args) {
|
| + return this.texParameterf.apply(this, args);
|
| }
|
| - [dartx.texParameteri](target, pname, param) {
|
| - return this.texParameteri(target, pname, param);
|
| + [dartx.texParameteri](...args) {
|
| + return this.texParameteri.apply(this, args);
|
| }
|
| [dartx.texSubImage2D](target, level, xoffset, yoffset, format_OR_width, height_OR_type, canvas_OR_format_OR_image_OR_pixels_OR_video, type, pixels) {
|
| if (type === void 0) type = null;
|
| @@ -92704,142 +92704,142 @@ web_gl.RenderingContext = class RenderingContext extends _interceptors.Intercept
|
| }
|
| dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
|
| }
|
| - [_texSubImage2D_1](target, level, xoffset, yoffset, width, height, format, type, pixels) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels);
|
| + [_texSubImage2D_1](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [_texSubImage2D_2](target, level, xoffset, yoffset, format, type, pixels) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, format, type, pixels);
|
| + [_texSubImage2D_2](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [_texSubImage2D_3](target, level, xoffset, yoffset, format, type, image) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, format, type, image);
|
| + [_texSubImage2D_3](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [_texSubImage2D_4](target, level, xoffset, yoffset, format, type, canvas) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, format, type, canvas);
|
| + [_texSubImage2D_4](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [_texSubImage2D_5](target, level, xoffset, yoffset, format, type, video) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, format, type, video);
|
| + [_texSubImage2D_5](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [dartx.texSubImage2DCanvas](target, level, xoffset, yoffset, format, type, canvas) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, format, type, canvas);
|
| + [dartx.texSubImage2DCanvas](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [dartx.texSubImage2DImage](target, level, xoffset, yoffset, format, type, image) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, format, type, image);
|
| + [dartx.texSubImage2DImage](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| [dartx.texSubImage2DImageData](target, level, xoffset, yoffset, format, type, pixels) {
|
| let pixels_1 = html_common.convertDartToNative_ImageData(pixels);
|
| this[_texSubImage2DImageData_1](target, level, xoffset, yoffset, format, type, pixels_1);
|
| return;
|
| }
|
| - [_texSubImage2DImageData_1](target, level, xoffset, yoffset, format, type, pixels) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, format, type, pixels);
|
| + [_texSubImage2DImageData_1](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [dartx.texSubImage2DVideo](target, level, xoffset, yoffset, format, type, video) {
|
| - return this.texSubImage2D(target, level, xoffset, yoffset, format, type, video);
|
| + [dartx.texSubImage2DVideo](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [dartx.uniform1f](location, x) {
|
| - return this.uniform1f(location, x);
|
| + [dartx.uniform1f](...args) {
|
| + return this.uniform1f.apply(this, args);
|
| }
|
| - [dartx.uniform1fv](location, v) {
|
| - return this.uniform1fv(location, v);
|
| + [dartx.uniform1fv](...args) {
|
| + return this.uniform1fv.apply(this, args);
|
| }
|
| - [dartx.uniform1i](location, x) {
|
| - return this.uniform1i(location, x);
|
| + [dartx.uniform1i](...args) {
|
| + return this.uniform1i.apply(this, args);
|
| }
|
| - [dartx.uniform1iv](location, v) {
|
| - return this.uniform1iv(location, v);
|
| + [dartx.uniform1iv](...args) {
|
| + return this.uniform1iv.apply(this, args);
|
| }
|
| - [dartx.uniform2f](location, x, y) {
|
| - return this.uniform2f(location, x, y);
|
| + [dartx.uniform2f](...args) {
|
| + return this.uniform2f.apply(this, args);
|
| }
|
| - [dartx.uniform2fv](location, v) {
|
| - return this.uniform2fv(location, v);
|
| + [dartx.uniform2fv](...args) {
|
| + return this.uniform2fv.apply(this, args);
|
| }
|
| - [dartx.uniform2i](location, x, y) {
|
| - return this.uniform2i(location, x, y);
|
| + [dartx.uniform2i](...args) {
|
| + return this.uniform2i.apply(this, args);
|
| }
|
| - [dartx.uniform2iv](location, v) {
|
| - return this.uniform2iv(location, v);
|
| + [dartx.uniform2iv](...args) {
|
| + return this.uniform2iv.apply(this, args);
|
| }
|
| - [dartx.uniform3f](location, x, y, z) {
|
| - return this.uniform3f(location, x, y, z);
|
| + [dartx.uniform3f](...args) {
|
| + return this.uniform3f.apply(this, args);
|
| }
|
| - [dartx.uniform3fv](location, v) {
|
| - return this.uniform3fv(location, v);
|
| + [dartx.uniform3fv](...args) {
|
| + return this.uniform3fv.apply(this, args);
|
| }
|
| - [dartx.uniform3i](location, x, y, z) {
|
| - return this.uniform3i(location, x, y, z);
|
| + [dartx.uniform3i](...args) {
|
| + return this.uniform3i.apply(this, args);
|
| }
|
| - [dartx.uniform3iv](location, v) {
|
| - return this.uniform3iv(location, v);
|
| + [dartx.uniform3iv](...args) {
|
| + return this.uniform3iv.apply(this, args);
|
| }
|
| - [dartx.uniform4f](location, x, y, z, w) {
|
| - return this.uniform4f(location, x, y, z, w);
|
| + [dartx.uniform4f](...args) {
|
| + return this.uniform4f.apply(this, args);
|
| }
|
| - [dartx.uniform4fv](location, v) {
|
| - return this.uniform4fv(location, v);
|
| + [dartx.uniform4fv](...args) {
|
| + return this.uniform4fv.apply(this, args);
|
| }
|
| - [dartx.uniform4i](location, x, y, z, w) {
|
| - return this.uniform4i(location, x, y, z, w);
|
| + [dartx.uniform4i](...args) {
|
| + return this.uniform4i.apply(this, args);
|
| }
|
| - [dartx.uniform4iv](location, v) {
|
| - return this.uniform4iv(location, v);
|
| + [dartx.uniform4iv](...args) {
|
| + return this.uniform4iv.apply(this, args);
|
| }
|
| - [dartx.uniformMatrix2fv](location, transpose, array) {
|
| - return this.uniformMatrix2fv(location, transpose, array);
|
| + [dartx.uniformMatrix2fv](...args) {
|
| + return this.uniformMatrix2fv.apply(this, args);
|
| }
|
| - [dartx.uniformMatrix3fv](location, transpose, array) {
|
| - return this.uniformMatrix3fv(location, transpose, array);
|
| + [dartx.uniformMatrix3fv](...args) {
|
| + return this.uniformMatrix3fv.apply(this, args);
|
| }
|
| - [dartx.uniformMatrix4fv](location, transpose, array) {
|
| - return this.uniformMatrix4fv(location, transpose, array);
|
| + [dartx.uniformMatrix4fv](...args) {
|
| + return this.uniformMatrix4fv.apply(this, args);
|
| }
|
| - [dartx.useProgram](program) {
|
| - return this.useProgram(program);
|
| + [dartx.useProgram](...args) {
|
| + return this.useProgram.apply(this, args);
|
| }
|
| - [dartx.validateProgram](program) {
|
| - return this.validateProgram(program);
|
| + [dartx.validateProgram](...args) {
|
| + return this.validateProgram.apply(this, args);
|
| }
|
| - [dartx.vertexAttrib1f](indx, x) {
|
| - return this.vertexAttrib1f(indx, x);
|
| + [dartx.vertexAttrib1f](...args) {
|
| + return this.vertexAttrib1f.apply(this, args);
|
| }
|
| - [dartx.vertexAttrib1fv](indx, values) {
|
| - return this.vertexAttrib1fv(indx, values);
|
| + [dartx.vertexAttrib1fv](...args) {
|
| + return this.vertexAttrib1fv.apply(this, args);
|
| }
|
| - [dartx.vertexAttrib2f](indx, x, y) {
|
| - return this.vertexAttrib2f(indx, x, y);
|
| + [dartx.vertexAttrib2f](...args) {
|
| + return this.vertexAttrib2f.apply(this, args);
|
| }
|
| - [dartx.vertexAttrib2fv](indx, values) {
|
| - return this.vertexAttrib2fv(indx, values);
|
| + [dartx.vertexAttrib2fv](...args) {
|
| + return this.vertexAttrib2fv.apply(this, args);
|
| }
|
| - [dartx.vertexAttrib3f](indx, x, y, z) {
|
| - return this.vertexAttrib3f(indx, x, y, z);
|
| + [dartx.vertexAttrib3f](...args) {
|
| + return this.vertexAttrib3f.apply(this, args);
|
| }
|
| - [dartx.vertexAttrib3fv](indx, values) {
|
| - return this.vertexAttrib3fv(indx, values);
|
| + [dartx.vertexAttrib3fv](...args) {
|
| + return this.vertexAttrib3fv.apply(this, args);
|
| }
|
| - [dartx.vertexAttrib4f](indx, x, y, z, w) {
|
| - return this.vertexAttrib4f(indx, x, y, z, w);
|
| + [dartx.vertexAttrib4f](...args) {
|
| + return this.vertexAttrib4f.apply(this, args);
|
| }
|
| - [dartx.vertexAttrib4fv](indx, values) {
|
| - return this.vertexAttrib4fv(indx, values);
|
| + [dartx.vertexAttrib4fv](...args) {
|
| + return this.vertexAttrib4fv.apply(this, args);
|
| }
|
| - [dartx.vertexAttribPointer](indx, size, type, normalized, stride, offset) {
|
| - return this.vertexAttribPointer(indx, size, type, normalized, stride, offset);
|
| + [dartx.vertexAttribPointer](...args) {
|
| + return this.vertexAttribPointer.apply(this, args);
|
| }
|
| - [dartx.viewport](x, y, width, height) {
|
| - return this.viewport(x, y, width, height);
|
| + [dartx.viewport](...args) {
|
| + return this.viewport.apply(this, args);
|
| }
|
| - [dartx.texImage2DUntyped](targetTexture, levelOfDetail, internalFormat, format, type, data) {
|
| - return this.texImage2D(targetTexture, levelOfDetail, internalFormat, format, type, data);
|
| + [dartx.texImage2DUntyped](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [dartx.texImage2DTyped](targetTexture, levelOfDetail, internalFormat, width, height, border, format, type, data) {
|
| - return this.texImage2D(targetTexture, levelOfDetail, internalFormat, width, height, border, format, type, data);
|
| + [dartx.texImage2DTyped](...args) {
|
| + return this.texImage2D.apply(this, args);
|
| }
|
| - [dartx.texSubImage2DUntyped](targetTexture, levelOfDetail, xOffset, yOffset, format, type, data) {
|
| - return this.texSubImage2D(targetTexture, levelOfDetail, xOffset, yOffset, format, type, data);
|
| + [dartx.texSubImage2DUntyped](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| - [dartx.texSubImage2DTyped](targetTexture, levelOfDetail, xOffset, yOffset, width, height, border, format, type, data) {
|
| - return this.texSubImage2D(targetTexture, levelOfDetail, xOffset, yOffset, width, height, border, format, type, data);
|
| + [dartx.texSubImage2DTyped](...args) {
|
| + return this.texSubImage2D.apply(this, args);
|
| }
|
| };
|
| web_gl.RenderingContext[dart.implements] = () => [html.CanvasRenderingContext];
|
| @@ -93960,14 +93960,14 @@ web_gl.AngleInstancedArrays = class AngleInstancedArrays extends _interceptors.I
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.drawArraysInstancedAngle](mode, first, count, primcount) {
|
| - return this.drawArraysInstancedANGLE(mode, first, count, primcount);
|
| + [dartx.drawArraysInstancedAngle](...args) {
|
| + return this.drawArraysInstancedANGLE.apply(this, args);
|
| }
|
| - [dartx.drawElementsInstancedAngle](mode, count, type, offset, primcount) {
|
| - return this.drawElementsInstancedANGLE(mode, count, type, offset, primcount);
|
| + [dartx.drawElementsInstancedAngle](...args) {
|
| + return this.drawElementsInstancedANGLE.apply(this, args);
|
| }
|
| - [dartx.vertexAttribDivisorAngle](index, divisor) {
|
| - return this.vertexAttribDivisorANGLE(index, divisor);
|
| + [dartx.vertexAttribDivisorAngle](...args) {
|
| + return this.vertexAttribDivisorANGLE.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_gl.AngleInstancedArrays, {
|
| @@ -94163,8 +94163,8 @@ web_gl.DebugShaders = class DebugShaders extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.getTranslatedShaderSource](shader) {
|
| - return this.getTranslatedShaderSource(shader);
|
| + [dartx.getTranslatedShaderSource](...args) {
|
| + return this.getTranslatedShaderSource.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_gl.DebugShaders, {
|
| @@ -94190,8 +94190,8 @@ web_gl.DrawBuffers = class DrawBuffers extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.drawBuffersWebgl](buffers) {
|
| - return this.drawBuffersWEBGL(buffers);
|
| + [dartx.drawBuffersWebgl](...args) {
|
| + return this.drawBuffersWEBGL.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_gl.DrawBuffers, {
|
| @@ -94334,11 +94334,11 @@ web_gl.LoseContext = class LoseContext extends _interceptors.Interceptor {
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.loseContext]() {
|
| - return this.loseContext();
|
| + [dartx.loseContext](...args) {
|
| + return this.loseContext.apply(this, args);
|
| }
|
| - [dartx.restoreContext]() {
|
| - return this.restoreContext();
|
| + [dartx.restoreContext](...args) {
|
| + return this.restoreContext.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_gl.LoseContext, {
|
| @@ -94407,17 +94407,17 @@ web_gl.OesVertexArrayObject = class OesVertexArrayObject extends _interceptors.I
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.bindVertexArray](arrayObject) {
|
| - return this.bindVertexArrayOES(arrayObject);
|
| + [dartx.bindVertexArray](...args) {
|
| + return this.bindVertexArrayOES.apply(this, args);
|
| }
|
| - [dartx.createVertexArray]() {
|
| - return this.createVertexArrayOES();
|
| + [dartx.createVertexArray](...args) {
|
| + return this.createVertexArrayOES.apply(this, args);
|
| }
|
| - [dartx.deleteVertexArray](arrayObject) {
|
| - return this.deleteVertexArrayOES(arrayObject);
|
| + [dartx.deleteVertexArray](...args) {
|
| + return this.deleteVertexArrayOES.apply(this, args);
|
| }
|
| - [dartx.isVertexArray](arrayObject) {
|
| - return this.isVertexArrayOES(arrayObject);
|
| + [dartx.isVertexArray](...args) {
|
| + return this.isVertexArrayOES.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_gl.OesVertexArrayObject, {
|
| @@ -94542,14 +94542,14 @@ web_sql.SqlDatabase = class SqlDatabase extends _interceptors.Interceptor {
|
| get [dartx.version]() {
|
| return this.version;
|
| }
|
| - [dartx.changeVersion](oldVersion, newVersion, callback, errorCallback, successCallback) {
|
| - return this.changeVersion(oldVersion, newVersion, callback, errorCallback, successCallback);
|
| + [dartx.changeVersion](...args) {
|
| + return this.changeVersion.apply(this, args);
|
| }
|
| - [dartx.readTransaction](callback, errorCallback, successCallback) {
|
| - return this.readTransaction(callback, errorCallback, successCallback);
|
| + [dartx.readTransaction](...args) {
|
| + return this.readTransaction.apply(this, args);
|
| }
|
| - [dartx.transaction](callback, errorCallback, successCallback) {
|
| - return this.transaction(callback, errorCallback, successCallback);
|
| + [dartx.transaction](...args) {
|
| + return this.transaction.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_sql.SqlDatabase, {
|
| @@ -94689,8 +94689,8 @@ web_sql.SqlResultSetRowList = class SqlResultSetRowList extends dart.mixin(_inte
|
| [dartx.item](index) {
|
| return html_common.convertNativeToDart_Dictionary(this[_item_1](index));
|
| }
|
| - [_item_1](index) {
|
| - return this.item(index);
|
| + [_item_1](...args) {
|
| + return this.item.apply(this, args);
|
| }
|
| };
|
| web_sql.SqlResultSetRowList[dart.implements] = () => [ListOfMap()];
|
| @@ -94719,8 +94719,8 @@ web_sql.SqlTransaction = class SqlTransaction extends _interceptors.Interceptor
|
| static _() {
|
| dart.throw(new core.UnsupportedError("Not supported"));
|
| }
|
| - [dartx.executeSql](sqlStatement, arguments$, callback, errorCallback) {
|
| - return this.executeSql(sqlStatement, arguments$, callback, errorCallback);
|
| + [dartx.executeSql](...args) {
|
| + return this.executeSql.apply(this, args);
|
| }
|
| };
|
| dart.setSignature(web_sql.SqlTransaction, {
|
|
|