| Index: sdk/lib/svg/dartium/svg_dartium.dart
|
| diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
|
| index 1e7f2764bdb879776bc0a6b58fdcf212c6fb0320..bc8f05fc465ee57db7dd841e78f6a5783f787294 100644
|
| --- a/sdk/lib/svg/dartium/svg_dartium.dart
|
| +++ b/sdk/lib/svg/dartium/svg_dartium.dart
|
| @@ -333,11 +333,11 @@ class AElement extends GraphicsElement implements UriReference {
|
|
|
| @DomName('SVGAElement.target')
|
| @DocsEditable()
|
| - AnimatedString get target => wrap_jso(_blink.BlinkSVGAElement.instance.target_Getter_(unwrap_jso(this)));
|
| + AnimatedString get target => _blink.BlinkSVGAElement.instance.target_Getter_(this);
|
|
|
| @DomName('SVGAElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGAElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGAElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -366,9 +366,6 @@ class Angle extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| Angle.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAngle.SVG_ANGLETYPE_DEG')
|
| @DocsEditable()
|
| static const int SVG_ANGLETYPE_DEG = 2;
|
| @@ -391,39 +388,39 @@ class Angle extends DartHtmlDomObject {
|
|
|
| @DomName('SVGAngle.unitType')
|
| @DocsEditable()
|
| - int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(unwrap_jso(this));
|
| + int get unitType => _blink.BlinkSVGAngle.instance.unitType_Getter_(this);
|
|
|
| @DomName('SVGAngle.value')
|
| @DocsEditable()
|
| - num get value => _blink.BlinkSVGAngle.instance.value_Getter_(unwrap_jso(this));
|
| + num get value => _blink.BlinkSVGAngle.instance.value_Getter_(this);
|
|
|
| @DomName('SVGAngle.value')
|
| @DocsEditable()
|
| - set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(unwrap_jso(this), value);
|
| + set value(num value) => _blink.BlinkSVGAngle.instance.value_Setter_(this, value);
|
|
|
| @DomName('SVGAngle.valueAsString')
|
| @DocsEditable()
|
| - String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter_(unwrap_jso(this));
|
| + String get valueAsString => _blink.BlinkSVGAngle.instance.valueAsString_Getter_(this);
|
|
|
| @DomName('SVGAngle.valueAsString')
|
| @DocsEditable()
|
| - set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsString_Setter_(unwrap_jso(this), value);
|
| + set valueAsString(String value) => _blink.BlinkSVGAngle.instance.valueAsString_Setter_(this, value);
|
|
|
| @DomName('SVGAngle.valueInSpecifiedUnits')
|
| @DocsEditable()
|
| - num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifiedUnits_Getter_(unwrap_jso(this));
|
| + num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.instance.valueInSpecifiedUnits_Getter_(this);
|
|
|
| @DomName('SVGAngle.valueInSpecifiedUnits')
|
| @DocsEditable()
|
| - set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.valueInSpecifiedUnits_Setter_(unwrap_jso(this), value);
|
| + set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.instance.valueInSpecifiedUnits_Setter_(this, value);
|
|
|
| @DomName('SVGAngle.convertToSpecifiedUnits')
|
| @DocsEditable()
|
| - void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.convertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType);
|
| + void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.instance.convertToSpecifiedUnits_Callback_1_(this, unitType);
|
|
|
| @DomName('SVGAngle.newValueSpecifiedUnits')
|
| @DocsEditable()
|
| - void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink.BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), unitType, valueInSpecifiedUnits);
|
| + void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink.BlinkSVGAngle.instance.newValueSpecifiedUnits_Callback_2_(this, unitType, valueInSpecifiedUnits);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -581,16 +578,13 @@ class AnimatedAngle extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedAngle.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedAngle.animVal')
|
| @DocsEditable()
|
| - Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Getter_(unwrap_jso(this)));
|
| + Angle get animVal => _blink.BlinkSVGAnimatedAngle.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedAngle.baseVal')
|
| @DocsEditable()
|
| - Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Getter_(unwrap_jso(this)));
|
| + Angle get baseVal => _blink.BlinkSVGAnimatedAngle.instance.baseVal_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -619,20 +613,17 @@ class AnimatedBoolean extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedBoolean.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedBoolean.animVal')
|
| @DocsEditable()
|
| - bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(unwrap_jso(this));
|
| + bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedBoolean.baseVal')
|
| @DocsEditable()
|
| - bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(unwrap_jso(this));
|
| + bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedBoolean.baseVal')
|
| @DocsEditable()
|
| - set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Setter_(unwrap_jso(this), value);
|
| + set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -661,20 +652,17 @@ class AnimatedEnumeration extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedEnumeration.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedEnumeration.animVal')
|
| @DocsEditable()
|
| - int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_(unwrap_jso(this));
|
| + int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedEnumeration.baseVal')
|
| @DocsEditable()
|
| - int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_(unwrap_jso(this));
|
| + int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedEnumeration.baseVal')
|
| @DocsEditable()
|
| - set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Setter_(unwrap_jso(this), value);
|
| + set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -703,20 +691,17 @@ class AnimatedInteger extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedInteger.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedInteger.animVal')
|
| @DocsEditable()
|
| - int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unwrap_jso(this));
|
| + int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedInteger.baseVal')
|
| @DocsEditable()
|
| - int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unwrap_jso(this));
|
| + int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedInteger.baseVal')
|
| @DocsEditable()
|
| - set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Setter_(unwrap_jso(this), value);
|
| + set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -745,16 +730,13 @@ class AnimatedLength extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedLength.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedLength.animVal')
|
| @DocsEditable()
|
| - Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_Getter_(unwrap_jso(this)));
|
| + Length get animVal => _blink.BlinkSVGAnimatedLength.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedLength.baseVal')
|
| @DocsEditable()
|
| - Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_Getter_(unwrap_jso(this)));
|
| + Length get baseVal => _blink.BlinkSVGAnimatedLength.instance.baseVal_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -783,16 +765,13 @@ class AnimatedLengthList extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedLengthList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedLengthList.animVal')
|
| @DocsEditable()
|
| - LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.animVal_Getter_(unwrap_jso(this)));
|
| + LengthList get animVal => _blink.BlinkSVGAnimatedLengthList.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedLengthList.baseVal')
|
| @DocsEditable()
|
| - LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance.baseVal_Getter_(unwrap_jso(this)));
|
| + LengthList get baseVal => _blink.BlinkSVGAnimatedLengthList.instance.baseVal_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -821,20 +800,17 @@ class AnimatedNumber extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedNumber.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedNumber.animVal')
|
| @DocsEditable()
|
| - num get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(unwrap_jso(this));
|
| + num get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedNumber.baseVal')
|
| @DocsEditable()
|
| - num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwrap_jso(this));
|
| + num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedNumber.baseVal')
|
| @DocsEditable()
|
| - set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Setter_(unwrap_jso(this), value);
|
| + set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -863,16 +839,13 @@ class AnimatedNumberList extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedNumberList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedNumberList.animVal')
|
| @DocsEditable()
|
| - NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.animVal_Getter_(unwrap_jso(this)));
|
| + NumberList get animVal => _blink.BlinkSVGAnimatedNumberList.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedNumberList.baseVal')
|
| @DocsEditable()
|
| - NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance.baseVal_Getter_(unwrap_jso(this)));
|
| + NumberList get baseVal => _blink.BlinkSVGAnimatedNumberList.instance.baseVal_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -901,16 +874,13 @@ class AnimatedPreserveAspectRatio extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedPreserveAspectRatio.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedPreserveAspectRatio.animVal')
|
| @DocsEditable()
|
| - PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAspectRatio.instance.animVal_Getter_(unwrap_jso(this)));
|
| + PreserveAspectRatio get animVal => _blink.BlinkSVGAnimatedPreserveAspectRatio.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedPreserveAspectRatio.baseVal')
|
| @DocsEditable()
|
| - PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAspectRatio.instance.baseVal_Getter_(unwrap_jso(this)));
|
| + PreserveAspectRatio get baseVal => _blink.BlinkSVGAnimatedPreserveAspectRatio.instance.baseVal_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -939,16 +909,13 @@ class AnimatedRect extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedRect.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedRect.animVal')
|
| @DocsEditable()
|
| - Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Getter_(unwrap_jso(this)));
|
| + Rect get animVal => _blink.BlinkSVGAnimatedRect.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedRect.baseVal')
|
| @DocsEditable()
|
| - Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Getter_(unwrap_jso(this)));
|
| + Rect get baseVal => _blink.BlinkSVGAnimatedRect.instance.baseVal_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -977,20 +944,17 @@ class AnimatedString extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedString.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedString.animVal')
|
| @DocsEditable()
|
| - String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(unwrap_jso(this));
|
| + String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedString.baseVal')
|
| @DocsEditable()
|
| - String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(unwrap_jso(this));
|
| + String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedString.baseVal')
|
| @DocsEditable()
|
| - set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseVal_Setter_(unwrap_jso(this), value);
|
| + set baseVal(String value) => _blink.BlinkSVGAnimatedString.instance.baseVal_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1019,16 +983,13 @@ class AnimatedTransformList extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| AnimatedTransformList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGAnimatedTransformList.animVal')
|
| @DocsEditable()
|
| - TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.instance.animVal_Getter_(unwrap_jso(this)));
|
| + TransformList get animVal => _blink.BlinkSVGAnimatedTransformList.instance.animVal_Getter_(this);
|
|
|
| @DomName('SVGAnimatedTransformList.baseVal')
|
| @DocsEditable()
|
| - TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.instance.baseVal_Getter_(unwrap_jso(this)));
|
| + TransformList get baseVal => _blink.BlinkSVGAnimatedTransformList.instance.baseVal_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1069,51 +1030,51 @@ class AnimationElement extends SvgElement implements Tests {
|
|
|
| @DomName('SVGAnimationElement.targetElement')
|
| @DocsEditable()
|
| - SvgElement get targetElement => wrap_jso(_blink.BlinkSVGAnimationElement.instance.targetElement_Getter_(unwrap_jso(this)));
|
| + SvgElement get targetElement => _blink.BlinkSVGAnimationElement.instance.targetElement_Getter_(this);
|
|
|
| @DomName('SVGAnimationElement.beginElement')
|
| @DocsEditable()
|
| - void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_Callback_0_(unwrap_jso(this));
|
| + void beginElement() => _blink.BlinkSVGAnimationElement.instance.beginElement_Callback_0_(this);
|
|
|
| @DomName('SVGAnimationElement.beginElementAt')
|
| @DocsEditable()
|
| - void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.beginElementAt_Callback_1_(unwrap_jso(this), offset);
|
| + void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.beginElementAt_Callback_1_(this, offset);
|
|
|
| @DomName('SVGAnimationElement.endElement')
|
| @DocsEditable()
|
| - void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callback_0_(unwrap_jso(this));
|
| + void endElement() => _blink.BlinkSVGAnimationElement.instance.endElement_Callback_0_(this);
|
|
|
| @DomName('SVGAnimationElement.endElementAt')
|
| @DocsEditable()
|
| - void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endElementAt_Callback_1_(unwrap_jso(this), offset);
|
| + void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.instance.endElementAt_Callback_1_(this, offset);
|
|
|
| @DomName('SVGAnimationElement.getCurrentTime')
|
| @DocsEditable()
|
| - num getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrentTime_Callback_0_(unwrap_jso(this));
|
| + num getCurrentTime() => _blink.BlinkSVGAnimationElement.instance.getCurrentTime_Callback_0_(this);
|
|
|
| @DomName('SVGAnimationElement.getSimpleDuration')
|
| @DocsEditable()
|
| - num getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimpleDuration_Callback_0_(unwrap_jso(this));
|
| + num getSimpleDuration() => _blink.BlinkSVGAnimationElement.instance.getSimpleDuration_Callback_0_(this);
|
|
|
| @DomName('SVGAnimationElement.getStartTime')
|
| @DocsEditable()
|
| - num getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime_Callback_0_(unwrap_jso(this));
|
| + num getStartTime() => _blink.BlinkSVGAnimationElement.instance.getStartTime_Callback_0_(this);
|
|
|
| @DomName('SVGAnimationElement.requiredExtensions')
|
| @DocsEditable()
|
| - StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGAnimationElement.instance.requiredExtensions_Getter_(unwrap_jso(this)));
|
| + StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.instance.requiredExtensions_Getter_(this);
|
|
|
| @DomName('SVGAnimationElement.requiredFeatures')
|
| @DocsEditable()
|
| - StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGAnimationElement.instance.requiredFeatures_Getter_(unwrap_jso(this)));
|
| + StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.instance.requiredFeatures_Getter_(this);
|
|
|
| @DomName('SVGAnimationElement.systemLanguage')
|
| @DocsEditable()
|
| - StringList get systemLanguage => wrap_jso(_blink.BlinkSVGAnimationElement.instance.systemLanguage_Getter_(unwrap_jso(this)));
|
| + StringList get systemLanguage => _blink.BlinkSVGAnimationElement.instance.systemLanguage_Getter_(this);
|
|
|
| @DomName('SVGAnimationElement.hasExtension')
|
| @DocsEditable()
|
| - bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.instance.hasExtension_Callback_1_(unwrap_jso(this), extension);
|
| + bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.instance.hasExtension_Callback_1_(this, extension);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1154,15 +1115,15 @@ class CircleElement extends GeometryElement {
|
|
|
| @DomName('SVGCircleElement.cx')
|
| @DocsEditable()
|
| - AnimatedLength get cx => wrap_jso(_blink.BlinkSVGCircleElement.instance.cx_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get cx => _blink.BlinkSVGCircleElement.instance.cx_Getter_(this);
|
|
|
| @DomName('SVGCircleElement.cy')
|
| @DocsEditable()
|
| - AnimatedLength get cy => wrap_jso(_blink.BlinkSVGCircleElement.instance.cy_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get cy => _blink.BlinkSVGCircleElement.instance.cy_Getter_(this);
|
|
|
| @DomName('SVGCircleElement.r')
|
| @DocsEditable()
|
| - AnimatedLength get r => wrap_jso(_blink.BlinkSVGCircleElement.instance.r_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get r => _blink.BlinkSVGCircleElement.instance.r_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1203,7 +1164,7 @@ class ClipPathElement extends GraphicsElement {
|
|
|
| @DomName('SVGClipPathElement.clipPathUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get clipPathUnits => wrap_jso(_blink.BlinkSVGClipPathElement.instance.clipPathUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get clipPathUnits => _blink.BlinkSVGClipPathElement.instance.clipPathUnits_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1351,19 +1312,19 @@ class EllipseElement extends GeometryElement {
|
|
|
| @DomName('SVGEllipseElement.cx')
|
| @DocsEditable()
|
| - AnimatedLength get cx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cx_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get cx => _blink.BlinkSVGEllipseElement.instance.cx_Getter_(this);
|
|
|
| @DomName('SVGEllipseElement.cy')
|
| @DocsEditable()
|
| - AnimatedLength get cy => wrap_jso(_blink.BlinkSVGEllipseElement.instance.cy_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get cy => _blink.BlinkSVGEllipseElement.instance.cy_Getter_(this);
|
|
|
| @DomName('SVGEllipseElement.rx')
|
| @DocsEditable()
|
| - AnimatedLength get rx => wrap_jso(_blink.BlinkSVGEllipseElement.instance.rx_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get rx => _blink.BlinkSVGEllipseElement.instance.rx_Getter_(this);
|
|
|
| @DomName('SVGEllipseElement.ry')
|
| @DocsEditable()
|
| - AnimatedLength get ry => wrap_jso(_blink.BlinkSVGEllipseElement.instance.ry_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get ry => _blink.BlinkSVGEllipseElement.instance.ry_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1435,35 +1396,35 @@ class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
|
|
|
| @DomName('SVGFEBlendElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEBlendElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEBlendElement.in2')
|
| @DocsEditable()
|
| - AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.in2_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in2 => _blink.BlinkSVGFEBlendElement.instance.in2_Getter_(this);
|
|
|
| @DomName('SVGFEBlendElement.mode')
|
| @DocsEditable()
|
| - AnimatedEnumeration get mode => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.mode_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get mode => _blink.BlinkSVGFEBlendElement.instance.mode_Getter_(this);
|
|
|
| @DomName('SVGFEBlendElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEBlendElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEBlendElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEBlendElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEBlendElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEBlendElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEBlendElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEBlendElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEBlendElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEBlendElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEBlendElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1531,35 +1492,35 @@ class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
|
|
|
| @DomName('SVGFEColorMatrixElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEColorMatrixElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEColorMatrixElement.type')
|
| @DocsEditable()
|
| - AnimatedEnumeration get type => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.type_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get type => _blink.BlinkSVGFEColorMatrixElement.instance.type_Getter_(this);
|
|
|
| @DomName('SVGFEColorMatrixElement.values')
|
| @DocsEditable()
|
| - AnimatedNumberList get values => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.values_Getter_(unwrap_jso(this)));
|
| + AnimatedNumberList get values => _blink.BlinkSVGFEColorMatrixElement.instance.values_Getter_(this);
|
|
|
| @DomName('SVGFEColorMatrixElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEColorMatrixElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEColorMatrixElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEColorMatrixElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEColorMatrixElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEColorMatrixElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEColorMatrixElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEColorMatrixElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEColorMatrixElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEColorMatrixElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEColorMatrixElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1607,27 +1568,27 @@ class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
|
|
|
| @DomName('SVGFEComponentTransferElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEComponentTransferElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEComponentTransferElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEComponentTransferElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEComponentTransferElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEComponentTransferElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEComponentTransferElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEComponentTransferElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEComponentTransferElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEComponentTransferElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEComponentTransferElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEComponentTransferElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEComponentTransferElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1692,51 +1653,51 @@ class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
|
|
|
| @DomName('SVGFECompositeElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFECompositeElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.in2')
|
| @DocsEditable()
|
| - AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.in2_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in2 => _blink.BlinkSVGFECompositeElement.instance.in2_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.k1')
|
| @DocsEditable()
|
| - AnimatedNumber get k1 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k1_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get k1 => _blink.BlinkSVGFECompositeElement.instance.k1_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.k2')
|
| @DocsEditable()
|
| - AnimatedNumber get k2 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k2_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get k2 => _blink.BlinkSVGFECompositeElement.instance.k2_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.k3')
|
| @DocsEditable()
|
| - AnimatedNumber get k3 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k3_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get k3 => _blink.BlinkSVGFECompositeElement.instance.k3_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.k4')
|
| @DocsEditable()
|
| - AnimatedNumber get k4 => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.k4_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get k4 => _blink.BlinkSVGFECompositeElement.instance.k4_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.operator')
|
| @DocsEditable()
|
| - AnimatedEnumeration get operator => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.operator_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get operator => _blink.BlinkSVGFECompositeElement.instance.operator_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFECompositeElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFECompositeElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFECompositeElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFECompositeElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFECompositeElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFECompositeElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFECompositeElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1800,71 +1761,71 @@ class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
|
|
|
| @DomName('SVGFEConvolveMatrixElement.bias')
|
| @DocsEditable()
|
| - AnimatedNumber get bias => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.bias_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get bias => _blink.BlinkSVGFEConvolveMatrixElement.instance.bias_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.divisor')
|
| @DocsEditable()
|
| - AnimatedNumber get divisor => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.divisor_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get divisor => _blink.BlinkSVGFEConvolveMatrixElement.instance.divisor_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.edgeMode')
|
| @DocsEditable()
|
| - AnimatedEnumeration get edgeMode => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.edgeMode_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get edgeMode => _blink.BlinkSVGFEConvolveMatrixElement.instance.edgeMode_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEConvolveMatrixElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.kernelMatrix')
|
| @DocsEditable()
|
| - AnimatedNumberList get kernelMatrix => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.kernelMatrix_Getter_(unwrap_jso(this)));
|
| + AnimatedNumberList get kernelMatrix => _blink.BlinkSVGFEConvolveMatrixElement.instance.kernelMatrix_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX')
|
| @DocsEditable()
|
| - AnimatedNumber get kernelUnitLengthX => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.kernelUnitLengthX_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEConvolveMatrixElement.instance.kernelUnitLengthX_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY')
|
| @DocsEditable()
|
| - AnimatedNumber get kernelUnitLengthY => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.kernelUnitLengthY_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEConvolveMatrixElement.instance.kernelUnitLengthY_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.orderX')
|
| @DocsEditable()
|
| - AnimatedInteger get orderX => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.orderX_Getter_(unwrap_jso(this)));
|
| + AnimatedInteger get orderX => _blink.BlinkSVGFEConvolveMatrixElement.instance.orderX_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.orderY')
|
| @DocsEditable()
|
| - AnimatedInteger get orderY => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.orderY_Getter_(unwrap_jso(this)));
|
| + AnimatedInteger get orderY => _blink.BlinkSVGFEConvolveMatrixElement.instance.orderY_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.preserveAlpha')
|
| @DocsEditable()
|
| - AnimatedBoolean get preserveAlpha => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.preserveAlpha_Getter_(unwrap_jso(this)));
|
| + AnimatedBoolean get preserveAlpha => _blink.BlinkSVGFEConvolveMatrixElement.instance.preserveAlpha_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.targetX')
|
| @DocsEditable()
|
| - AnimatedInteger get targetX => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.targetX_Getter_(unwrap_jso(this)));
|
| + AnimatedInteger get targetX => _blink.BlinkSVGFEConvolveMatrixElement.instance.targetX_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.targetY')
|
| @DocsEditable()
|
| - AnimatedInteger get targetY => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.targetY_Getter_(unwrap_jso(this)));
|
| + AnimatedInteger get targetY => _blink.BlinkSVGFEConvolveMatrixElement.instance.targetY_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEConvolveMatrixElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEConvolveMatrixElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEConvolveMatrixElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEConvolveMatrixElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEConvolveMatrixElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEConvolveMatrixElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEConvolveMatrixElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -1912,43 +1873,43 @@ class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
|
|
|
| @DomName('SVGFEDiffuseLightingElement.diffuseConstant')
|
| @DocsEditable()
|
| - AnimatedNumber get diffuseConstant => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.diffuseConstant_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get diffuseConstant => _blink.BlinkSVGFEDiffuseLightingElement.instance.diffuseConstant_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEDiffuseLightingElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX')
|
| @DocsEditable()
|
| - AnimatedNumber get kernelUnitLengthX => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.kernelUnitLengthX_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEDiffuseLightingElement.instance.kernelUnitLengthX_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY')
|
| @DocsEditable()
|
| - AnimatedNumber get kernelUnitLengthY => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.kernelUnitLengthY_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEDiffuseLightingElement.instance.kernelUnitLengthY_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.surfaceScale')
|
| @DocsEditable()
|
| - AnimatedNumber get surfaceScale => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.surfaceScale_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get surfaceScale => _blink.BlinkSVGFEDiffuseLightingElement.instance.surfaceScale_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEDiffuseLightingElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEDiffuseLightingElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEDiffuseLightingElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEDiffuseLightingElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEDiffuseLightingElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDiffuseLightingElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEDiffuseLightingElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2016,43 +1977,43 @@ class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
|
|
|
| @DomName('SVGFEDisplacementMapElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEDisplacementMapElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.in2')
|
| @DocsEditable()
|
| - AnimatedString get in2 => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.in2_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in2 => _blink.BlinkSVGFEDisplacementMapElement.instance.in2_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.scale')
|
| @DocsEditable()
|
| - AnimatedNumber get scale => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.scale_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get scale => _blink.BlinkSVGFEDisplacementMapElement.instance.scale_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.xChannelSelector')
|
| @DocsEditable()
|
| - AnimatedEnumeration get xChannelSelector => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.xChannelSelector_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get xChannelSelector => _blink.BlinkSVGFEDisplacementMapElement.instance.xChannelSelector_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.yChannelSelector')
|
| @DocsEditable()
|
| - AnimatedEnumeration get yChannelSelector => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.yChannelSelector_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get yChannelSelector => _blink.BlinkSVGFEDisplacementMapElement.instance.yChannelSelector_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEDisplacementMapElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEDisplacementMapElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEDisplacementMapElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEDisplacementMapElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEDisplacementMapElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDisplacementMapElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEDisplacementMapElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2100,11 +2061,11 @@ class FEDistantLightElement extends SvgElement {
|
|
|
| @DomName('SVGFEDistantLightElement.azimuth')
|
| @DocsEditable()
|
| - AnimatedNumber get azimuth => wrap_jso(_blink.BlinkSVGFEDistantLightElement.instance.azimuth_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get azimuth => _blink.BlinkSVGFEDistantLightElement.instance.azimuth_Getter_(this);
|
|
|
| @DomName('SVGFEDistantLightElement.elevation')
|
| @DocsEditable()
|
| - AnimatedNumber get elevation => wrap_jso(_blink.BlinkSVGFEDistantLightElement.instance.elevation_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get elevation => _blink.BlinkSVGFEDistantLightElement.instance.elevation_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2152,23 +2113,23 @@ class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
|
|
|
| @DomName('SVGFEFloodElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEFloodElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEFloodElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEFloodElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEFloodElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEFloodElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEFloodElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEFloodElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEFloodElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEFloodElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEFloodElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2392,39 +2353,39 @@ class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
|
|
|
| @DomName('SVGFEGaussianBlurElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEGaussianBlurElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEGaussianBlurElement.stdDeviationX')
|
| @DocsEditable()
|
| - AnimatedNumber get stdDeviationX => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance.stdDeviationX_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.instance.stdDeviationX_Getter_(this);
|
|
|
| @DomName('SVGFEGaussianBlurElement.stdDeviationY')
|
| @DocsEditable()
|
| - AnimatedNumber get stdDeviationY => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance.stdDeviationY_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.instance.stdDeviationY_Getter_(this);
|
|
|
| @DomName('SVGFEGaussianBlurElement.setStdDeviation')
|
| @DocsEditable()
|
| - void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGFEGaussianBlurElement.instance.setStdDeviation_Callback_2_(unwrap_jso(this), stdDeviationX, stdDeviationY);
|
| + void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGFEGaussianBlurElement.instance.setStdDeviation_Callback_2_(this, stdDeviationX, stdDeviationY);
|
|
|
| @DomName('SVGFEGaussianBlurElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEGaussianBlurElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEGaussianBlurElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEGaussianBlurElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEGaussianBlurElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEGaussianBlurElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEGaussianBlurElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEGaussianBlurElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEGaussianBlurElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2472,31 +2433,31 @@ class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
|
|
|
| @DomName('SVGFEImageElement.preserveAspectRatio')
|
| @DocsEditable()
|
| - AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSVGFEImageElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this)));
|
| + AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFEImageElement.instance.preserveAspectRatio_Getter_(this);
|
|
|
| @DomName('SVGFEImageElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEImageElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEImageElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEImageElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEImageElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEImageElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEImageElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEImageElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEImageElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEImageElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEImageElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEImageElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEImageElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEImageElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEImageElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGFEImageElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGFEImageElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGFEImageElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2544,23 +2505,23 @@ class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
|
|
|
| @DomName('SVGFEMergeElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEMergeElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEMergeElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEMergeElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEMergeElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEMergeElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEMergeElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEMergeElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEMergeElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEMergeElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEMergeElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2608,7 +2569,7 @@ class FEMergeNodeElement extends SvgElement {
|
|
|
| @DomName('SVGFEMergeNodeElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEMergeNodeElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEMergeNodeElement.instance.in1_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2661,39 +2622,39 @@ class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
|
|
|
| @DomName('SVGFEMorphologyElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEMorphologyElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEMorphologyElement.operator')
|
| @DocsEditable()
|
| - AnimatedEnumeration get operator => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.operator_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get operator => _blink.BlinkSVGFEMorphologyElement.instance.operator_Getter_(this);
|
|
|
| @DomName('SVGFEMorphologyElement.radiusX')
|
| @DocsEditable()
|
| - AnimatedNumber get radiusX => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.radiusX_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get radiusX => _blink.BlinkSVGFEMorphologyElement.instance.radiusX_Getter_(this);
|
|
|
| @DomName('SVGFEMorphologyElement.radiusY')
|
| @DocsEditable()
|
| - AnimatedNumber get radiusY => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.radiusY_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get radiusY => _blink.BlinkSVGFEMorphologyElement.instance.radiusY_Getter_(this);
|
|
|
| @DomName('SVGFEMorphologyElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEMorphologyElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEMorphologyElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEMorphologyElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEMorphologyElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEMorphologyElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEMorphologyElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEMorphologyElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEMorphologyElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEMorphologyElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEMorphologyElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2741,35 +2702,35 @@ class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
|
|
|
| @DomName('SVGFEOffsetElement.dx')
|
| @DocsEditable()
|
| - AnimatedNumber get dx => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.dx_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get dx => _blink.BlinkSVGFEOffsetElement.instance.dx_Getter_(this);
|
|
|
| @DomName('SVGFEOffsetElement.dy')
|
| @DocsEditable()
|
| - AnimatedNumber get dy => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.dy_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get dy => _blink.BlinkSVGFEOffsetElement.instance.dy_Getter_(this);
|
|
|
| @DomName('SVGFEOffsetElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFEOffsetElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFEOffsetElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEOffsetElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFEOffsetElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFEOffsetElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFEOffsetElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFEOffsetElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFEOffsetElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFEOffsetElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEOffsetElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEOffsetElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFEOffsetElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2817,15 +2778,15 @@ class FEPointLightElement extends SvgElement {
|
|
|
| @DomName('SVGFEPointLightElement.x')
|
| @DocsEditable()
|
| - AnimatedNumber get x => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get x => _blink.BlinkSVGFEPointLightElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFEPointLightElement.y')
|
| @DocsEditable()
|
| - AnimatedNumber get y => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get y => _blink.BlinkSVGFEPointLightElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGFEPointLightElement.z')
|
| @DocsEditable()
|
| - AnimatedNumber get z => wrap_jso(_blink.BlinkSVGFEPointLightElement.instance.z_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get z => _blink.BlinkSVGFEPointLightElement.instance.z_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2873,49 +2834,49 @@ class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
|
|
|
| @DomName('SVGFESpecularLightingElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFESpecularLightingElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.kernelUnitLengthX')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - AnimatedNumber get kernelUnitLengthX => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.kernelUnitLengthX_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFESpecularLightingElement.instance.kernelUnitLengthX_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.kernelUnitLengthY')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - AnimatedNumber get kernelUnitLengthY => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.kernelUnitLengthY_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFESpecularLightingElement.instance.kernelUnitLengthY_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.specularConstant')
|
| @DocsEditable()
|
| - AnimatedNumber get specularConstant => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.specularConstant_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get specularConstant => _blink.BlinkSVGFESpecularLightingElement.instance.specularConstant_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.specularExponent')
|
| @DocsEditable()
|
| - AnimatedNumber get specularExponent => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.specularExponent_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get specularExponent => _blink.BlinkSVGFESpecularLightingElement.instance.specularExponent_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.surfaceScale')
|
| @DocsEditable()
|
| - AnimatedNumber get surfaceScale => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.surfaceScale_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get surfaceScale => _blink.BlinkSVGFESpecularLightingElement.instance.surfaceScale_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFESpecularLightingElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFESpecularLightingElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFESpecularLightingElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFESpecularLightingElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFESpecularLightingElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFESpecularLightingElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFESpecularLightingElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2963,35 +2924,35 @@ class FESpotLightElement extends SvgElement {
|
|
|
| @DomName('SVGFESpotLightElement.limitingConeAngle')
|
| @DocsEditable()
|
| - AnimatedNumber get limitingConeAngle => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.limitingConeAngle_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get limitingConeAngle => _blink.BlinkSVGFESpotLightElement.instance.limitingConeAngle_Getter_(this);
|
|
|
| @DomName('SVGFESpotLightElement.pointsAtX')
|
| @DocsEditable()
|
| - AnimatedNumber get pointsAtX => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.pointsAtX_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get pointsAtX => _blink.BlinkSVGFESpotLightElement.instance.pointsAtX_Getter_(this);
|
|
|
| @DomName('SVGFESpotLightElement.pointsAtY')
|
| @DocsEditable()
|
| - AnimatedNumber get pointsAtY => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.pointsAtY_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get pointsAtY => _blink.BlinkSVGFESpotLightElement.instance.pointsAtY_Getter_(this);
|
|
|
| @DomName('SVGFESpotLightElement.pointsAtZ')
|
| @DocsEditable()
|
| - AnimatedNumber get pointsAtZ => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.pointsAtZ_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get pointsAtZ => _blink.BlinkSVGFESpotLightElement.instance.pointsAtZ_Getter_(this);
|
|
|
| @DomName('SVGFESpotLightElement.specularExponent')
|
| @DocsEditable()
|
| - AnimatedNumber get specularExponent => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.specularExponent_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get specularExponent => _blink.BlinkSVGFESpotLightElement.instance.specularExponent_Getter_(this);
|
|
|
| @DomName('SVGFESpotLightElement.x')
|
| @DocsEditable()
|
| - AnimatedNumber get x => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get x => _blink.BlinkSVGFESpotLightElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFESpotLightElement.y')
|
| @DocsEditable()
|
| - AnimatedNumber get y => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get y => _blink.BlinkSVGFESpotLightElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGFESpotLightElement.z')
|
| @DocsEditable()
|
| - AnimatedNumber get z => wrap_jso(_blink.BlinkSVGFESpotLightElement.instance.z_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get z => _blink.BlinkSVGFESpotLightElement.instance.z_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3039,27 +3000,27 @@ class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
|
|
|
| @DomName('SVGFETileElement.in1')
|
| @DocsEditable()
|
| - AnimatedString get in1 => wrap_jso(_blink.BlinkSVGFETileElement.instance.in1_Getter_(unwrap_jso(this)));
|
| + AnimatedString get in1 => _blink.BlinkSVGFETileElement.instance.in1_Getter_(this);
|
|
|
| @DomName('SVGFETileElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFETileElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFETileElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFETileElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFETileElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFETileElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFETileElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFETileElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFETileElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFETileElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFETileElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFETileElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFETileElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFETileElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFETileElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3131,47 +3092,47 @@ class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
|
|
|
| @DomName('SVGFETurbulenceElement.baseFrequencyX')
|
| @DocsEditable()
|
| - AnimatedNumber get baseFrequencyX => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.baseFrequencyX_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get baseFrequencyX => _blink.BlinkSVGFETurbulenceElement.instance.baseFrequencyX_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.baseFrequencyY')
|
| @DocsEditable()
|
| - AnimatedNumber get baseFrequencyY => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.baseFrequencyY_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get baseFrequencyY => _blink.BlinkSVGFETurbulenceElement.instance.baseFrequencyY_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.numOctaves')
|
| @DocsEditable()
|
| - AnimatedInteger get numOctaves => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.numOctaves_Getter_(unwrap_jso(this)));
|
| + AnimatedInteger get numOctaves => _blink.BlinkSVGFETurbulenceElement.instance.numOctaves_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.seed')
|
| @DocsEditable()
|
| - AnimatedNumber get seed => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.seed_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get seed => _blink.BlinkSVGFETurbulenceElement.instance.seed_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.stitchTiles')
|
| @DocsEditable()
|
| - AnimatedEnumeration get stitchTiles => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.stitchTiles_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get stitchTiles => _blink.BlinkSVGFETurbulenceElement.instance.stitchTiles_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.type')
|
| @DocsEditable()
|
| - AnimatedEnumeration get type => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.type_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get type => _blink.BlinkSVGFETurbulenceElement.instance.type_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFETurbulenceElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.result')
|
| @DocsEditable()
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.result_Getter_(unwrap_jso(this)));
|
| + AnimatedString get result => _blink.BlinkSVGFETurbulenceElement.instance.result_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFETurbulenceElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFETurbulenceElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFETurbulenceElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFETurbulenceElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFETurbulenceElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3219,31 +3180,31 @@ class FilterElement extends SvgElement implements UriReference {
|
|
|
| @DomName('SVGFilterElement.filterUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get filterUnits => wrap_jso(_blink.BlinkSVGFilterElement.instance.filterUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get filterUnits => _blink.BlinkSVGFilterElement.instance.filterUnits_Getter_(this);
|
|
|
| @DomName('SVGFilterElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFilterElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFilterElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGFilterElement.primitiveUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get primitiveUnits => wrap_jso(_blink.BlinkSVGFilterElement.instance.primitiveUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get primitiveUnits => _blink.BlinkSVGFilterElement.instance.primitiveUnits_Getter_(this);
|
|
|
| @DomName('SVGFilterElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFilterElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGFilterElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGFilterElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFilterElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGFilterElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGFilterElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFilterElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGFilterElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGFilterElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGFilterElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGFilterElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3348,19 +3309,19 @@ class ForeignObjectElement extends GraphicsElement {
|
|
|
| @DomName('SVGForeignObjectElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGForeignObjectElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGForeignObjectElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGForeignObjectElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGForeignObjectElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGForeignObjectElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGForeignObjectElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGForeignObjectElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGForeignObjectElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGForeignObjectElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGForeignObjectElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGForeignObjectElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3435,12 +3396,12 @@ class GeometryElement extends GraphicsElement {
|
| @DomName('SVGGeometryElement.isPointInFill')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.instance.isPointInFill_Callback_1_(unwrap_jso(this), unwrap_jso(point));
|
| + bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.instance.isPointInFill_Callback_1_(this, point);
|
|
|
| @DomName('SVGGeometryElement.isPointInStroke')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.instance.isPointInStroke_Callback_1_(unwrap_jso(this), unwrap_jso(point));
|
| + bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.instance.isPointInStroke_Callback_1_(this, point);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3478,57 +3439,57 @@ class GraphicsElement extends SvgElement implements Tests {
|
| @DomName('SVGGraphicsElement.farthestViewportElement')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - SvgElement get farthestViewportElement => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.farthestViewportElement_Getter_(unwrap_jso(this)));
|
| + SvgElement get farthestViewportElement => _blink.BlinkSVGGraphicsElement.instance.farthestViewportElement_Getter_(this);
|
|
|
| @DomName('SVGGraphicsElement.nearestViewportElement')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - SvgElement get nearestViewportElement => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.nearestViewportElement_Getter_(unwrap_jso(this)));
|
| + SvgElement get nearestViewportElement => _blink.BlinkSVGGraphicsElement.instance.nearestViewportElement_Getter_(this);
|
|
|
| @DomName('SVGGraphicsElement.transform')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - AnimatedTransformList get transform => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.transform_Getter_(unwrap_jso(this)));
|
| + AnimatedTransformList get transform => _blink.BlinkSVGGraphicsElement.instance.transform_Getter_(this);
|
|
|
| @DomName('SVGGraphicsElement.getBBox')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - Rect getBBox() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getBBox_Callback_0_(unwrap_jso(this)));
|
| + Rect getBBox() => _blink.BlinkSVGGraphicsElement.instance.getBBox_Callback_0_(this);
|
|
|
| @DomName('SVGGraphicsElement.getCTM')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - Matrix getCtm() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getCTM_Callback_0_(unwrap_jso(this)));
|
| + Matrix getCtm() => _blink.BlinkSVGGraphicsElement.instance.getCTM_Callback_0_(this);
|
|
|
| @DomName('SVGGraphicsElement.getScreenCTM')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - Matrix getScreenCtm() => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getScreenCTM_Callback_0_(unwrap_jso(this)));
|
| + Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.instance.getScreenCTM_Callback_0_(this);
|
|
|
| @DomName('SVGGraphicsElement.getTransformToElement')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - Matrix getTransformToElement(SvgElement element) => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.getTransformToElement_Callback_1_(unwrap_jso(this), unwrap_jso(element)));
|
| + Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsElement.instance.getTransformToElement_Callback_1_(this, element);
|
|
|
| @DomName('SVGGraphicsElement.requiredExtensions')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.requiredExtensions_Getter_(unwrap_jso(this)));
|
| + StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.instance.requiredExtensions_Getter_(this);
|
|
|
| @DomName('SVGGraphicsElement.requiredFeatures')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.requiredFeatures_Getter_(unwrap_jso(this)));
|
| + StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.instance.requiredFeatures_Getter_(this);
|
|
|
| @DomName('SVGGraphicsElement.systemLanguage')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - StringList get systemLanguage => wrap_jso(_blink.BlinkSVGGraphicsElement.instance.systemLanguage_Getter_(unwrap_jso(this)));
|
| + StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.instance.systemLanguage_Getter_(this);
|
|
|
| @DomName('SVGGraphicsElement.hasExtension')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.instance.hasExtension_Callback_1_(unwrap_jso(this), extension);
|
| + bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.instance.hasExtension_Callback_1_(this, extension);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3569,27 +3530,27 @@ class ImageElement extends GraphicsElement implements UriReference {
|
|
|
| @DomName('SVGImageElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGImageElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGImageElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGImageElement.preserveAspectRatio')
|
| @DocsEditable()
|
| - AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSVGImageElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this)));
|
| + AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGImageElement.instance.preserveAspectRatio_Getter_(this);
|
|
|
| @DomName('SVGImageElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGImageElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGImageElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGImageElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGImageElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGImageElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGImageElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGImageElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGImageElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGImageElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGImageElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGImageElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3618,9 +3579,6 @@ class Length extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| Length.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGLength.SVG_LENGTHTYPE_CM')
|
| @DocsEditable()
|
| static const int SVG_LENGTHTYPE_CM = 6;
|
| @@ -3667,39 +3625,39 @@ class Length extends DartHtmlDomObject {
|
|
|
| @DomName('SVGLength.unitType')
|
| @DocsEditable()
|
| - int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(unwrap_jso(this));
|
| + int get unitType => _blink.BlinkSVGLength.instance.unitType_Getter_(this);
|
|
|
| @DomName('SVGLength.value')
|
| @DocsEditable()
|
| - num get value => _blink.BlinkSVGLength.instance.value_Getter_(unwrap_jso(this));
|
| + num get value => _blink.BlinkSVGLength.instance.value_Getter_(this);
|
|
|
| @DomName('SVGLength.value')
|
| @DocsEditable()
|
| - set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(unwrap_jso(this), value);
|
| + set value(num value) => _blink.BlinkSVGLength.instance.value_Setter_(this, value);
|
|
|
| @DomName('SVGLength.valueAsString')
|
| @DocsEditable()
|
| - String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Getter_(unwrap_jso(this));
|
| + String get valueAsString => _blink.BlinkSVGLength.instance.valueAsString_Getter_(this);
|
|
|
| @DomName('SVGLength.valueAsString')
|
| @DocsEditable()
|
| - set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAsString_Setter_(unwrap_jso(this), value);
|
| + set valueAsString(String value) => _blink.BlinkSVGLength.instance.valueAsString_Setter_(this, value);
|
|
|
| @DomName('SVGLength.valueInSpecifiedUnits')
|
| @DocsEditable()
|
| - num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifiedUnits_Getter_(unwrap_jso(this));
|
| + num get valueInSpecifiedUnits => _blink.BlinkSVGLength.instance.valueInSpecifiedUnits_Getter_(this);
|
|
|
| @DomName('SVGLength.valueInSpecifiedUnits')
|
| @DocsEditable()
|
| - set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.valueInSpecifiedUnits_Setter_(unwrap_jso(this), value);
|
| + set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.instance.valueInSpecifiedUnits_Setter_(this, value);
|
|
|
| @DomName('SVGLength.convertToSpecifiedUnits')
|
| @DocsEditable()
|
| - void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.convertToSpecifiedUnits_Callback_1_(unwrap_jso(this), unitType);
|
| + void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.instance.convertToSpecifiedUnits_Callback_1_(this, unitType);
|
|
|
| @DomName('SVGLength.newValueSpecifiedUnits')
|
| @DocsEditable()
|
| - void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink.BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(unwrap_jso(this), unitType, valueInSpecifiedUnits);
|
| + void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink.BlinkSVGLength.instance.newValueSpecifiedUnits_Callback_2_(this, unitType, valueInSpecifiedUnits);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3728,17 +3686,14 @@ class LengthList extends DartHtmlDomObject with ListMixin<Length>, ImmutableList
|
| @Deprecated("Internal Use Only")
|
| LengthList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGLengthList.length')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso(this));
|
| + int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(this);
|
|
|
| @DomName('SVGLengthList.numberOfItems')
|
| @DocsEditable()
|
| - int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Getter_(unwrap_jso(this));
|
| + int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Getter_(this);
|
|
|
| Length operator[](int index) {
|
| if (index < 0 || index >= length)
|
| @@ -3787,35 +3742,35 @@ class LengthList extends DartHtmlDomObject with ListMixin<Length>, ImmutableList
|
| @DomName('SVGLengthList.__setter__')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - void __setter__(int index, Length newItem) => _blink.BlinkSVGLengthList.instance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem));
|
| + void __setter__(int index, Length newItem) => _blink.BlinkSVGLengthList.instance.$__setter___Callback_2_(this, index, newItem);
|
|
|
| @DomName('SVGLengthList.appendItem')
|
| @DocsEditable()
|
| - Length appendItem(Length newItem) => wrap_jso(_blink.BlinkSVGLengthList.instance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + Length appendItem(Length newItem) => _blink.BlinkSVGLengthList.instance.appendItem_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGLengthList.clear')
|
| @DocsEditable()
|
| - void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(unwrap_jso(this));
|
| + void clear() => _blink.BlinkSVGLengthList.instance.clear_Callback_0_(this);
|
|
|
| @DomName('SVGLengthList.getItem')
|
| @DocsEditable()
|
| - Length getItem(int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.getItem_Callback_1_(unwrap_jso(this), index));
|
| + Length getItem(int index) => _blink.BlinkSVGLengthList.instance.getItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGLengthList.initialize')
|
| @DocsEditable()
|
| - Length initialize(Length newItem) => wrap_jso(_blink.BlinkSVGLengthList.instance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + Length initialize(Length newItem) => _blink.BlinkSVGLengthList.instance.initialize_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGLengthList.insertItemBefore')
|
| @DocsEditable()
|
| - Length insertItemBefore(Length newItem, int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + Length insertItemBefore(Length newItem, int index) => _blink.BlinkSVGLengthList.instance.insertItemBefore_Callback_2_(this, newItem, index);
|
|
|
| @DomName('SVGLengthList.removeItem')
|
| @DocsEditable()
|
| - Length removeItem(int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.removeItem_Callback_1_(unwrap_jso(this), index));
|
| + Length removeItem(int index) => _blink.BlinkSVGLengthList.instance.removeItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGLengthList.replaceItem')
|
| @DocsEditable()
|
| - Length replaceItem(Length newItem, int index) => wrap_jso(_blink.BlinkSVGLengthList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + Length replaceItem(Length newItem, int index) => _blink.BlinkSVGLengthList.instance.replaceItem_Callback_2_(this, newItem, index);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3856,19 +3811,19 @@ class LineElement extends GeometryElement {
|
|
|
| @DomName('SVGLineElement.x1')
|
| @DocsEditable()
|
| - AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLineElement.instance.x1_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x1 => _blink.BlinkSVGLineElement.instance.x1_Getter_(this);
|
|
|
| @DomName('SVGLineElement.x2')
|
| @DocsEditable()
|
| - AnimatedLength get x2 => wrap_jso(_blink.BlinkSVGLineElement.instance.x2_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x2 => _blink.BlinkSVGLineElement.instance.x2_Getter_(this);
|
|
|
| @DomName('SVGLineElement.y1')
|
| @DocsEditable()
|
| - AnimatedLength get y1 => wrap_jso(_blink.BlinkSVGLineElement.instance.y1_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y1 => _blink.BlinkSVGLineElement.instance.y1_Getter_(this);
|
|
|
| @DomName('SVGLineElement.y2')
|
| @DocsEditable()
|
| - AnimatedLength get y2 => wrap_jso(_blink.BlinkSVGLineElement.instance.y2_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y2 => _blink.BlinkSVGLineElement.instance.y2_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3909,19 +3864,19 @@ class LinearGradientElement extends _GradientElement {
|
|
|
| @DomName('SVGLinearGradientElement.x1')
|
| @DocsEditable()
|
| - AnimatedLength get x1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instance.x1_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x1 => _blink.BlinkSVGLinearGradientElement.instance.x1_Getter_(this);
|
|
|
| @DomName('SVGLinearGradientElement.x2')
|
| @DocsEditable()
|
| - AnimatedLength get x2 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instance.x2_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x2 => _blink.BlinkSVGLinearGradientElement.instance.x2_Getter_(this);
|
|
|
| @DomName('SVGLinearGradientElement.y1')
|
| @DocsEditable()
|
| - AnimatedLength get y1 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instance.y1_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y1 => _blink.BlinkSVGLinearGradientElement.instance.y1_Getter_(this);
|
|
|
| @DomName('SVGLinearGradientElement.y2')
|
| @DocsEditable()
|
| - AnimatedLength get y2 => wrap_jso(_blink.BlinkSVGLinearGradientElement.instance.y2_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y2 => _blink.BlinkSVGLinearGradientElement.instance.y2_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -3986,47 +3941,47 @@ class MarkerElement extends SvgElement implements FitToViewBox {
|
|
|
| @DomName('SVGMarkerElement.markerHeight')
|
| @DocsEditable()
|
| - AnimatedLength get markerHeight => wrap_jso(_blink.BlinkSVGMarkerElement.instance.markerHeight_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get markerHeight => _blink.BlinkSVGMarkerElement.instance.markerHeight_Getter_(this);
|
|
|
| @DomName('SVGMarkerElement.markerUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get markerUnits => wrap_jso(_blink.BlinkSVGMarkerElement.instance.markerUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get markerUnits => _blink.BlinkSVGMarkerElement.instance.markerUnits_Getter_(this);
|
|
|
| @DomName('SVGMarkerElement.markerWidth')
|
| @DocsEditable()
|
| - AnimatedLength get markerWidth => wrap_jso(_blink.BlinkSVGMarkerElement.instance.markerWidth_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get markerWidth => _blink.BlinkSVGMarkerElement.instance.markerWidth_Getter_(this);
|
|
|
| @DomName('SVGMarkerElement.orientAngle')
|
| @DocsEditable()
|
| - AnimatedAngle get orientAngle => wrap_jso(_blink.BlinkSVGMarkerElement.instance.orientAngle_Getter_(unwrap_jso(this)));
|
| + AnimatedAngle get orientAngle => _blink.BlinkSVGMarkerElement.instance.orientAngle_Getter_(this);
|
|
|
| @DomName('SVGMarkerElement.orientType')
|
| @DocsEditable()
|
| - AnimatedEnumeration get orientType => wrap_jso(_blink.BlinkSVGMarkerElement.instance.orientType_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get orientType => _blink.BlinkSVGMarkerElement.instance.orientType_Getter_(this);
|
|
|
| @DomName('SVGMarkerElement.refX')
|
| @DocsEditable()
|
| - AnimatedLength get refX => wrap_jso(_blink.BlinkSVGMarkerElement.instance.refX_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get refX => _blink.BlinkSVGMarkerElement.instance.refX_Getter_(this);
|
|
|
| @DomName('SVGMarkerElement.refY')
|
| @DocsEditable()
|
| - AnimatedLength get refY => wrap_jso(_blink.BlinkSVGMarkerElement.instance.refY_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get refY => _blink.BlinkSVGMarkerElement.instance.refY_Getter_(this);
|
|
|
| @DomName('SVGMarkerElement.setOrientToAngle')
|
| @DocsEditable()
|
| - void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.instance.setOrientToAngle_Callback_1_(unwrap_jso(this), unwrap_jso(angle));
|
| + void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.instance.setOrientToAngle_Callback_1_(this, angle);
|
|
|
| @DomName('SVGMarkerElement.setOrientToAuto')
|
| @DocsEditable()
|
| - void setOrientToAuto() => _blink.BlinkSVGMarkerElement.instance.setOrientToAuto_Callback_0_(unwrap_jso(this));
|
| + void setOrientToAuto() => _blink.BlinkSVGMarkerElement.instance.setOrientToAuto_Callback_0_(this);
|
|
|
| @DomName('SVGMarkerElement.preserveAspectRatio')
|
| @DocsEditable()
|
| - AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSVGMarkerElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this)));
|
| + AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerElement.instance.preserveAspectRatio_Getter_(this);
|
|
|
| @DomName('SVGMarkerElement.viewBox')
|
| @DocsEditable()
|
| - AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGMarkerElement.instance.viewBox_Getter_(unwrap_jso(this)));
|
| + AnimatedRect get viewBox => _blink.BlinkSVGMarkerElement.instance.viewBox_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4067,43 +4022,43 @@ class MaskElement extends SvgElement implements Tests {
|
|
|
| @DomName('SVGMaskElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGMaskElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGMaskElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.maskContentUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get maskContentUnits => wrap_jso(_blink.BlinkSVGMaskElement.instance.maskContentUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get maskContentUnits => _blink.BlinkSVGMaskElement.instance.maskContentUnits_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.maskUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get maskUnits => wrap_jso(_blink.BlinkSVGMaskElement.instance.maskUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get maskUnits => _blink.BlinkSVGMaskElement.instance.maskUnits_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGMaskElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGMaskElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGMaskElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGMaskElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGMaskElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGMaskElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.requiredExtensions')
|
| @DocsEditable()
|
| - StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGMaskElement.instance.requiredExtensions_Getter_(unwrap_jso(this)));
|
| + StringList get requiredExtensions => _blink.BlinkSVGMaskElement.instance.requiredExtensions_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.requiredFeatures')
|
| @DocsEditable()
|
| - StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGMaskElement.instance.requiredFeatures_Getter_(unwrap_jso(this)));
|
| + StringList get requiredFeatures => _blink.BlinkSVGMaskElement.instance.requiredFeatures_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.systemLanguage')
|
| @DocsEditable()
|
| - StringList get systemLanguage => wrap_jso(_blink.BlinkSVGMaskElement.instance.systemLanguage_Getter_(unwrap_jso(this)));
|
| + StringList get systemLanguage => _blink.BlinkSVGMaskElement.instance.systemLanguage_Getter_(this);
|
|
|
| @DomName('SVGMaskElement.hasExtension')
|
| @DocsEditable()
|
| - bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.instance.hasExtension_Callback_1_(unwrap_jso(this), extension);
|
| + bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.instance.hasExtension_Callback_1_(this, extension);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4132,100 +4087,97 @@ class Matrix extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| Matrix.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGMatrix.a')
|
| @DocsEditable()
|
| - num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this));
|
| + num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(this);
|
|
|
| @DomName('SVGMatrix.a')
|
| @DocsEditable()
|
| - set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(this), value);
|
| + set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(this, value);
|
|
|
| @DomName('SVGMatrix.b')
|
| @DocsEditable()
|
| - num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(unwrap_jso(this));
|
| + num get b => _blink.BlinkSVGMatrix.instance.b_Getter_(this);
|
|
|
| @DomName('SVGMatrix.b')
|
| @DocsEditable()
|
| - set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(unwrap_jso(this), value);
|
| + set b(num value) => _blink.BlinkSVGMatrix.instance.b_Setter_(this, value);
|
|
|
| @DomName('SVGMatrix.c')
|
| @DocsEditable()
|
| - num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(unwrap_jso(this));
|
| + num get c => _blink.BlinkSVGMatrix.instance.c_Getter_(this);
|
|
|
| @DomName('SVGMatrix.c')
|
| @DocsEditable()
|
| - set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(unwrap_jso(this), value);
|
| + set c(num value) => _blink.BlinkSVGMatrix.instance.c_Setter_(this, value);
|
|
|
| @DomName('SVGMatrix.d')
|
| @DocsEditable()
|
| - num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(unwrap_jso(this));
|
| + num get d => _blink.BlinkSVGMatrix.instance.d_Getter_(this);
|
|
|
| @DomName('SVGMatrix.d')
|
| @DocsEditable()
|
| - set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(unwrap_jso(this), value);
|
| + set d(num value) => _blink.BlinkSVGMatrix.instance.d_Setter_(this, value);
|
|
|
| @DomName('SVGMatrix.e')
|
| @DocsEditable()
|
| - num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(unwrap_jso(this));
|
| + num get e => _blink.BlinkSVGMatrix.instance.e_Getter_(this);
|
|
|
| @DomName('SVGMatrix.e')
|
| @DocsEditable()
|
| - set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(unwrap_jso(this), value);
|
| + set e(num value) => _blink.BlinkSVGMatrix.instance.e_Setter_(this, value);
|
|
|
| @DomName('SVGMatrix.f')
|
| @DocsEditable()
|
| - num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(unwrap_jso(this));
|
| + num get f => _blink.BlinkSVGMatrix.instance.f_Getter_(this);
|
|
|
| @DomName('SVGMatrix.f')
|
| @DocsEditable()
|
| - set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(unwrap_jso(this), value);
|
| + set f(num value) => _blink.BlinkSVGMatrix.instance.f_Setter_(this, value);
|
|
|
| @DomName('SVGMatrix.flipX')
|
| @DocsEditable()
|
| - Matrix flipX() => wrap_jso(_blink.BlinkSVGMatrix.instance.flipX_Callback_0_(unwrap_jso(this)));
|
| + Matrix flipX() => _blink.BlinkSVGMatrix.instance.flipX_Callback_0_(this);
|
|
|
| @DomName('SVGMatrix.flipY')
|
| @DocsEditable()
|
| - Matrix flipY() => wrap_jso(_blink.BlinkSVGMatrix.instance.flipY_Callback_0_(unwrap_jso(this)));
|
| + Matrix flipY() => _blink.BlinkSVGMatrix.instance.flipY_Callback_0_(this);
|
|
|
| @DomName('SVGMatrix.inverse')
|
| @DocsEditable()
|
| - Matrix inverse() => wrap_jso(_blink.BlinkSVGMatrix.instance.inverse_Callback_0_(unwrap_jso(this)));
|
| + Matrix inverse() => _blink.BlinkSVGMatrix.instance.inverse_Callback_0_(this);
|
|
|
| @DomName('SVGMatrix.multiply')
|
| @DocsEditable()
|
| - Matrix multiply(Matrix secondMatrix) => wrap_jso(_blink.BlinkSVGMatrix.instance.multiply_Callback_1_(unwrap_jso(this), unwrap_jso(secondMatrix)));
|
| + Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.instance.multiply_Callback_1_(this, secondMatrix);
|
|
|
| @DomName('SVGMatrix.rotate')
|
| @DocsEditable()
|
| - Matrix rotate(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.rotate_Callback_1_(unwrap_jso(this), angle));
|
| + Matrix rotate(num angle) => _blink.BlinkSVGMatrix.instance.rotate_Callback_1_(this, angle);
|
|
|
| @DomName('SVGMatrix.rotateFromVector')
|
| @DocsEditable()
|
| - Matrix rotateFromVector(num x, num y) => wrap_jso(_blink.BlinkSVGMatrix.instance.rotateFromVector_Callback_2_(unwrap_jso(this), x, y));
|
| + Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.instance.rotateFromVector_Callback_2_(this, x, y);
|
|
|
| @DomName('SVGMatrix.scale')
|
| @DocsEditable()
|
| - Matrix scale(num scaleFactor) => wrap_jso(_blink.BlinkSVGMatrix.instance.scale_Callback_1_(unwrap_jso(this), scaleFactor));
|
| + Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.instance.scale_Callback_1_(this, scaleFactor);
|
|
|
| @DomName('SVGMatrix.scaleNonUniform')
|
| @DocsEditable()
|
| - Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => wrap_jso(_blink.BlinkSVGMatrix.instance.scaleNonUniform_Callback_2_(unwrap_jso(this), scaleFactorX, scaleFactorY));
|
| + Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGMatrix.instance.scaleNonUniform_Callback_2_(this, scaleFactorX, scaleFactorY);
|
|
|
| @DomName('SVGMatrix.skewX')
|
| @DocsEditable()
|
| - Matrix skewX(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.skewX_Callback_1_(unwrap_jso(this), angle));
|
| + Matrix skewX(num angle) => _blink.BlinkSVGMatrix.instance.skewX_Callback_1_(this, angle);
|
|
|
| @DomName('SVGMatrix.skewY')
|
| @DocsEditable()
|
| - Matrix skewY(num angle) => wrap_jso(_blink.BlinkSVGMatrix.instance.skewY_Callback_1_(unwrap_jso(this), angle));
|
| + Matrix skewY(num angle) => _blink.BlinkSVGMatrix.instance.skewY_Callback_1_(this, angle);
|
|
|
| @DomName('SVGMatrix.translate')
|
| @DocsEditable()
|
| - Matrix translate(num x, num y) => wrap_jso(_blink.BlinkSVGMatrix.instance.translate_Callback_2_(unwrap_jso(this), x, y));
|
| + Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.instance.translate_Callback_2_(this, x, y);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4287,16 +4239,13 @@ class Number extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| Number.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGNumber.value')
|
| @DocsEditable()
|
| - num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this));
|
| + num get value => _blink.BlinkSVGNumber.instance.value_Getter_(this);
|
|
|
| @DomName('SVGNumber.value')
|
| @DocsEditable()
|
| - set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwrap_jso(this), value);
|
| + set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4325,17 +4274,14 @@ class NumberList extends DartHtmlDomObject with ListMixin<Number>, ImmutableList
|
| @Deprecated("Internal Use Only")
|
| NumberList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGNumberList.length')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso(this));
|
| + int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(this);
|
|
|
| @DomName('SVGNumberList.numberOfItems')
|
| @DocsEditable()
|
| - int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Getter_(unwrap_jso(this));
|
| + int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Getter_(this);
|
|
|
| Number operator[](int index) {
|
| if (index < 0 || index >= length)
|
| @@ -4384,35 +4330,35 @@ class NumberList extends DartHtmlDomObject with ListMixin<Number>, ImmutableList
|
| @DomName('SVGNumberList.__setter__')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - void __setter__(int index, Number newItem) => _blink.BlinkSVGNumberList.instance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem));
|
| + void __setter__(int index, Number newItem) => _blink.BlinkSVGNumberList.instance.$__setter___Callback_2_(this, index, newItem);
|
|
|
| @DomName('SVGNumberList.appendItem')
|
| @DocsEditable()
|
| - Number appendItem(Number newItem) => wrap_jso(_blink.BlinkSVGNumberList.instance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + Number appendItem(Number newItem) => _blink.BlinkSVGNumberList.instance.appendItem_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGNumberList.clear')
|
| @DocsEditable()
|
| - void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(unwrap_jso(this));
|
| + void clear() => _blink.BlinkSVGNumberList.instance.clear_Callback_0_(this);
|
|
|
| @DomName('SVGNumberList.getItem')
|
| @DocsEditable()
|
| - Number getItem(int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.getItem_Callback_1_(unwrap_jso(this), index));
|
| + Number getItem(int index) => _blink.BlinkSVGNumberList.instance.getItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGNumberList.initialize')
|
| @DocsEditable()
|
| - Number initialize(Number newItem) => wrap_jso(_blink.BlinkSVGNumberList.instance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + Number initialize(Number newItem) => _blink.BlinkSVGNumberList.instance.initialize_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGNumberList.insertItemBefore')
|
| @DocsEditable()
|
| - Number insertItemBefore(Number newItem, int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + Number insertItemBefore(Number newItem, int index) => _blink.BlinkSVGNumberList.instance.insertItemBefore_Callback_2_(this, newItem, index);
|
|
|
| @DomName('SVGNumberList.removeItem')
|
| @DocsEditable()
|
| - Number removeItem(int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.removeItem_Callback_1_(unwrap_jso(this), index));
|
| + Number removeItem(int index) => _blink.BlinkSVGNumberList.instance.removeItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGNumberList.replaceItem')
|
| @DocsEditable()
|
| - Number replaceItem(Number newItem, int index) => wrap_jso(_blink.BlinkSVGNumberList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + Number replaceItem(Number newItem, int index) => _blink.BlinkSVGNumberList.instance.replaceItem_Callback_2_(this, newItem, index);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4453,111 +4399,111 @@ class PathElement extends GeometryElement {
|
|
|
| @DomName('SVGPathElement.animatedNormalizedPathSegList')
|
| @DocsEditable()
|
| - PathSegList get animatedNormalizedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.animatedNormalizedPathSegList_Getter_(unwrap_jso(this)));
|
| + PathSegList get animatedNormalizedPathSegList => _blink.BlinkSVGPathElement.instance.animatedNormalizedPathSegList_Getter_(this);
|
|
|
| @DomName('SVGPathElement.animatedPathSegList')
|
| @DocsEditable()
|
| - PathSegList get animatedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.animatedPathSegList_Getter_(unwrap_jso(this)));
|
| + PathSegList get animatedPathSegList => _blink.BlinkSVGPathElement.instance.animatedPathSegList_Getter_(this);
|
|
|
| @DomName('SVGPathElement.normalizedPathSegList')
|
| @DocsEditable()
|
| - PathSegList get normalizedPathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.normalizedPathSegList_Getter_(unwrap_jso(this)));
|
| + PathSegList get normalizedPathSegList => _blink.BlinkSVGPathElement.instance.normalizedPathSegList_Getter_(this);
|
|
|
| @DomName('SVGPathElement.pathLength')
|
| @DocsEditable()
|
| - AnimatedNumber get pathLength => wrap_jso(_blink.BlinkSVGPathElement.instance.pathLength_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.instance.pathLength_Getter_(this);
|
|
|
| @DomName('SVGPathElement.pathSegList')
|
| @DocsEditable()
|
| - PathSegList get pathSegList => wrap_jso(_blink.BlinkSVGPathElement.instance.pathSegList_Getter_(unwrap_jso(this)));
|
| + PathSegList get pathSegList => _blink.BlinkSVGPathElement.instance.pathSegList_Getter_(this);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegArcAbs')
|
| @DocsEditable()
|
| - PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegArcAbs_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, largeArcFlag, sweepFlag));
|
| + PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.createSVGPathSegArcAbs_Callback_7_(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegArcRel')
|
| @DocsEditable()
|
| - PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegArcRel_Callback_7_(unwrap_jso(this), x, y, r1, r2, angle, largeArcFlag, sweepFlag));
|
| + PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.instance.createSVGPathSegArcRel_Callback_7_(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegClosePath')
|
| @DocsEditable()
|
| - PathSegClosePath createSvgPathSegClosePath() => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegClosePath_Callback_0_(unwrap_jso(this)));
|
| + PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.instance.createSVGPathSegClosePath_Callback_0_(this);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs')
|
| @DocsEditable()
|
| - PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, num y1, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoCubicAbs_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2));
|
| + PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, num y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoCubicAbs_Callback_6_(this, x, y, x1, y1, x2, y2);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel')
|
| @DocsEditable()
|
| - PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, num y1, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoCubicRel_Callback_6_(unwrap_jso(this), x, y, x1, y1, x2, y2));
|
| + PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, num y1, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoCubicRel_Callback_6_(this, x, y, x1, y1, x2, y2);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs')
|
| @DocsEditable()
|
| - PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoCubicSmoothAbs_Callback_4_(unwrap_jso(this), x, y, x2, y2));
|
| + PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoCubicSmoothAbs_Callback_4_(this, x, y, x2, y2);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel')
|
| @DocsEditable()
|
| - PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoCubicSmoothRel_Callback_4_(unwrap_jso(this), x, y, x2, y2));
|
| + PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoCubicSmoothRel_Callback_4_(this, x, y, x2, y2);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs')
|
| @DocsEditable()
|
| - PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, num x1, num y1) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadraticAbs_Callback_4_(unwrap_jso(this), x, y, x1, y1));
|
| + PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, num x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadraticAbs_Callback_4_(this, x, y, x1, y1);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel')
|
| @DocsEditable()
|
| - PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, num x1, num y1) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadraticRel_Callback_4_(unwrap_jso(this), x, y, x1, y1));
|
| + PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, num x1, num y1) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadraticRel_Callback_4_(this, x, y, x1, y1);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs')
|
| @DocsEditable()
|
| - PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadraticSmoothAbs_Callback_2_(unwrap_jso(this), x, y));
|
| + PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadraticSmoothAbs_Callback_2_(this, x, y);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel')
|
| @DocsEditable()
|
| - PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadraticSmoothRel_Callback_2_(unwrap_jso(this), x, y));
|
| + PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegCurvetoQuadraticSmoothRel_Callback_2_(this, x, y);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoAbs')
|
| @DocsEditable()
|
| - PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoAbs_Callback_2_(unwrap_jso(this), x, y));
|
| + PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoAbs_Callback_2_(this, x, y);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs')
|
| @DocsEditable()
|
| - PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Callback_1_(unwrap_jso(this), x));
|
| + PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalAbs_Callback_1_(this, x);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel')
|
| @DocsEditable()
|
| - PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Callback_1_(unwrap_jso(this), x));
|
| + PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoHorizontalRel_Callback_1_(this, x);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoRel')
|
| @DocsEditable()
|
| - PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoRel_Callback_2_(unwrap_jso(this), x, y));
|
| + PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoRel_Callback_2_(this, x, y);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs')
|
| @DocsEditable()
|
| - PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1_(unwrap_jso(this), y));
|
| + PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalAbs_Callback_1_(this, y);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel')
|
| @DocsEditable()
|
| - PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1_(unwrap_jso(this), y));
|
| + PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegLinetoVerticalRel_Callback_1_(this, y);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegMovetoAbs')
|
| @DocsEditable()
|
| - PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegMovetoAbs_Callback_2_(unwrap_jso(this), x, y));
|
| + PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegMovetoAbs_Callback_2_(this, x, y);
|
|
|
| @DomName('SVGPathElement.createSVGPathSegMovetoRel')
|
| @DocsEditable()
|
| - PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => wrap_jso(_blink.BlinkSVGPathElement.instance.createSVGPathSegMovetoRel_Callback_2_(unwrap_jso(this), x, y));
|
| + PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPathElement.instance.createSVGPathSegMovetoRel_Callback_2_(this, x, y);
|
|
|
| @DomName('SVGPathElement.getPathSegAtLength')
|
| @DocsEditable()
|
| - int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.getPathSegAtLength_Callback_1_(unwrap_jso(this), distance);
|
| + int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.instance.getPathSegAtLength_Callback_1_(this, distance);
|
|
|
| @DomName('SVGPathElement.getPointAtLength')
|
| @DocsEditable()
|
| - Point getPointAtLength(num distance) => wrap_jso(_blink.BlinkSVGPathElement.instance.getPointAtLength_Callback_1_(unwrap_jso(this), distance));
|
| + Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.instance.getPointAtLength_Callback_1_(this, distance);
|
|
|
| @DomName('SVGPathElement.getTotalLength')
|
| @DocsEditable()
|
| - num getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_Callback_0_(unwrap_jso(this));
|
| + num getTotalLength() => _blink.BlinkSVGPathElement.instance.getTotalLength_Callback_0_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4586,9 +4532,6 @@ class PathSeg extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| PathSeg.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGPathSeg.PATHSEG_ARC_ABS')
|
| @DocsEditable()
|
| static const int PATHSEG_ARC_ABS = 10;
|
| @@ -4671,11 +4614,11 @@ class PathSeg extends DartHtmlDomObject {
|
|
|
| @DomName('SVGPathSeg.pathSegType')
|
| @DocsEditable()
|
| - int get pathSegType => _blink.BlinkSVGPathSeg.instance.pathSegType_Getter_(unwrap_jso(this));
|
| + int get pathSegType => _blink.BlinkSVGPathSeg.instance.pathSegType_Getter_(this);
|
|
|
| @DomName('SVGPathSeg.pathSegTypeAsLetter')
|
| @DocsEditable()
|
| - String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.instance.pathSegTypeAsLetter_Getter_(unwrap_jso(this));
|
| + String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.instance.pathSegTypeAsLetter_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4706,59 +4649,59 @@ class PathSegArcAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegArcAbs.angle')
|
| @DocsEditable()
|
| - num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(unwrap_jso(this));
|
| + num get angle => _blink.BlinkSVGPathSegArcAbs.instance.angle_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcAbs.angle')
|
| @DocsEditable()
|
| - set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Setter_(unwrap_jso(this), value);
|
| + set angle(num value) => _blink.BlinkSVGPathSegArcAbs.instance.angle_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcAbs.largeArcFlag')
|
| @DocsEditable()
|
| - bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Getter_(unwrap_jso(this));
|
| + bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcAbs.largeArcFlag')
|
| @DocsEditable()
|
| - set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Setter_(unwrap_jso(this), value);
|
| + set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.largeArcFlag_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcAbs.r1')
|
| @DocsEditable()
|
| - num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(unwrap_jso(this));
|
| + num get r1 => _blink.BlinkSVGPathSegArcAbs.instance.r1_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcAbs.r1')
|
| @DocsEditable()
|
| - set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(unwrap_jso(this), value);
|
| + set r1(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r1_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcAbs.r2')
|
| @DocsEditable()
|
| - num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(unwrap_jso(this));
|
| + num get r2 => _blink.BlinkSVGPathSegArcAbs.instance.r2_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcAbs.r2')
|
| @DocsEditable()
|
| - set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(unwrap_jso(this), value);
|
| + set r2(num value) => _blink.BlinkSVGPathSegArcAbs.instance.r2_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcAbs.sweepFlag')
|
| @DocsEditable()
|
| - bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_(unwrap_jso(this));
|
| + bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcAbs.sweepFlag')
|
| @DocsEditable()
|
| - set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Setter_(unwrap_jso(this), value);
|
| + set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.instance.sweepFlag_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcAbs.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegArcAbs.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcAbs.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegArcAbs.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcAbs.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegArcAbs.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcAbs.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegArcAbs.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4789,59 +4732,59 @@ class PathSegArcRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegArcRel.angle')
|
| @DocsEditable()
|
| - num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(unwrap_jso(this));
|
| + num get angle => _blink.BlinkSVGPathSegArcRel.instance.angle_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcRel.angle')
|
| @DocsEditable()
|
| - set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Setter_(unwrap_jso(this), value);
|
| + set angle(num value) => _blink.BlinkSVGPathSegArcRel.instance.angle_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcRel.largeArcFlag')
|
| @DocsEditable()
|
| - bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Getter_(unwrap_jso(this));
|
| + bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcRel.largeArcFlag')
|
| @DocsEditable()
|
| - set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Setter_(unwrap_jso(this), value);
|
| + set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.largeArcFlag_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcRel.r1')
|
| @DocsEditable()
|
| - num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(unwrap_jso(this));
|
| + num get r1 => _blink.BlinkSVGPathSegArcRel.instance.r1_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcRel.r1')
|
| @DocsEditable()
|
| - set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(unwrap_jso(this), value);
|
| + set r1(num value) => _blink.BlinkSVGPathSegArcRel.instance.r1_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcRel.r2')
|
| @DocsEditable()
|
| - num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(unwrap_jso(this));
|
| + num get r2 => _blink.BlinkSVGPathSegArcRel.instance.r2_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcRel.r2')
|
| @DocsEditable()
|
| - set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(unwrap_jso(this), value);
|
| + set r2(num value) => _blink.BlinkSVGPathSegArcRel.instance.r2_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcRel.sweepFlag')
|
| @DocsEditable()
|
| - bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_(unwrap_jso(this));
|
| + bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcRel.sweepFlag')
|
| @DocsEditable()
|
| - set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Setter_(unwrap_jso(this), value);
|
| + set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.instance.sweepFlag_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcRel.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegArcRel.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcRel.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegArcRel.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegArcRel.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegArcRel.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegArcRel.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegArcRel.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4899,51 +4842,51 @@ class PathSegCurvetoCubicAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x1')
|
| @DocsEditable()
|
| - num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(unwrap_jso(this));
|
| + num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x1')
|
| @DocsEditable()
|
| - set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Setter_(unwrap_jso(this), value);
|
| + set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x1_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x2')
|
| @DocsEditable()
|
| - num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(unwrap_jso(this));
|
| + num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.x2')
|
| @DocsEditable()
|
| - set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Setter_(unwrap_jso(this), value);
|
| + set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.x2_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y1')
|
| @DocsEditable()
|
| - num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(unwrap_jso(this));
|
| + num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y1')
|
| @DocsEditable()
|
| - set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Setter_(unwrap_jso(this), value);
|
| + set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y1_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y2')
|
| @DocsEditable()
|
| - num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(unwrap_jso(this));
|
| + num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicAbs.y2')
|
| @DocsEditable()
|
| - set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Setter_(unwrap_jso(this), value);
|
| + set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.instance.y2_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -4974,51 +4917,51 @@ class PathSegCurvetoCubicRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x1')
|
| @DocsEditable()
|
| - num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(unwrap_jso(this));
|
| + num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x1')
|
| @DocsEditable()
|
| - set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Setter_(unwrap_jso(this), value);
|
| + set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x1_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x2')
|
| @DocsEditable()
|
| - num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(unwrap_jso(this));
|
| + num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.x2')
|
| @DocsEditable()
|
| - set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Setter_(unwrap_jso(this), value);
|
| + set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.x2_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y1')
|
| @DocsEditable()
|
| - num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(unwrap_jso(this));
|
| + num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y1')
|
| @DocsEditable()
|
| - set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Setter_(unwrap_jso(this), value);
|
| + set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y1_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y2')
|
| @DocsEditable()
|
| - num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(unwrap_jso(this));
|
| + num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicRel.y2')
|
| @DocsEditable()
|
| - set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Setter_(unwrap_jso(this), value);
|
| + set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.instance.y2_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5049,35 +4992,35 @@ class PathSegCurvetoCubicSmoothAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
|
| @DocsEditable()
|
| - num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_(unwrap_jso(this));
|
| + num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
|
| @DocsEditable()
|
| - set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Setter_(unwrap_jso(this), value);
|
| + set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.x2_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
|
| @DocsEditable()
|
| - num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_(unwrap_jso(this));
|
| + num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
|
| @DocsEditable()
|
| - set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Setter_(unwrap_jso(this), value);
|
| + set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.instance.y2_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5108,35 +5051,35 @@ class PathSegCurvetoCubicSmoothRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
|
| @DocsEditable()
|
| - num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_(unwrap_jso(this));
|
| + num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
|
| @DocsEditable()
|
| - set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Setter_(unwrap_jso(this), value);
|
| + set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.x2_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
|
| @DocsEditable()
|
| - num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_(unwrap_jso(this));
|
| + num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
|
| @DocsEditable()
|
| - set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Setter_(unwrap_jso(this), value);
|
| + set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.instance.y2_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5167,35 +5110,35 @@ class PathSegCurvetoQuadraticAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
|
| @DocsEditable()
|
| - num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(unwrap_jso(this));
|
| + num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.x1')
|
| @DocsEditable()
|
| - set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Setter_(unwrap_jso(this), value);
|
| + set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.x1_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
|
| @DocsEditable()
|
| - num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(unwrap_jso(this));
|
| + num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticAbs.y1')
|
| @DocsEditable()
|
| - set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Setter_(unwrap_jso(this), value);
|
| + set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.instance.y1_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5226,35 +5169,35 @@ class PathSegCurvetoQuadraticRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.x1')
|
| @DocsEditable()
|
| - num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(unwrap_jso(this));
|
| + num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.x1')
|
| @DocsEditable()
|
| - set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Setter_(unwrap_jso(this), value);
|
| + set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.x1_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.y1')
|
| @DocsEditable()
|
| - num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(unwrap_jso(this));
|
| + num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticRel.y1')
|
| @DocsEditable()
|
| - set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Setter_(unwrap_jso(this), value);
|
| + set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.instance.y1_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5285,19 +5228,19 @@ class PathSegCurvetoQuadraticSmoothAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5328,19 +5271,19 @@ class PathSegCurvetoQuadraticSmoothRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5371,19 +5314,19 @@ class PathSegLinetoAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoAbs.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegLinetoAbs.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegLinetoAbs.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegLinetoAbs.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5414,11 +5357,11 @@ class PathSegLinetoHorizontalAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoHorizontalAbs.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegLinetoHorizontalAbs.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.instance.x_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5449,11 +5392,11 @@ class PathSegLinetoHorizontalRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoHorizontalRel.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegLinetoHorizontalRel.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.instance.x_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5484,19 +5427,19 @@ class PathSegLinetoRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoRel.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegLinetoRel.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegLinetoRel.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegLinetoRel.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegLinetoRel.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegLinetoRel.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegLinetoRel.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5527,11 +5470,11 @@ class PathSegLinetoVerticalAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoVerticalAbs.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegLinetoVerticalAbs.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5562,11 +5505,11 @@ class PathSegLinetoVerticalRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegLinetoVerticalRel.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegLinetoVerticalRel.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5595,17 +5538,14 @@ class PathSegList extends DartHtmlDomObject with ListMixin<PathSeg>, ImmutableLi
|
| @Deprecated("Internal Use Only")
|
| PathSegList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGPathSegList.length')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_jso(this));
|
| + int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(this);
|
|
|
| @DomName('SVGPathSegList.numberOfItems')
|
| @DocsEditable()
|
| - int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Getter_(unwrap_jso(this));
|
| + int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Getter_(this);
|
|
|
| PathSeg operator[](int index) {
|
| if (index < 0 || index >= length)
|
| @@ -5654,35 +5594,35 @@ class PathSegList extends DartHtmlDomObject with ListMixin<PathSeg>, ImmutableLi
|
| @DomName('SVGPathSegList.__setter__')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - void __setter__(int index, PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem));
|
| + void __setter__(int index, PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.$__setter___Callback_2_(this, index, newItem);
|
|
|
| @DomName('SVGPathSegList.appendItem')
|
| @DocsEditable()
|
| - PathSeg appendItem(PathSeg newItem) => wrap_jso(_blink.BlinkSVGPathSegList.instance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.appendItem_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGPathSegList.clear')
|
| @DocsEditable()
|
| - void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(unwrap_jso(this));
|
| + void clear() => _blink.BlinkSVGPathSegList.instance.clear_Callback_0_(this);
|
|
|
| @DomName('SVGPathSegList.getItem')
|
| @DocsEditable()
|
| - PathSeg getItem(int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.getItem_Callback_1_(unwrap_jso(this), index));
|
| + PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.instance.getItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGPathSegList.initialize')
|
| @DocsEditable()
|
| - PathSeg initialize(PathSeg newItem) => wrap_jso(_blink.BlinkSVGPathSegList.instance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.instance.initialize_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGPathSegList.insertItemBefore')
|
| @DocsEditable()
|
| - PathSeg insertItemBefore(PathSeg newItem, int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.instance.insertItemBefore_Callback_2_(this, newItem, index);
|
|
|
| @DomName('SVGPathSegList.removeItem')
|
| @DocsEditable()
|
| - PathSeg removeItem(int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.removeItem_Callback_1_(unwrap_jso(this), index));
|
| + PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.instance.removeItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGPathSegList.replaceItem')
|
| @DocsEditable()
|
| - PathSeg replaceItem(PathSeg newItem, int index) => wrap_jso(_blink.BlinkSVGPathSegList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.instance.replaceItem_Callback_2_(this, newItem, index);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5713,19 +5653,19 @@ class PathSegMovetoAbs extends PathSeg {
|
|
|
| @DomName('SVGPathSegMovetoAbs.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegMovetoAbs.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegMovetoAbs.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegMovetoAbs.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5756,19 +5696,19 @@ class PathSegMovetoRel extends PathSeg {
|
|
|
| @DomName('SVGPathSegMovetoRel.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPathSegMovetoRel.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPathSegMovetoRel.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPathSegMovetoRel.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPathSegMovetoRel.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPathSegMovetoRel.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPathSegMovetoRel.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5809,59 +5749,59 @@ class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
|
|
|
| @DomName('SVGPatternElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGPatternElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGPatternElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.patternContentUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get patternContentUnits => wrap_jso(_blink.BlinkSVGPatternElement.instance.patternContentUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get patternContentUnits => _blink.BlinkSVGPatternElement.instance.patternContentUnits_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.patternTransform')
|
| @DocsEditable()
|
| - AnimatedTransformList get patternTransform => wrap_jso(_blink.BlinkSVGPatternElement.instance.patternTransform_Getter_(unwrap_jso(this)));
|
| + AnimatedTransformList get patternTransform => _blink.BlinkSVGPatternElement.instance.patternTransform_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.patternUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get patternUnits => wrap_jso(_blink.BlinkSVGPatternElement.instance.patternUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get patternUnits => _blink.BlinkSVGPatternElement.instance.patternUnits_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGPatternElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGPatternElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGPatternElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGPatternElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGPatternElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGPatternElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.preserveAspectRatio')
|
| @DocsEditable()
|
| - AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSVGPatternElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this)));
|
| + AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGPatternElement.instance.preserveAspectRatio_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.viewBox')
|
| @DocsEditable()
|
| - AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGPatternElement.instance.viewBox_Getter_(unwrap_jso(this)));
|
| + AnimatedRect get viewBox => _blink.BlinkSVGPatternElement.instance.viewBox_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.requiredExtensions')
|
| @DocsEditable()
|
| - StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGPatternElement.instance.requiredExtensions_Getter_(unwrap_jso(this)));
|
| + StringList get requiredExtensions => _blink.BlinkSVGPatternElement.instance.requiredExtensions_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.requiredFeatures')
|
| @DocsEditable()
|
| - StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGPatternElement.instance.requiredFeatures_Getter_(unwrap_jso(this)));
|
| + StringList get requiredFeatures => _blink.BlinkSVGPatternElement.instance.requiredFeatures_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.systemLanguage')
|
| @DocsEditable()
|
| - StringList get systemLanguage => wrap_jso(_blink.BlinkSVGPatternElement.instance.systemLanguage_Getter_(unwrap_jso(this)));
|
| + StringList get systemLanguage => _blink.BlinkSVGPatternElement.instance.systemLanguage_Getter_(this);
|
|
|
| @DomName('SVGPatternElement.hasExtension')
|
| @DocsEditable()
|
| - bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.instance.hasExtension_Callback_1_(unwrap_jso(this), extension);
|
| + bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.instance.hasExtension_Callback_1_(this, extension);
|
|
|
| @DomName('SVGPatternElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGPatternElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGPatternElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5890,28 +5830,25 @@ class Point extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| Point.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGPoint.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGPoint.instance.x_Getter_(this);
|
|
|
| @DomName('SVGPoint.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGPoint.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGPoint.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGPoint.instance.y_Getter_(this);
|
|
|
| @DomName('SVGPoint.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGPoint.instance.y_Setter_(this, value);
|
|
|
| @DomName('SVGPoint.matrixTransform')
|
| @DocsEditable()
|
| - Point matrixTransform(Matrix matrix) => wrap_jso(_blink.BlinkSVGPoint.instance.matrixTransform_Callback_1_(unwrap_jso(this), unwrap_jso(matrix)));
|
| + Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.instance.matrixTransform_Callback_1_(this, matrix);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -5940,50 +5877,47 @@ class PointList extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| PointList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGPointList.length')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso(this));
|
| + int get length => _blink.BlinkSVGPointList.instance.length_Getter_(this);
|
|
|
| @DomName('SVGPointList.numberOfItems')
|
| @DocsEditable()
|
| - int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Getter_(unwrap_jso(this));
|
| + int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Getter_(this);
|
|
|
| @DomName('SVGPointList.__setter__')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - void __setter__(int index, Point newItem) => _blink.BlinkSVGPointList.instance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem));
|
| + void __setter__(int index, Point newItem) => _blink.BlinkSVGPointList.instance.$__setter___Callback_2_(this, index, newItem);
|
|
|
| @DomName('SVGPointList.appendItem')
|
| @DocsEditable()
|
| - Point appendItem(Point newItem) => wrap_jso(_blink.BlinkSVGPointList.instance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + Point appendItem(Point newItem) => _blink.BlinkSVGPointList.instance.appendItem_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGPointList.clear')
|
| @DocsEditable()
|
| - void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(unwrap_jso(this));
|
| + void clear() => _blink.BlinkSVGPointList.instance.clear_Callback_0_(this);
|
|
|
| @DomName('SVGPointList.getItem')
|
| @DocsEditable()
|
| - Point getItem(int index) => wrap_jso(_blink.BlinkSVGPointList.instance.getItem_Callback_1_(unwrap_jso(this), index));
|
| + Point getItem(int index) => _blink.BlinkSVGPointList.instance.getItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGPointList.initialize')
|
| @DocsEditable()
|
| - Point initialize(Point newItem) => wrap_jso(_blink.BlinkSVGPointList.instance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + Point initialize(Point newItem) => _blink.BlinkSVGPointList.instance.initialize_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGPointList.insertItemBefore')
|
| @DocsEditable()
|
| - Point insertItemBefore(Point newItem, int index) => wrap_jso(_blink.BlinkSVGPointList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + Point insertItemBefore(Point newItem, int index) => _blink.BlinkSVGPointList.instance.insertItemBefore_Callback_2_(this, newItem, index);
|
|
|
| @DomName('SVGPointList.removeItem')
|
| @DocsEditable()
|
| - Point removeItem(int index) => wrap_jso(_blink.BlinkSVGPointList.instance.removeItem_Callback_1_(unwrap_jso(this), index));
|
| + Point removeItem(int index) => _blink.BlinkSVGPointList.instance.removeItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGPointList.replaceItem')
|
| @DocsEditable()
|
| - Point replaceItem(Point newItem, int index) => wrap_jso(_blink.BlinkSVGPointList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + Point replaceItem(Point newItem, int index) => _blink.BlinkSVGPointList.instance.replaceItem_Callback_2_(this, newItem, index);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6024,11 +5958,11 @@ class PolygonElement extends GeometryElement {
|
|
|
| @DomName('SVGPolygonElement.animatedPoints')
|
| @DocsEditable()
|
| - PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolygonElement.instance.animatedPoints_Getter_(unwrap_jso(this)));
|
| + PointList get animatedPoints => _blink.BlinkSVGPolygonElement.instance.animatedPoints_Getter_(this);
|
|
|
| @DomName('SVGPolygonElement.points')
|
| @DocsEditable()
|
| - PointList get points => wrap_jso(_blink.BlinkSVGPolygonElement.instance.points_Getter_(unwrap_jso(this)));
|
| + PointList get points => _blink.BlinkSVGPolygonElement.instance.points_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6069,11 +6003,11 @@ class PolylineElement extends GeometryElement {
|
|
|
| @DomName('SVGPolylineElement.animatedPoints')
|
| @DocsEditable()
|
| - PointList get animatedPoints => wrap_jso(_blink.BlinkSVGPolylineElement.instance.animatedPoints_Getter_(unwrap_jso(this)));
|
| + PointList get animatedPoints => _blink.BlinkSVGPolylineElement.instance.animatedPoints_Getter_(this);
|
|
|
| @DomName('SVGPolylineElement.points')
|
| @DocsEditable()
|
| - PointList get points => wrap_jso(_blink.BlinkSVGPolylineElement.instance.points_Getter_(unwrap_jso(this)));
|
| + PointList get points => _blink.BlinkSVGPolylineElement.instance.points_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6102,9 +6036,6 @@ class PreserveAspectRatio extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| PreserveAspectRatio.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET')
|
| @DocsEditable()
|
| static const int SVG_MEETORSLICE_MEET = 1;
|
| @@ -6163,19 +6094,19 @@ class PreserveAspectRatio extends DartHtmlDomObject {
|
|
|
| @DomName('SVGPreserveAspectRatio.align')
|
| @DocsEditable()
|
| - int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(unwrap_jso(this));
|
| + int get align => _blink.BlinkSVGPreserveAspectRatio.instance.align_Getter_(this);
|
|
|
| @DomName('SVGPreserveAspectRatio.align')
|
| @DocsEditable()
|
| - set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align_Setter_(unwrap_jso(this), value);
|
| + set align(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.align_Setter_(this, value);
|
|
|
| @DomName('SVGPreserveAspectRatio.meetOrSlice')
|
| @DocsEditable()
|
| - int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice_Getter_(unwrap_jso(this));
|
| + int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice_Getter_(this);
|
|
|
| @DomName('SVGPreserveAspectRatio.meetOrSlice')
|
| @DocsEditable()
|
| - set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice_Setter_(unwrap_jso(this), value);
|
| + set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.instance.meetOrSlice_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6216,27 +6147,27 @@ class RadialGradientElement extends _GradientElement {
|
|
|
| @DomName('SVGRadialGradientElement.cx')
|
| @DocsEditable()
|
| - AnimatedLength get cx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instance.cx_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get cx => _blink.BlinkSVGRadialGradientElement.instance.cx_Getter_(this);
|
|
|
| @DomName('SVGRadialGradientElement.cy')
|
| @DocsEditable()
|
| - AnimatedLength get cy => wrap_jso(_blink.BlinkSVGRadialGradientElement.instance.cy_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get cy => _blink.BlinkSVGRadialGradientElement.instance.cy_Getter_(this);
|
|
|
| @DomName('SVGRadialGradientElement.fr')
|
| @DocsEditable()
|
| - AnimatedLength get fr => wrap_jso(_blink.BlinkSVGRadialGradientElement.instance.fr_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get fr => _blink.BlinkSVGRadialGradientElement.instance.fr_Getter_(this);
|
|
|
| @DomName('SVGRadialGradientElement.fx')
|
| @DocsEditable()
|
| - AnimatedLength get fx => wrap_jso(_blink.BlinkSVGRadialGradientElement.instance.fx_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get fx => _blink.BlinkSVGRadialGradientElement.instance.fx_Getter_(this);
|
|
|
| @DomName('SVGRadialGradientElement.fy')
|
| @DocsEditable()
|
| - AnimatedLength get fy => wrap_jso(_blink.BlinkSVGRadialGradientElement.instance.fy_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get fy => _blink.BlinkSVGRadialGradientElement.instance.fy_Getter_(this);
|
|
|
| @DomName('SVGRadialGradientElement.r')
|
| @DocsEditable()
|
| - AnimatedLength get r => wrap_jso(_blink.BlinkSVGRadialGradientElement.instance.r_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get r => _blink.BlinkSVGRadialGradientElement.instance.r_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6265,40 +6196,37 @@ class Rect extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| Rect.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGRect.height')
|
| @DocsEditable()
|
| - num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this));
|
| + num get height => _blink.BlinkSVGRect.instance.height_Getter_(this);
|
|
|
| @DomName('SVGRect.height')
|
| @DocsEditable()
|
| - set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwrap_jso(this), value);
|
| + set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(this, value);
|
|
|
| @DomName('SVGRect.width')
|
| @DocsEditable()
|
| - num get width => _blink.BlinkSVGRect.instance.width_Getter_(unwrap_jso(this));
|
| + num get width => _blink.BlinkSVGRect.instance.width_Getter_(this);
|
|
|
| @DomName('SVGRect.width')
|
| @DocsEditable()
|
| - set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(unwrap_jso(this), value);
|
| + set width(num value) => _blink.BlinkSVGRect.instance.width_Setter_(this, value);
|
|
|
| @DomName('SVGRect.x')
|
| @DocsEditable()
|
| - num get x => _blink.BlinkSVGRect.instance.x_Getter_(unwrap_jso(this));
|
| + num get x => _blink.BlinkSVGRect.instance.x_Getter_(this);
|
|
|
| @DomName('SVGRect.x')
|
| @DocsEditable()
|
| - set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(unwrap_jso(this), value);
|
| + set x(num value) => _blink.BlinkSVGRect.instance.x_Setter_(this, value);
|
|
|
| @DomName('SVGRect.y')
|
| @DocsEditable()
|
| - num get y => _blink.BlinkSVGRect.instance.y_Getter_(unwrap_jso(this));
|
| + num get y => _blink.BlinkSVGRect.instance.y_Getter_(this);
|
|
|
| @DomName('SVGRect.y')
|
| @DocsEditable()
|
| - set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(unwrap_jso(this), value);
|
| + set y(num value) => _blink.BlinkSVGRect.instance.y_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6339,27 +6267,27 @@ class RectElement extends GeometryElement {
|
|
|
| @DomName('SVGRectElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGRectElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGRectElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGRectElement.rx')
|
| @DocsEditable()
|
| - AnimatedLength get rx => wrap_jso(_blink.BlinkSVGRectElement.instance.rx_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get rx => _blink.BlinkSVGRectElement.instance.rx_Getter_(this);
|
|
|
| @DomName('SVGRectElement.ry')
|
| @DocsEditable()
|
| - AnimatedLength get ry => wrap_jso(_blink.BlinkSVGRectElement.instance.ry_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get ry => _blink.BlinkSVGRectElement.instance.ry_Getter_(this);
|
|
|
| @DomName('SVGRectElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGRectElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGRectElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGRectElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGRectElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGRectElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGRectElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGRectElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGRectElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6400,15 +6328,15 @@ class ScriptElement extends SvgElement implements UriReference {
|
|
|
| @DomName('SVGScriptElement.type')
|
| @DocsEditable()
|
| - String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(unwrap_jso(this));
|
| + String get type => _blink.BlinkSVGScriptElement.instance.type_Getter_(this);
|
|
|
| @DomName('SVGScriptElement.type')
|
| @DocsEditable()
|
| - set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Setter_(unwrap_jso(this), value);
|
| + set type(String value) => _blink.BlinkSVGScriptElement.instance.type_Setter_(this, value);
|
|
|
| @DomName('SVGScriptElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGScriptElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGScriptElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6492,7 +6420,7 @@ class StopElement extends SvgElement {
|
|
|
| @DomName('SVGStopElement.offset')
|
| @DocsEditable()
|
| - AnimatedNumber get gradientOffset => wrap_jso(_blink.BlinkSVGStopElement.instance.offset_Getter_(unwrap_jso(this)));
|
| + AnimatedNumber get gradientOffset => _blink.BlinkSVGStopElement.instance.offset_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6521,17 +6449,14 @@ class StringList extends DartHtmlDomObject with ListMixin<String>, ImmutableList
|
| @Deprecated("Internal Use Only")
|
| StringList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGStringList.length')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso(this));
|
| + int get length => _blink.BlinkSVGStringList.instance.length_Getter_(this);
|
|
|
| @DomName('SVGStringList.numberOfItems')
|
| @DocsEditable()
|
| - int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Getter_(unwrap_jso(this));
|
| + int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Getter_(this);
|
|
|
| String operator[](int index) {
|
| if (index < 0 || index >= length)
|
| @@ -6580,35 +6505,35 @@ class StringList extends DartHtmlDomObject with ListMixin<String>, ImmutableList
|
| @DomName('SVGStringList.__setter__')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - void __setter__(int index, String newItem) => _blink.BlinkSVGStringList.instance.$__setter___Callback_2_(unwrap_jso(this), index, newItem);
|
| + void __setter__(int index, String newItem) => _blink.BlinkSVGStringList.instance.$__setter___Callback_2_(this, index, newItem);
|
|
|
| @DomName('SVGStringList.appendItem')
|
| @DocsEditable()
|
| - String appendItem(String newItem) => _blink.BlinkSVGStringList.instance.appendItem_Callback_1_(unwrap_jso(this), newItem);
|
| + String appendItem(String newItem) => _blink.BlinkSVGStringList.instance.appendItem_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGStringList.clear')
|
| @DocsEditable()
|
| - void clear() => _blink.BlinkSVGStringList.instance.clear_Callback_0_(unwrap_jso(this));
|
| + void clear() => _blink.BlinkSVGStringList.instance.clear_Callback_0_(this);
|
|
|
| @DomName('SVGStringList.getItem')
|
| @DocsEditable()
|
| - String getItem(int index) => _blink.BlinkSVGStringList.instance.getItem_Callback_1_(unwrap_jso(this), index);
|
| + String getItem(int index) => _blink.BlinkSVGStringList.instance.getItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGStringList.initialize')
|
| @DocsEditable()
|
| - String initialize(String newItem) => _blink.BlinkSVGStringList.instance.initialize_Callback_1_(unwrap_jso(this), newItem);
|
| + String initialize(String newItem) => _blink.BlinkSVGStringList.instance.initialize_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGStringList.insertItemBefore')
|
| @DocsEditable()
|
| - String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), item, index);
|
| + String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.instance.insertItemBefore_Callback_2_(this, item, index);
|
|
|
| @DomName('SVGStringList.removeItem')
|
| @DocsEditable()
|
| - String removeItem(int index) => _blink.BlinkSVGStringList.instance.removeItem_Callback_1_(unwrap_jso(this), index);
|
| + String removeItem(int index) => _blink.BlinkSVGStringList.instance.removeItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGStringList.replaceItem')
|
| @DocsEditable()
|
| - String replaceItem(String newItem, int index) => _blink.BlinkSVGStringList.instance.replaceItem_Callback_2_(unwrap_jso(this), newItem, index);
|
| + String replaceItem(String newItem, int index) => _blink.BlinkSVGStringList.instance.replaceItem_Callback_2_(this, newItem, index);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -6650,40 +6575,40 @@ class StyleElement extends SvgElement {
|
|
|
| @DomName('SVGStyleElement.disabled')
|
| @DocsEditable()
|
| - bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(unwrap_jso(this));
|
| + bool get disabled => _blink.BlinkSVGStyleElement.instance.disabled_Getter_(this);
|
|
|
| @DomName('SVGStyleElement.disabled')
|
| @DocsEditable()
|
| - set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled_Setter_(unwrap_jso(this), value);
|
| + set disabled(bool value) => _blink.BlinkSVGStyleElement.instance.disabled_Setter_(this, value);
|
|
|
| @DomName('SVGStyleElement.media')
|
| @DocsEditable()
|
| - String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(unwrap_jso(this));
|
| + String get media => _blink.BlinkSVGStyleElement.instance.media_Getter_(this);
|
|
|
| @DomName('SVGStyleElement.media')
|
| @DocsEditable()
|
| - set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Setter_(unwrap_jso(this), value);
|
| + set media(String value) => _blink.BlinkSVGStyleElement.instance.media_Setter_(this, value);
|
|
|
| @DomName('SVGStyleElement.sheet')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - StyleSheet get sheet => wrap_jso(_blink.BlinkSVGStyleElement.instance.sheet_Getter_(unwrap_jso(this)));
|
| + StyleSheet get sheet => _blink.BlinkSVGStyleElement.instance.sheet_Getter_(this);
|
|
|
| @DomName('SVGStyleElement.title')
|
| @DocsEditable()
|
| - String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(unwrap_jso(this));
|
| + String get title => _blink.BlinkSVGStyleElement.instance.title_Getter_(this);
|
|
|
| @DomName('SVGStyleElement.title')
|
| @DocsEditable()
|
| - set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Setter_(unwrap_jso(this), value);
|
| + set title(String value) => _blink.BlinkSVGStyleElement.instance.title_Setter_(this, value);
|
|
|
| @DomName('SVGStyleElement.type')
|
| @DocsEditable()
|
| - String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(unwrap_jso(this));
|
| + String get type => _blink.BlinkSVGStyleElement.instance.type_Getter_(this);
|
|
|
| @DomName('SVGStyleElement.type')
|
| @DocsEditable()
|
| - set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Setter_(unwrap_jso(this), value);
|
| + set type(String value) => _blink.BlinkSVGStyleElement.instance.type_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| @@ -6834,7 +6759,7 @@ class SvgElement extends Element implements GlobalEventHandlers {
|
| }
|
|
|
| set _svgClassName(AnimatedString value) =>
|
| - _blink.BlinkSVGElement.instance.className_Setter_(unwrap_jso(this), unwrap_jso(value));
|
| + _blink.BlinkSVGElement.instance.className_Setter_(this, value);
|
|
|
| String get className => _svgClassName.baseVal;
|
|
|
| @@ -7130,40 +7055,40 @@ class SvgElement extends Element implements GlobalEventHandlers {
|
| @DomName('SVGElement.className')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - AnimatedString get _svgClassName => wrap_jso(_blink.BlinkSVGElement.instance.className_Getter_(unwrap_jso(this)));
|
| + AnimatedString get _svgClassName => _blink.BlinkSVGElement.instance.className_Getter_(this);
|
|
|
| @DomName('SVGElement.ownerSVGElement')
|
| @DocsEditable()
|
| - SvgSvgElement get ownerSvgElement => wrap_jso(_blink.BlinkSVGElement.instance.ownerSVGElement_Getter_(unwrap_jso(this)));
|
| + SvgSvgElement get ownerSvgElement => _blink.BlinkSVGElement.instance.ownerSVGElement_Getter_(this);
|
|
|
| @DomName('SVGElement.style')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - CssStyleDeclaration get style => wrap_jso(_blink.BlinkSVGElement.instance.style_Getter_(unwrap_jso(this)));
|
| + CssStyleDeclaration get style => _blink.BlinkSVGElement.instance.style_Getter_(this);
|
|
|
| @DomName('SVGElement.tabIndex')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(unwrap_jso(this));
|
| + int get tabIndex => _blink.BlinkSVGElement.instance.tabIndex_Getter_(this);
|
|
|
| @DomName('SVGElement.tabIndex')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Setter_(unwrap_jso(this), value);
|
| + set tabIndex(int value) => _blink.BlinkSVGElement.instance.tabIndex_Setter_(this, value);
|
|
|
| @DomName('SVGElement.viewportElement')
|
| @DocsEditable()
|
| - SvgElement get viewportElement => wrap_jso(_blink.BlinkSVGElement.instance.viewportElement_Getter_(unwrap_jso(this)));
|
| + SvgElement get viewportElement => _blink.BlinkSVGElement.instance.viewportElement_Getter_(this);
|
|
|
| @DomName('SVGElement.blur')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - void blur() => _blink.BlinkSVGElement.instance.blur_Callback_0_(unwrap_jso(this));
|
| + void blur() => _blink.BlinkSVGElement.instance.blur_Callback_0_(this);
|
|
|
| @DomName('SVGElement.focus')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - void focus() => _blink.BlinkSVGElement.instance.focus_Callback_0_(unwrap_jso(this));
|
| + void focus() => _blink.BlinkSVGElement.instance.focus_Callback_0_(this);
|
|
|
| @DomName('SVGElement.onabort')
|
| @DocsEditable()
|
| @@ -7464,167 +7389,167 @@ class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
|
|
|
| @DomName('SVGSVGElement.currentScale')
|
| @DocsEditable()
|
| - num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter_(unwrap_jso(this));
|
| + num get currentScale => _blink.BlinkSVGSVGElement.instance.currentScale_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.currentScale')
|
| @DocsEditable()
|
| - set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.currentScale_Setter_(unwrap_jso(this), value);
|
| + set currentScale(num value) => _blink.BlinkSVGSVGElement.instance.currentScale_Setter_(this, value);
|
|
|
| @DomName('SVGSVGElement.currentTranslate')
|
| @DocsEditable()
|
| - Point get currentTranslate => wrap_jso(_blink.BlinkSVGSVGElement.instance.currentTranslate_Getter_(unwrap_jso(this)));
|
| + Point get currentTranslate => _blink.BlinkSVGSVGElement.instance.currentTranslate_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.currentView')
|
| @DocsEditable()
|
| - ViewSpec get currentView => wrap_jso(_blink.BlinkSVGSVGElement.instance.currentView_Getter_(unwrap_jso(this)));
|
| + ViewSpec get currentView => _blink.BlinkSVGSVGElement.instance.currentView_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGSVGElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGSVGElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.pixelUnitToMillimeterX')
|
| @DocsEditable()
|
| - num get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelUnitToMillimeterX_Getter_(unwrap_jso(this));
|
| + num get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.instance.pixelUnitToMillimeterX_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.pixelUnitToMillimeterY')
|
| @DocsEditable()
|
| - num get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelUnitToMillimeterY_Getter_(unwrap_jso(this));
|
| + num get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.instance.pixelUnitToMillimeterY_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.screenPixelToMillimeterX')
|
| @DocsEditable()
|
| - num get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.screenPixelToMillimeterX_Getter_(unwrap_jso(this));
|
| + num get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.instance.screenPixelToMillimeterX_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.screenPixelToMillimeterY')
|
| @DocsEditable()
|
| - num get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.screenPixelToMillimeterY_Getter_(unwrap_jso(this));
|
| + num get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.instance.screenPixelToMillimeterY_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.useCurrentView')
|
| @DocsEditable()
|
| - bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_Getter_(unwrap_jso(this));
|
| + bool get useCurrentView => _blink.BlinkSVGSVGElement.instance.useCurrentView_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.viewport')
|
| @DocsEditable()
|
| - Rect get viewport => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewport_Getter_(unwrap_jso(this)));
|
| + Rect get viewport => _blink.BlinkSVGSVGElement.instance.viewport_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGSVGElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGSVGElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGSVGElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGSVGElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGSVGElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGSVGElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.animationsPaused')
|
| @DocsEditable()
|
| - bool animationsPaused() => _blink.BlinkSVGSVGElement.instance.animationsPaused_Callback_0_(unwrap_jso(this));
|
| + bool animationsPaused() => _blink.BlinkSVGSVGElement.instance.animationsPaused_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.checkEnclosure')
|
| @DocsEditable()
|
| - bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElement.instance.checkEnclosure_Callback_2_(unwrap_jso(this), unwrap_jso(element), unwrap_jso(rect));
|
| + bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElement.instance.checkEnclosure_Callback_2_(this, element, rect);
|
|
|
| @DomName('SVGSVGElement.checkIntersection')
|
| @DocsEditable()
|
| - bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElement.instance.checkIntersection_Callback_2_(unwrap_jso(this), unwrap_jso(element), unwrap_jso(rect));
|
| + bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElement.instance.checkIntersection_Callback_2_(this, element, rect);
|
|
|
| @DomName('SVGSVGElement.createSVGAngle')
|
| @DocsEditable()
|
| - Angle createSvgAngle() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGAngle_Callback_0_(unwrap_jso(this)));
|
| + Angle createSvgAngle() => _blink.BlinkSVGSVGElement.instance.createSVGAngle_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.createSVGLength')
|
| @DocsEditable()
|
| - Length createSvgLength() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGLength_Callback_0_(unwrap_jso(this)));
|
| + Length createSvgLength() => _blink.BlinkSVGSVGElement.instance.createSVGLength_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.createSVGMatrix')
|
| @DocsEditable()
|
| - Matrix createSvgMatrix() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGMatrix_Callback_0_(unwrap_jso(this)));
|
| + Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.instance.createSVGMatrix_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.createSVGNumber')
|
| @DocsEditable()
|
| - Number createSvgNumber() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGNumber_Callback_0_(unwrap_jso(this)));
|
| + Number createSvgNumber() => _blink.BlinkSVGSVGElement.instance.createSVGNumber_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.createSVGPoint')
|
| @DocsEditable()
|
| - Point createSvgPoint() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGPoint_Callback_0_(unwrap_jso(this)));
|
| + Point createSvgPoint() => _blink.BlinkSVGSVGElement.instance.createSVGPoint_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.createSVGRect')
|
| @DocsEditable()
|
| - Rect createSvgRect() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGRect_Callback_0_(unwrap_jso(this)));
|
| + Rect createSvgRect() => _blink.BlinkSVGSVGElement.instance.createSVGRect_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.createSVGTransform')
|
| @DocsEditable()
|
| - Transform createSvgTransform() => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGTransform_Callback_0_(unwrap_jso(this)));
|
| + Transform createSvgTransform() => _blink.BlinkSVGSVGElement.instance.createSVGTransform_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.createSVGTransformFromMatrix')
|
| @DocsEditable()
|
| - Transform createSvgTransformFromMatrix(Matrix matrix) => wrap_jso(_blink.BlinkSVGSVGElement.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this), unwrap_jso(matrix)));
|
| + Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGElement.instance.createSVGTransformFromMatrix_Callback_1_(this, matrix);
|
|
|
| @DomName('SVGSVGElement.deselectAll')
|
| @DocsEditable()
|
| - void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_0_(unwrap_jso(this));
|
| + void deselectAll() => _blink.BlinkSVGSVGElement.instance.deselectAll_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.forceRedraw')
|
| @DocsEditable()
|
| - void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_0_(unwrap_jso(this));
|
| + void forceRedraw() => _blink.BlinkSVGSVGElement.instance.forceRedraw_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.getCurrentTime')
|
| @DocsEditable()
|
| - num getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_Callback_0_(unwrap_jso(this));
|
| + num getCurrentTime() => _blink.BlinkSVGSVGElement.instance.getCurrentTime_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.getElementById')
|
| @DocsEditable()
|
| - Element getElementById(String elementId) => wrap_jso(_blink.BlinkSVGSVGElement.instance.getElementById_Callback_1_(unwrap_jso(this), elementId));
|
| + Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.instance.getElementById_Callback_1_(this, elementId);
|
|
|
| @DomName('SVGSVGElement.getEnclosureList')
|
| @DocsEditable()
|
| - List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => wrap_jso(_blink.BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(unwrap_jso(this), unwrap_jso(rect), unwrap_jso(referenceElement)));
|
| + List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => (_blink.BlinkSVGSVGElement.instance.getEnclosureList_Callback_2_(this, rect, referenceElement));
|
|
|
| @DomName('SVGSVGElement.getIntersectionList')
|
| @DocsEditable()
|
| - List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => wrap_jso(_blink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(unwrap_jso(this), unwrap_jso(rect), unwrap_jso(referenceElement)));
|
| + List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => (_blink.BlinkSVGSVGElement.instance.getIntersectionList_Callback_2_(this, rect, referenceElement));
|
|
|
| @DomName('SVGSVGElement.pauseAnimations')
|
| @DocsEditable()
|
| - void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_Callback_0_(unwrap_jso(this));
|
| + void pauseAnimations() => _blink.BlinkSVGSVGElement.instance.pauseAnimations_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.setCurrentTime')
|
| @DocsEditable()
|
| - void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurrentTime_Callback_1_(unwrap_jso(this), seconds);
|
| + void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.instance.setCurrentTime_Callback_1_(this, seconds);
|
|
|
| @DomName('SVGSVGElement.suspendRedraw')
|
| @DocsEditable()
|
| - int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.instance.suspendRedraw_Callback_1_(unwrap_jso(this), maxWaitMilliseconds);
|
| + int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.instance.suspendRedraw_Callback_1_(this, maxWaitMilliseconds);
|
|
|
| @DomName('SVGSVGElement.unpauseAnimations')
|
| @DocsEditable()
|
| - void unpauseAnimations() => _blink.BlinkSVGSVGElement.instance.unpauseAnimations_Callback_0_(unwrap_jso(this));
|
| + void unpauseAnimations() => _blink.BlinkSVGSVGElement.instance.unpauseAnimations_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.unsuspendRedraw')
|
| @DocsEditable()
|
| - void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.instance.unsuspendRedraw_Callback_1_(unwrap_jso(this), suspendHandleId);
|
| + void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.instance.unsuspendRedraw_Callback_1_(this, suspendHandleId);
|
|
|
| @DomName('SVGSVGElement.unsuspendRedrawAll')
|
| @DocsEditable()
|
| - void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.instance.unsuspendRedrawAll_Callback_0_(unwrap_jso(this));
|
| + void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.instance.unsuspendRedrawAll_Callback_0_(this);
|
|
|
| @DomName('SVGSVGElement.preserveAspectRatio')
|
| @DocsEditable()
|
| - AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSVGSVGElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this)));
|
| + AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGElement.instance.preserveAspectRatio_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.viewBox')
|
| @DocsEditable()
|
| - AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSVGElement.instance.viewBox_Getter_(unwrap_jso(this)));
|
| + AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.instance.viewBox_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.zoomAndPan')
|
| @DocsEditable()
|
| - int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(unwrap_jso(this));
|
| + int get zoomAndPan => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Getter_(this);
|
|
|
| @DomName('SVGSVGElement.zoomAndPan')
|
| @DocsEditable()
|
| - set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Setter_(unwrap_jso(this), value);
|
| + set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.instance.zoomAndPan_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -7702,11 +7627,11 @@ class SymbolElement extends SvgElement implements FitToViewBox {
|
|
|
| @DomName('SVGSymbolElement.preserveAspectRatio')
|
| @DocsEditable()
|
| - AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSVGSymbolElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this)));
|
| + AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSymbolElement.instance.preserveAspectRatio_Getter_(this);
|
|
|
| @DomName('SVGSymbolElement.viewBox')
|
| @DocsEditable()
|
| - AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGSymbolElement.instance.viewBox_Getter_(unwrap_jso(this)));
|
| + AnimatedRect get viewBox => _blink.BlinkSVGSymbolElement.instance.viewBox_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -7823,47 +7748,47 @@ class TextContentElement extends GraphicsElement {
|
|
|
| @DomName('SVGTextContentElement.lengthAdjust')
|
| @DocsEditable()
|
| - AnimatedEnumeration get lengthAdjust => wrap_jso(_blink.BlinkSVGTextContentElement.instance.lengthAdjust_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.instance.lengthAdjust_Getter_(this);
|
|
|
| @DomName('SVGTextContentElement.textLength')
|
| @DocsEditable()
|
| - AnimatedLength get textLength => wrap_jso(_blink.BlinkSVGTextContentElement.instance.textLength_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.instance.textLength_Getter_(this);
|
|
|
| @DomName('SVGTextContentElement.getCharNumAtPosition')
|
| @DocsEditable()
|
| - int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.instance.getCharNumAtPosition_Callback_1_(unwrap_jso(this), unwrap_jso(point));
|
| + int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.instance.getCharNumAtPosition_Callback_1_(this, point);
|
|
|
| @DomName('SVGTextContentElement.getComputedTextLength')
|
| @DocsEditable()
|
| - num getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.getComputedTextLength_Callback_0_(unwrap_jso(this));
|
| + num getComputedTextLength() => _blink.BlinkSVGTextContentElement.instance.getComputedTextLength_Callback_0_(this);
|
|
|
| @DomName('SVGTextContentElement.getEndPositionOfChar')
|
| @DocsEditable()
|
| - Point getEndPositionOfChar(int charnum) => wrap_jso(_blink.BlinkSVGTextContentElement.instance.getEndPositionOfChar_Callback_1_(unwrap_jso(this), charnum));
|
| + Point getEndPositionOfChar(int charnum) => _blink.BlinkSVGTextContentElement.instance.getEndPositionOfChar_Callback_1_(this, charnum);
|
|
|
| @DomName('SVGTextContentElement.getExtentOfChar')
|
| @DocsEditable()
|
| - Rect getExtentOfChar(int charnum) => wrap_jso(_blink.BlinkSVGTextContentElement.instance.getExtentOfChar_Callback_1_(unwrap_jso(this), charnum));
|
| + Rect getExtentOfChar(int charnum) => _blink.BlinkSVGTextContentElement.instance.getExtentOfChar_Callback_1_(this, charnum);
|
|
|
| @DomName('SVGTextContentElement.getNumberOfChars')
|
| @DocsEditable()
|
| - int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumberOfChars_Callback_0_(unwrap_jso(this));
|
| + int getNumberOfChars() => _blink.BlinkSVGTextContentElement.instance.getNumberOfChars_Callback_0_(this);
|
|
|
| @DomName('SVGTextContentElement.getRotationOfChar')
|
| @DocsEditable()
|
| - num getRotationOfChar(int charnum) => _blink.BlinkSVGTextContentElement.instance.getRotationOfChar_Callback_1_(unwrap_jso(this), charnum);
|
| + num getRotationOfChar(int charnum) => _blink.BlinkSVGTextContentElement.instance.getRotationOfChar_Callback_1_(this, charnum);
|
|
|
| @DomName('SVGTextContentElement.getStartPositionOfChar')
|
| @DocsEditable()
|
| - Point getStartPositionOfChar(int charnum) => wrap_jso(_blink.BlinkSVGTextContentElement.instance.getStartPositionOfChar_Callback_1_(unwrap_jso(this), charnum));
|
| + Point getStartPositionOfChar(int charnum) => _blink.BlinkSVGTextContentElement.instance.getStartPositionOfChar_Callback_1_(this, charnum);
|
|
|
| @DomName('SVGTextContentElement.getSubStringLength')
|
| @DocsEditable()
|
| - num getSubStringLength(int charnum, int nchars) => _blink.BlinkSVGTextContentElement.instance.getSubStringLength_Callback_2_(unwrap_jso(this), charnum, nchars);
|
| + num getSubStringLength(int charnum, int nchars) => _blink.BlinkSVGTextContentElement.instance.getSubStringLength_Callback_2_(this, charnum, nchars);
|
|
|
| @DomName('SVGTextContentElement.selectSubString')
|
| @DocsEditable()
|
| - void selectSubString(int charnum, int nchars) => _blink.BlinkSVGTextContentElement.instance.selectSubString_Callback_2_(unwrap_jso(this), charnum, nchars);
|
| + void selectSubString(int charnum, int nchars) => _blink.BlinkSVGTextContentElement.instance.selectSubString_Callback_2_(this, charnum, nchars);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -7961,19 +7886,19 @@ class TextPathElement extends TextContentElement implements UriReference {
|
|
|
| @DomName('SVGTextPathElement.method')
|
| @DocsEditable()
|
| - AnimatedEnumeration get method => wrap_jso(_blink.BlinkSVGTextPathElement.instance.method_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get method => _blink.BlinkSVGTextPathElement.instance.method_Getter_(this);
|
|
|
| @DomName('SVGTextPathElement.spacing')
|
| @DocsEditable()
|
| - AnimatedEnumeration get spacing => wrap_jso(_blink.BlinkSVGTextPathElement.instance.spacing_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get spacing => _blink.BlinkSVGTextPathElement.instance.spacing_Getter_(this);
|
|
|
| @DomName('SVGTextPathElement.startOffset')
|
| @DocsEditable()
|
| - AnimatedLength get startOffset => wrap_jso(_blink.BlinkSVGTextPathElement.instance.startOffset_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get startOffset => _blink.BlinkSVGTextPathElement.instance.startOffset_Getter_(this);
|
|
|
| @DomName('SVGTextPathElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGTextPathElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGTextPathElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8010,23 +7935,23 @@ class TextPositioningElement extends TextContentElement {
|
|
|
| @DomName('SVGTextPositioningElement.dx')
|
| @DocsEditable()
|
| - AnimatedLengthList get dx => wrap_jso(_blink.BlinkSVGTextPositioningElement.instance.dx_Getter_(unwrap_jso(this)));
|
| + AnimatedLengthList get dx => _blink.BlinkSVGTextPositioningElement.instance.dx_Getter_(this);
|
|
|
| @DomName('SVGTextPositioningElement.dy')
|
| @DocsEditable()
|
| - AnimatedLengthList get dy => wrap_jso(_blink.BlinkSVGTextPositioningElement.instance.dy_Getter_(unwrap_jso(this)));
|
| + AnimatedLengthList get dy => _blink.BlinkSVGTextPositioningElement.instance.dy_Getter_(this);
|
|
|
| @DomName('SVGTextPositioningElement.rotate')
|
| @DocsEditable()
|
| - AnimatedNumberList get rotate => wrap_jso(_blink.BlinkSVGTextPositioningElement.instance.rotate_Getter_(unwrap_jso(this)));
|
| + AnimatedNumberList get rotate => _blink.BlinkSVGTextPositioningElement.instance.rotate_Getter_(this);
|
|
|
| @DomName('SVGTextPositioningElement.x')
|
| @DocsEditable()
|
| - AnimatedLengthList get x => wrap_jso(_blink.BlinkSVGTextPositioningElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLengthList get x => _blink.BlinkSVGTextPositioningElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGTextPositioningElement.y')
|
| @DocsEditable()
|
| - AnimatedLengthList get y => wrap_jso(_blink.BlinkSVGTextPositioningElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLengthList get y => _blink.BlinkSVGTextPositioningElement.instance.y_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8092,9 +8017,6 @@ class Transform extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| Transform.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGTransform.SVG_TRANSFORM_MATRIX')
|
| @DocsEditable()
|
| static const int SVG_TRANSFORM_MATRIX = 1;
|
| @@ -8125,39 +8047,39 @@ class Transform extends DartHtmlDomObject {
|
|
|
| @DomName('SVGTransform.angle')
|
| @DocsEditable()
|
| - num get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(unwrap_jso(this));
|
| + num get angle => _blink.BlinkSVGTransform.instance.angle_Getter_(this);
|
|
|
| @DomName('SVGTransform.matrix')
|
| @DocsEditable()
|
| - Matrix get matrix => wrap_jso(_blink.BlinkSVGTransform.instance.matrix_Getter_(unwrap_jso(this)));
|
| + Matrix get matrix => _blink.BlinkSVGTransform.instance.matrix_Getter_(this);
|
|
|
| @DomName('SVGTransform.type')
|
| @DocsEditable()
|
| - int get type => _blink.BlinkSVGTransform.instance.type_Getter_(unwrap_jso(this));
|
| + int get type => _blink.BlinkSVGTransform.instance.type_Getter_(this);
|
|
|
| @DomName('SVGTransform.setMatrix')
|
| @DocsEditable()
|
| - void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.instance.setMatrix_Callback_1_(unwrap_jso(this), unwrap_jso(matrix));
|
| + void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.instance.setMatrix_Callback_1_(this, matrix);
|
|
|
| @DomName('SVGTransform.setRotate')
|
| @DocsEditable()
|
| - void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.instance.setRotate_Callback_3_(unwrap_jso(this), angle, cx, cy);
|
| + void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.instance.setRotate_Callback_3_(this, angle, cx, cy);
|
|
|
| @DomName('SVGTransform.setScale')
|
| @DocsEditable()
|
| - void setScale(num sx, num sy) => _blink.BlinkSVGTransform.instance.setScale_Callback_2_(unwrap_jso(this), sx, sy);
|
| + void setScale(num sx, num sy) => _blink.BlinkSVGTransform.instance.setScale_Callback_2_(this, sx, sy);
|
|
|
| @DomName('SVGTransform.setSkewX')
|
| @DocsEditable()
|
| - void setSkewX(num angle) => _blink.BlinkSVGTransform.instance.setSkewX_Callback_1_(unwrap_jso(this), angle);
|
| + void setSkewX(num angle) => _blink.BlinkSVGTransform.instance.setSkewX_Callback_1_(this, angle);
|
|
|
| @DomName('SVGTransform.setSkewY')
|
| @DocsEditable()
|
| - void setSkewY(num angle) => _blink.BlinkSVGTransform.instance.setSkewY_Callback_1_(unwrap_jso(this), angle);
|
| + void setSkewY(num angle) => _blink.BlinkSVGTransform.instance.setSkewY_Callback_1_(this, angle);
|
|
|
| @DomName('SVGTransform.setTranslate')
|
| @DocsEditable()
|
| - void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.instance.setTranslate_Callback_2_(unwrap_jso(this), tx, ty);
|
| + void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.instance.setTranslate_Callback_2_(this, tx, ty);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8186,17 +8108,14 @@ class TransformList extends DartHtmlDomObject with ListMixin<Transform>, Immutab
|
| @Deprecated("Internal Use Only")
|
| TransformList.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGTransformList.length')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_jso(this));
|
| + int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(this);
|
|
|
| @DomName('SVGTransformList.numberOfItems')
|
| @DocsEditable()
|
| - int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_Getter_(unwrap_jso(this));
|
| + int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_Getter_(this);
|
|
|
| Transform operator[](int index) {
|
| if (index < 0 || index >= length)
|
| @@ -8245,43 +8164,43 @@ class TransformList extends DartHtmlDomObject with ListMixin<Transform>, Immutab
|
| @DomName('SVGTransformList.__setter__')
|
| @DocsEditable()
|
| @Experimental() // untriaged
|
| - void __setter__(int index, Transform newItem) => _blink.BlinkSVGTransformList.instance.$__setter___Callback_2_(unwrap_jso(this), index, unwrap_jso(newItem));
|
| + void __setter__(int index, Transform newItem) => _blink.BlinkSVGTransformList.instance.$__setter___Callback_2_(this, index, newItem);
|
|
|
| @DomName('SVGTransformList.appendItem')
|
| @DocsEditable()
|
| - Transform appendItem(Transform newItem) => wrap_jso(_blink.BlinkSVGTransformList.instance.appendItem_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + Transform appendItem(Transform newItem) => _blink.BlinkSVGTransformList.instance.appendItem_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGTransformList.clear')
|
| @DocsEditable()
|
| - void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(unwrap_jso(this));
|
| + void clear() => _blink.BlinkSVGTransformList.instance.clear_Callback_0_(this);
|
|
|
| @DomName('SVGTransformList.consolidate')
|
| @DocsEditable()
|
| - Transform consolidate() => wrap_jso(_blink.BlinkSVGTransformList.instance.consolidate_Callback_0_(unwrap_jso(this)));
|
| + Transform consolidate() => _blink.BlinkSVGTransformList.instance.consolidate_Callback_0_(this);
|
|
|
| @DomName('SVGTransformList.createSVGTransformFromMatrix')
|
| @DocsEditable()
|
| - Transform createSvgTransformFromMatrix(Matrix matrix) => wrap_jso(_blink.BlinkSVGTransformList.instance.createSVGTransformFromMatrix_Callback_1_(unwrap_jso(this), unwrap_jso(matrix)));
|
| + Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransformList.instance.createSVGTransformFromMatrix_Callback_1_(this, matrix);
|
|
|
| @DomName('SVGTransformList.getItem')
|
| @DocsEditable()
|
| - Transform getItem(int index) => wrap_jso(_blink.BlinkSVGTransformList.instance.getItem_Callback_1_(unwrap_jso(this), index));
|
| + Transform getItem(int index) => _blink.BlinkSVGTransformList.instance.getItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGTransformList.initialize')
|
| @DocsEditable()
|
| - Transform initialize(Transform newItem) => wrap_jso(_blink.BlinkSVGTransformList.instance.initialize_Callback_1_(unwrap_jso(this), unwrap_jso(newItem)));
|
| + Transform initialize(Transform newItem) => _blink.BlinkSVGTransformList.instance.initialize_Callback_1_(this, newItem);
|
|
|
| @DomName('SVGTransformList.insertItemBefore')
|
| @DocsEditable()
|
| - Transform insertItemBefore(Transform newItem, int index) => wrap_jso(_blink.BlinkSVGTransformList.instance.insertItemBefore_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + Transform insertItemBefore(Transform newItem, int index) => _blink.BlinkSVGTransformList.instance.insertItemBefore_Callback_2_(this, newItem, index);
|
|
|
| @DomName('SVGTransformList.removeItem')
|
| @DocsEditable()
|
| - Transform removeItem(int index) => wrap_jso(_blink.BlinkSVGTransformList.instance.removeItem_Callback_1_(unwrap_jso(this), index));
|
| + Transform removeItem(int index) => _blink.BlinkSVGTransformList.instance.removeItem_Callback_1_(this, index);
|
|
|
| @DomName('SVGTransformList.replaceItem')
|
| @DocsEditable()
|
| - Transform replaceItem(Transform newItem, int index) => wrap_jso(_blink.BlinkSVGTransformList.instance.replaceItem_Callback_2_(unwrap_jso(this), unwrap_jso(newItem), index));
|
| + Transform replaceItem(Transform newItem, int index) => _blink.BlinkSVGTransformList.instance.replaceItem_Callback_2_(this, newItem, index);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8310,9 +8229,6 @@ class UnitTypes extends DartHtmlDomObject {
|
| @Deprecated("Internal Use Only")
|
| UnitTypes.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX')
|
| @DocsEditable()
|
| static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
|
| @@ -8383,23 +8299,23 @@ class UseElement extends GraphicsElement implements UriReference {
|
|
|
| @DomName('SVGUseElement.height')
|
| @DocsEditable()
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGUseElement.instance.height_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGUseElement.instance.height_Getter_(this);
|
|
|
| @DomName('SVGUseElement.width')
|
| @DocsEditable()
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGUseElement.instance.width_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get width => _blink.BlinkSVGUseElement.instance.width_Getter_(this);
|
|
|
| @DomName('SVGUseElement.x')
|
| @DocsEditable()
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGUseElement.instance.x_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get x => _blink.BlinkSVGUseElement.instance.x_Getter_(this);
|
|
|
| @DomName('SVGUseElement.y')
|
| @DocsEditable()
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGUseElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get y => _blink.BlinkSVGUseElement.instance.y_Getter_(this);
|
|
|
| @DomName('SVGUseElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGUseElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGUseElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8440,23 +8356,23 @@ class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan {
|
|
|
| @DomName('SVGViewElement.viewTarget')
|
| @DocsEditable()
|
| - StringList get viewTarget => wrap_jso(_blink.BlinkSVGViewElement.instance.viewTarget_Getter_(unwrap_jso(this)));
|
| + StringList get viewTarget => _blink.BlinkSVGViewElement.instance.viewTarget_Getter_(this);
|
|
|
| @DomName('SVGViewElement.preserveAspectRatio')
|
| @DocsEditable()
|
| - AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSVGViewElement.instance.preserveAspectRatio_Getter_(unwrap_jso(this)));
|
| + AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewElement.instance.preserveAspectRatio_Getter_(this);
|
|
|
| @DomName('SVGViewElement.viewBox')
|
| @DocsEditable()
|
| - AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewElement.instance.viewBox_Getter_(unwrap_jso(this)));
|
| + AnimatedRect get viewBox => _blink.BlinkSVGViewElement.instance.viewBox_Getter_(this);
|
|
|
| @DomName('SVGViewElement.zoomAndPan')
|
| @DocsEditable()
|
| - int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(unwrap_jso(this));
|
| + int get zoomAndPan => _blink.BlinkSVGViewElement.instance.zoomAndPan_Getter_(this);
|
|
|
| @DomName('SVGViewElement.zoomAndPan')
|
| @DocsEditable()
|
| - set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndPan_Setter_(unwrap_jso(this), value);
|
| + set zoomAndPan(int value) => _blink.BlinkSVGViewElement.instance.zoomAndPan_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8485,52 +8401,49 @@ class ViewSpec extends DartHtmlDomObject implements FitToViewBox, ZoomAndPan {
|
| @Deprecated("Internal Use Only")
|
| ViewSpec.internal_() { }
|
|
|
| - bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical(this, other);
|
| - int get hashCode => unwrap_jso(this).hashCode;
|
| -
|
| @DomName('SVGViewSpec.preserveAspectRatioString')
|
| @DocsEditable()
|
| - String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.preserveAspectRatioString_Getter_(unwrap_jso(this));
|
| + String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.preserveAspectRatioString_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.transform')
|
| @DocsEditable()
|
| - TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.transform_Getter_(unwrap_jso(this)));
|
| + TransformList get transform => _blink.BlinkSVGViewSpec.instance.transform_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.transformString')
|
| @DocsEditable()
|
| - String get transformString => _blink.BlinkSVGViewSpec.instance.transformString_Getter_(unwrap_jso(this));
|
| + String get transformString => _blink.BlinkSVGViewSpec.instance.transformString_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.viewBoxString')
|
| @DocsEditable()
|
| - String get viewBoxString => _blink.BlinkSVGViewSpec.instance.viewBoxString_Getter_(unwrap_jso(this));
|
| + String get viewBoxString => _blink.BlinkSVGViewSpec.instance.viewBoxString_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.viewTarget')
|
| @DocsEditable()
|
| - SvgElement get viewTarget => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewTarget_Getter_(unwrap_jso(this)));
|
| + SvgElement get viewTarget => _blink.BlinkSVGViewSpec.instance.viewTarget_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.viewTargetString')
|
| @DocsEditable()
|
| - String get viewTargetString => _blink.BlinkSVGViewSpec.instance.viewTargetString_Getter_(unwrap_jso(this));
|
| + String get viewTargetString => _blink.BlinkSVGViewSpec.instance.viewTargetString_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.preserveAspectRatio')
|
| @DocsEditable()
|
| @Experimental() // nonstandard
|
| - AnimatedPreserveAspectRatio get preserveAspectRatio => wrap_jso(_blink.BlinkSVGViewSpec.instance.preserveAspectRatio_Getter_(unwrap_jso(this)));
|
| + AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewSpec.instance.preserveAspectRatio_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.viewBox')
|
| @DocsEditable()
|
| @Experimental() // nonstandard
|
| - AnimatedRect get viewBox => wrap_jso(_blink.BlinkSVGViewSpec.instance.viewBox_Getter_(unwrap_jso(this)));
|
| + AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.instance.viewBox_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.zoomAndPan')
|
| @DocsEditable()
|
| @Experimental() // nonstandard
|
| - int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(unwrap_jso(this));
|
| + int get zoomAndPan => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Getter_(this);
|
|
|
| @DomName('SVGViewSpec.zoomAndPan')
|
| @DocsEditable()
|
| @Experimental() // nonstandard
|
| - set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Setter_(unwrap_jso(this), value);
|
| + set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.instance.zoomAndPan_Setter_(this, value);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8596,23 +8509,23 @@ class ZoomEvent extends UIEvent {
|
|
|
| @DomName('SVGZoomEvent.newScale')
|
| @DocsEditable()
|
| - num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(unwrap_jso(this));
|
| + num get newScale => _blink.BlinkSVGZoomEvent.instance.newScale_Getter_(this);
|
|
|
| @DomName('SVGZoomEvent.newTranslate')
|
| @DocsEditable()
|
| - Point get newTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.newTranslate_Getter_(unwrap_jso(this)));
|
| + Point get newTranslate => _blink.BlinkSVGZoomEvent.instance.newTranslate_Getter_(this);
|
|
|
| @DomName('SVGZoomEvent.previousScale')
|
| @DocsEditable()
|
| - num get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Getter_(unwrap_jso(this));
|
| + num get previousScale => _blink.BlinkSVGZoomEvent.instance.previousScale_Getter_(this);
|
|
|
| @DomName('SVGZoomEvent.previousTranslate')
|
| @DocsEditable()
|
| - Point get previousTranslate => wrap_jso(_blink.BlinkSVGZoomEvent.instance.previousTranslate_Getter_(unwrap_jso(this)));
|
| + Point get previousTranslate => _blink.BlinkSVGZoomEvent.instance.previousTranslate_Getter_(this);
|
|
|
| @DomName('SVGZoomEvent.zoomRectScreen')
|
| @DocsEditable()
|
| - Rect get zoomRectScreen => wrap_jso(_blink.BlinkSVGZoomEvent.instance.zoomRectScreen_Getter_(unwrap_jso(this)));
|
| + Rect get zoomRectScreen => _blink.BlinkSVGZoomEvent.instance.zoomRectScreen_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8665,19 +8578,19 @@ class _GradientElement extends SvgElement implements UriReference {
|
|
|
| @DomName('SVGGradientElement.gradientTransform')
|
| @DocsEditable()
|
| - AnimatedTransformList get gradientTransform => wrap_jso(_blink.BlinkSVGGradientElement.instance.gradientTransform_Getter_(unwrap_jso(this)));
|
| + AnimatedTransformList get gradientTransform => _blink.BlinkSVGGradientElement.instance.gradientTransform_Getter_(this);
|
|
|
| @DomName('SVGGradientElement.gradientUnits')
|
| @DocsEditable()
|
| - AnimatedEnumeration get gradientUnits => wrap_jso(_blink.BlinkSVGGradientElement.instance.gradientUnits_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get gradientUnits => _blink.BlinkSVGGradientElement.instance.gradientUnits_Getter_(this);
|
|
|
| @DomName('SVGGradientElement.spreadMethod')
|
| @DocsEditable()
|
| - AnimatedEnumeration get spreadMethod => wrap_jso(_blink.BlinkSVGGradientElement.instance.spreadMethod_Getter_(unwrap_jso(this)));
|
| + AnimatedEnumeration get spreadMethod => _blink.BlinkSVGGradientElement.instance.spreadMethod_Getter_(this);
|
|
|
| @DomName('SVGGradientElement.href')
|
| @DocsEditable()
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGGradientElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGGradientElement.instance.href_Getter_(this);
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8751,11 +8664,11 @@ class _SVGCursorElement extends SvgElement implements UriReference, Tests {
|
| static bool get supported => true;
|
|
|
| // Override these methods for Dartium _SVGCursorElement can't be abstract.
|
| - StringList get requiredExtensions => wrap_jso(_blink.BlinkSVGCursorElement.instance.requiredExtensions_Getter_(unwrap_jso(this)));
|
| - StringList get requiredFeatures => wrap_jso(_blink.BlinkSVGCursorElement.instance.requiredFeatures_Getter_(unwrap_jso(this)));
|
| - StringList get systemLanguage => wrap_jso(_blink.BlinkSVGCursorElement.instance.systemLanguage_Getter_(unwrap_jso(this)));
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGCursorElement.instance.href_Getter_(unwrap_jso(this)));
|
| - bool hasExtension(String extension) => _blink.BlinkSVGCursorElement.instance.hasExtension_Callback_1_(unwrap_jso(this), extension);
|
| + StringList get requiredExtensions => _blink.BlinkSVGCursorElement.instance.requiredExtensions_Getter_(this);
|
| + StringList get requiredFeatures => _blink.BlinkSVGCursorElement.instance.requiredFeatures_Getter_(this);
|
| + StringList get systemLanguage => _blink.BlinkSVGCursorElement.instance.systemLanguage_Getter_(this);
|
| + AnimatedString get href => _blink.BlinkSVGCursorElement.instance.href_Getter_(this);
|
| + bool hasExtension(String extension) => _blink.BlinkSVGCursorElement.instance.hasExtension_Callback_1_(this, extension);
|
| }
|
|
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8789,11 +8702,11 @@ class _SVGFEDropShadowElement extends SvgElement implements FilterPrimitiveStand
|
| _SVGFEDropShadowElement.created() : super.created();
|
|
|
| // Override these methods for Dartium _SVGFEDropShadowElement can't be abstract.
|
| - AnimatedLength get height => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.height_Getter_(unwrap_jso(this)));
|
| - AnimatedString get result => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.result_Getter_(unwrap_jso(this)));
|
| - AnimatedLength get width => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.width_Getter_(unwrap_jso(this)));
|
| - AnimatedLength get x => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.x_Getter_(unwrap_jso(this)));
|
| - AnimatedLength get y => wrap_jso(_blink.BlinkSVGFEDropShadowElement.instance.y_Getter_(unwrap_jso(this)));
|
| + AnimatedLength get height => _blink.BlinkSVGFEDropShadowElement.instance.height_Getter_(this);
|
| + AnimatedString get result => _blink.BlinkSVGFEDropShadowElement.instance.result_Getter_(this);
|
| + AnimatedLength get width => _blink.BlinkSVGFEDropShadowElement.instance.width_Getter_(this);
|
| + AnimatedLength get x => _blink.BlinkSVGFEDropShadowElement.instance.x_Getter_(this);
|
| + AnimatedLength get y => _blink.BlinkSVGFEDropShadowElement.instance.y_Getter_(this);
|
| }
|
|
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -8830,6 +8743,6 @@ class _SVGMPathElement extends SvgElement implements UriReference {
|
| _SVGMPathElement.created() : super.created();
|
|
|
| // Override these methods for Dartium _SVGMPathElement can't be abstract.
|
| - AnimatedString get href => wrap_jso(_blink.BlinkSVGMPathElement.instance.href_Getter_(unwrap_jso(this)));
|
| + AnimatedString get href => _blink.BlinkSVGMPathElement.instance.href_Getter_(this);
|
| }
|
|
|
|
|