Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 1262723003: Add a hashCode that delegates to JS for everything that defines == (Closed) Base URL: git@github.com:dart-lang/sdk.git@integration
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /** 1 /**
2 * Scalable Vector Graphics: 2 * Scalable Vector Graphics:
3 * Two-dimensional vector graphics with support for events and animation. 3 * Two-dimensional vector graphics with support for events and animation.
4 * 4 *
5 * For details about the features and syntax of SVG, a W3C standard, 5 * For details about the features and syntax of SVG, a W3C standard,
6 * refer to the 6 * refer to the
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
8 */ 8 */
9 library dart.dom.svg; 9 library dart.dom.svg;
10 10
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 455
456 js.JsObject blink_jsObject = null; 456 js.JsObject blink_jsObject = null;
457 457
458 factory Angle._internalWrap() { 458 factory Angle._internalWrap() {
459 return new Angle.internal_(); 459 return new Angle.internal_();
460 } 460 }
461 461
462 Angle.internal_() { } 462 Angle.internal_() { }
463 463
464 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 464 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
465 int get hashCode => unwrap_jso(this).hashCode;
465 466
466 @DomName('SVGAngle.SVG_ANGLETYPE_DEG') 467 @DomName('SVGAngle.SVG_ANGLETYPE_DEG')
467 @DocsEditable() 468 @DocsEditable()
468 static const int SVG_ANGLETYPE_DEG = 2; 469 static const int SVG_ANGLETYPE_DEG = 2;
469 470
470 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD') 471 @DomName('SVGAngle.SVG_ANGLETYPE_GRAD')
471 @DocsEditable() 472 @DocsEditable()
472 static const int SVG_ANGLETYPE_GRAD = 4; 473 static const int SVG_ANGLETYPE_GRAD = 4;
473 474
474 @DomName('SVGAngle.SVG_ANGLETYPE_RAD') 475 @DomName('SVGAngle.SVG_ANGLETYPE_RAD')
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 670
670 js.JsObject blink_jsObject = null; 671 js.JsObject blink_jsObject = null;
671 672
672 factory AnimatedAngle._internalWrap() { 673 factory AnimatedAngle._internalWrap() {
673 return new AnimatedAngle.internal_(); 674 return new AnimatedAngle.internal_();
674 } 675 }
675 676
676 AnimatedAngle.internal_() { } 677 AnimatedAngle.internal_() { }
677 678
678 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 679 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
680 int get hashCode => unwrap_jso(this).hashCode;
679 681
680 @DomName('SVGAnimatedAngle.animVal') 682 @DomName('SVGAnimatedAngle.animVal')
681 @DocsEditable() 683 @DocsEditable()
682 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge tter_(unwrap_jso(this))); 684 Angle get animVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.animVal_Ge tter_(unwrap_jso(this)));
683 685
684 @DomName('SVGAnimatedAngle.baseVal') 686 @DomName('SVGAnimatedAngle.baseVal')
685 @DocsEditable() 687 @DocsEditable()
686 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge tter_(unwrap_jso(this))); 688 Angle get baseVal => wrap_jso(_blink.BlinkSVGAnimatedAngle.instance.baseVal_Ge tter_(unwrap_jso(this)));
687 689
688 } 690 }
(...skipping 17 matching lines...) Expand all
706 708
707 js.JsObject blink_jsObject = null; 709 js.JsObject blink_jsObject = null;
708 710
709 factory AnimatedBoolean._internalWrap() { 711 factory AnimatedBoolean._internalWrap() {
710 return new AnimatedBoolean.internal_(); 712 return new AnimatedBoolean.internal_();
711 } 713 }
712 714
713 AnimatedBoolean.internal_() { } 715 AnimatedBoolean.internal_() { }
714 716
715 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 717 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
718 int get hashCode => unwrap_jso(this).hashCode;
716 719
717 @DomName('SVGAnimatedBoolean.animVal') 720 @DomName('SVGAnimatedBoolean.animVal')
718 @DocsEditable() 721 @DocsEditable()
719 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un wrap_jso(this)); 722 bool get animVal => _blink.BlinkSVGAnimatedBoolean.instance.animVal_Getter_(un wrap_jso(this));
720 723
721 @DomName('SVGAnimatedBoolean.baseVal') 724 @DomName('SVGAnimatedBoolean.baseVal')
722 @DocsEditable() 725 @DocsEditable()
723 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un wrap_jso(this)); 726 bool get baseVal => _blink.BlinkSVGAnimatedBoolean.instance.baseVal_Getter_(un wrap_jso(this));
724 727
725 @DomName('SVGAnimatedBoolean.baseVal') 728 @DomName('SVGAnimatedBoolean.baseVal')
(...skipping 21 matching lines...) Expand all
747 750
748 js.JsObject blink_jsObject = null; 751 js.JsObject blink_jsObject = null;
749 752
750 factory AnimatedEnumeration._internalWrap() { 753 factory AnimatedEnumeration._internalWrap() {
751 return new AnimatedEnumeration.internal_(); 754 return new AnimatedEnumeration.internal_();
752 } 755 }
753 756
754 AnimatedEnumeration.internal_() { } 757 AnimatedEnumeration.internal_() { }
755 758
756 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 759 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
760 int get hashCode => unwrap_jso(this).hashCode;
757 761
758 @DomName('SVGAnimatedEnumeration.animVal') 762 @DomName('SVGAnimatedEnumeration.animVal')
759 @DocsEditable() 763 @DocsEditable()
760 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_ (unwrap_jso(this)); 764 int get animVal => _blink.BlinkSVGAnimatedEnumeration.instance.animVal_Getter_ (unwrap_jso(this));
761 765
762 @DomName('SVGAnimatedEnumeration.baseVal') 766 @DomName('SVGAnimatedEnumeration.baseVal')
763 @DocsEditable() 767 @DocsEditable()
764 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_ (unwrap_jso(this)); 768 int get baseVal => _blink.BlinkSVGAnimatedEnumeration.instance.baseVal_Getter_ (unwrap_jso(this));
765 769
766 @DomName('SVGAnimatedEnumeration.baseVal') 770 @DomName('SVGAnimatedEnumeration.baseVal')
(...skipping 21 matching lines...) Expand all
788 792
789 js.JsObject blink_jsObject = null; 793 js.JsObject blink_jsObject = null;
790 794
791 factory AnimatedInteger._internalWrap() { 795 factory AnimatedInteger._internalWrap() {
792 return new AnimatedInteger.internal_(); 796 return new AnimatedInteger.internal_();
793 } 797 }
794 798
795 AnimatedInteger.internal_() { } 799 AnimatedInteger.internal_() { }
796 800
797 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 801 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
802 int get hashCode => unwrap_jso(this).hashCode;
798 803
799 @DomName('SVGAnimatedInteger.animVal') 804 @DomName('SVGAnimatedInteger.animVal')
800 @DocsEditable() 805 @DocsEditable()
801 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw rap_jso(this)); 806 int get animVal => _blink.BlinkSVGAnimatedInteger.instance.animVal_Getter_(unw rap_jso(this));
802 807
803 @DomName('SVGAnimatedInteger.baseVal') 808 @DomName('SVGAnimatedInteger.baseVal')
804 @DocsEditable() 809 @DocsEditable()
805 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw rap_jso(this)); 810 int get baseVal => _blink.BlinkSVGAnimatedInteger.instance.baseVal_Getter_(unw rap_jso(this));
806 811
807 @DomName('SVGAnimatedInteger.baseVal') 812 @DomName('SVGAnimatedInteger.baseVal')
(...skipping 21 matching lines...) Expand all
829 834
830 js.JsObject blink_jsObject = null; 835 js.JsObject blink_jsObject = null;
831 836
832 factory AnimatedLength._internalWrap() { 837 factory AnimatedLength._internalWrap() {
833 return new AnimatedLength.internal_(); 838 return new AnimatedLength.internal_();
834 } 839 }
835 840
836 AnimatedLength.internal_() { } 841 AnimatedLength.internal_() { }
837 842
838 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 843 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
844 int get hashCode => unwrap_jso(this).hashCode;
839 845
840 @DomName('SVGAnimatedLength.animVal') 846 @DomName('SVGAnimatedLength.animVal')
841 @DocsEditable() 847 @DocsEditable()
842 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_ Getter_(unwrap_jso(this))); 848 Length get animVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.animVal_ Getter_(unwrap_jso(this)));
843 849
844 @DomName('SVGAnimatedLength.baseVal') 850 @DomName('SVGAnimatedLength.baseVal')
845 @DocsEditable() 851 @DocsEditable()
846 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_ Getter_(unwrap_jso(this))); 852 Length get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLength.instance.baseVal_ Getter_(unwrap_jso(this)));
847 853
848 } 854 }
(...skipping 17 matching lines...) Expand all
866 872
867 js.JsObject blink_jsObject = null; 873 js.JsObject blink_jsObject = null;
868 874
869 factory AnimatedLengthList._internalWrap() { 875 factory AnimatedLengthList._internalWrap() {
870 return new AnimatedLengthList.internal_(); 876 return new AnimatedLengthList.internal_();
871 } 877 }
872 878
873 AnimatedLengthList.internal_() { } 879 AnimatedLengthList.internal_() { }
874 880
875 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 881 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
882 int get hashCode => unwrap_jso(this).hashCode;
876 883
877 @DomName('SVGAnimatedLengthList.animVal') 884 @DomName('SVGAnimatedLengthList.animVal')
878 @DocsEditable() 885 @DocsEditable()
879 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance. animVal_Getter_(unwrap_jso(this))); 886 LengthList get animVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance. animVal_Getter_(unwrap_jso(this)));
880 887
881 @DomName('SVGAnimatedLengthList.baseVal') 888 @DomName('SVGAnimatedLengthList.baseVal')
882 @DocsEditable() 889 @DocsEditable()
883 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance. baseVal_Getter_(unwrap_jso(this))); 890 LengthList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedLengthList.instance. baseVal_Getter_(unwrap_jso(this)));
884 891
885 } 892 }
(...skipping 17 matching lines...) Expand all
903 910
904 js.JsObject blink_jsObject = null; 911 js.JsObject blink_jsObject = null;
905 912
906 factory AnimatedNumber._internalWrap() { 913 factory AnimatedNumber._internalWrap() {
907 return new AnimatedNumber.internal_(); 914 return new AnimatedNumber.internal_();
908 } 915 }
909 916
910 AnimatedNumber.internal_() { } 917 AnimatedNumber.internal_() { }
911 918
912 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 919 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
920 int get hashCode => unwrap_jso(this).hashCode;
913 921
914 @DomName('SVGAnimatedNumber.animVal') 922 @DomName('SVGAnimatedNumber.animVal')
915 @DocsEditable() 923 @DocsEditable()
916 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(u nwrap_jso(this)); 924 double get animVal => _blink.BlinkSVGAnimatedNumber.instance.animVal_Getter_(u nwrap_jso(this));
917 925
918 @DomName('SVGAnimatedNumber.baseVal') 926 @DomName('SVGAnimatedNumber.baseVal')
919 @DocsEditable() 927 @DocsEditable()
920 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr ap_jso(this)); 928 num get baseVal => _blink.BlinkSVGAnimatedNumber.instance.baseVal_Getter_(unwr ap_jso(this));
921 929
922 @DomName('SVGAnimatedNumber.baseVal') 930 @DomName('SVGAnimatedNumber.baseVal')
(...skipping 21 matching lines...) Expand all
944 952
945 js.JsObject blink_jsObject = null; 953 js.JsObject blink_jsObject = null;
946 954
947 factory AnimatedNumberList._internalWrap() { 955 factory AnimatedNumberList._internalWrap() {
948 return new AnimatedNumberList.internal_(); 956 return new AnimatedNumberList.internal_();
949 } 957 }
950 958
951 AnimatedNumberList.internal_() { } 959 AnimatedNumberList.internal_() { }
952 960
953 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 961 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
962 int get hashCode => unwrap_jso(this).hashCode;
954 963
955 @DomName('SVGAnimatedNumberList.animVal') 964 @DomName('SVGAnimatedNumberList.animVal')
956 @DocsEditable() 965 @DocsEditable()
957 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance. animVal_Getter_(unwrap_jso(this))); 966 NumberList get animVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance. animVal_Getter_(unwrap_jso(this)));
958 967
959 @DomName('SVGAnimatedNumberList.baseVal') 968 @DomName('SVGAnimatedNumberList.baseVal')
960 @DocsEditable() 969 @DocsEditable()
961 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance. baseVal_Getter_(unwrap_jso(this))); 970 NumberList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedNumberList.instance. baseVal_Getter_(unwrap_jso(this)));
962 971
963 } 972 }
(...skipping 17 matching lines...) Expand all
981 990
982 js.JsObject blink_jsObject = null; 991 js.JsObject blink_jsObject = null;
983 992
984 factory AnimatedPreserveAspectRatio._internalWrap() { 993 factory AnimatedPreserveAspectRatio._internalWrap() {
985 return new AnimatedPreserveAspectRatio.internal_(); 994 return new AnimatedPreserveAspectRatio.internal_();
986 } 995 }
987 996
988 AnimatedPreserveAspectRatio.internal_() { } 997 AnimatedPreserveAspectRatio.internal_() { }
989 998
990 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 999 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1000 int get hashCode => unwrap_jso(this).hashCode;
991 1001
992 @DomName('SVGAnimatedPreserveAspectRatio.animVal') 1002 @DomName('SVGAnimatedPreserveAspectRatio.animVal')
993 @DocsEditable() 1003 @DocsEditable()
994 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp ectRatio.instance.animVal_Getter_(unwrap_jso(this))); 1004 PreserveAspectRatio get animVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp ectRatio.instance.animVal_Getter_(unwrap_jso(this)));
995 1005
996 @DomName('SVGAnimatedPreserveAspectRatio.baseVal') 1006 @DomName('SVGAnimatedPreserveAspectRatio.baseVal')
997 @DocsEditable() 1007 @DocsEditable()
998 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp ectRatio.instance.baseVal_Getter_(unwrap_jso(this))); 1008 PreserveAspectRatio get baseVal => wrap_jso(_blink.BlinkSVGAnimatedPreserveAsp ectRatio.instance.baseVal_Getter_(unwrap_jso(this)));
999 1009
1000 } 1010 }
(...skipping 17 matching lines...) Expand all
1018 1028
1019 js.JsObject blink_jsObject = null; 1029 js.JsObject blink_jsObject = null;
1020 1030
1021 factory AnimatedRect._internalWrap() { 1031 factory AnimatedRect._internalWrap() {
1022 return new AnimatedRect.internal_(); 1032 return new AnimatedRect.internal_();
1023 } 1033 }
1024 1034
1025 AnimatedRect.internal_() { } 1035 AnimatedRect.internal_() { }
1026 1036
1027 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1037 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1038 int get hashCode => unwrap_jso(this).hashCode;
1028 1039
1029 @DomName('SVGAnimatedRect.animVal') 1040 @DomName('SVGAnimatedRect.animVal')
1030 @DocsEditable() 1041 @DocsEditable()
1031 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett er_(unwrap_jso(this))); 1042 Rect get animVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.animVal_Gett er_(unwrap_jso(this)));
1032 1043
1033 @DomName('SVGAnimatedRect.baseVal') 1044 @DomName('SVGAnimatedRect.baseVal')
1034 @DocsEditable() 1045 @DocsEditable()
1035 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett er_(unwrap_jso(this))); 1046 Rect get baseVal => wrap_jso(_blink.BlinkSVGAnimatedRect.instance.baseVal_Gett er_(unwrap_jso(this)));
1036 1047
1037 } 1048 }
(...skipping 17 matching lines...) Expand all
1055 1066
1056 js.JsObject blink_jsObject = null; 1067 js.JsObject blink_jsObject = null;
1057 1068
1058 factory AnimatedString._internalWrap() { 1069 factory AnimatedString._internalWrap() {
1059 return new AnimatedString.internal_(); 1070 return new AnimatedString.internal_();
1060 } 1071 }
1061 1072
1062 AnimatedString.internal_() { } 1073 AnimatedString.internal_() { }
1063 1074
1064 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1075 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1076 int get hashCode => unwrap_jso(this).hashCode;
1065 1077
1066 @DomName('SVGAnimatedString.animVal') 1078 @DomName('SVGAnimatedString.animVal')
1067 @DocsEditable() 1079 @DocsEditable()
1068 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u nwrap_jso(this)); 1080 String get animVal => _blink.BlinkSVGAnimatedString.instance.animVal_Getter_(u nwrap_jso(this));
1069 1081
1070 @DomName('SVGAnimatedString.baseVal') 1082 @DomName('SVGAnimatedString.baseVal')
1071 @DocsEditable() 1083 @DocsEditable()
1072 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u nwrap_jso(this)); 1084 String get baseVal => _blink.BlinkSVGAnimatedString.instance.baseVal_Getter_(u nwrap_jso(this));
1073 1085
1074 @DomName('SVGAnimatedString.baseVal') 1086 @DomName('SVGAnimatedString.baseVal')
(...skipping 21 matching lines...) Expand all
1096 1108
1097 js.JsObject blink_jsObject = null; 1109 js.JsObject blink_jsObject = null;
1098 1110
1099 factory AnimatedTransformList._internalWrap() { 1111 factory AnimatedTransformList._internalWrap() {
1100 return new AnimatedTransformList.internal_(); 1112 return new AnimatedTransformList.internal_();
1101 } 1113 }
1102 1114
1103 AnimatedTransformList.internal_() { } 1115 AnimatedTransformList.internal_() { }
1104 1116
1105 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 1117 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
1118 int get hashCode => unwrap_jso(this).hashCode;
1106 1119
1107 @DomName('SVGAnimatedTransformList.animVal') 1120 @DomName('SVGAnimatedTransformList.animVal')
1108 @DocsEditable() 1121 @DocsEditable()
1109 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins tance.animVal_Getter_(unwrap_jso(this))); 1122 TransformList get animVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins tance.animVal_Getter_(unwrap_jso(this)));
1110 1123
1111 @DomName('SVGAnimatedTransformList.baseVal') 1124 @DomName('SVGAnimatedTransformList.baseVal')
1112 @DocsEditable() 1125 @DocsEditable()
1113 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins tance.baseVal_Getter_(unwrap_jso(this))); 1126 TransformList get baseVal => wrap_jso(_blink.BlinkSVGAnimatedTransformList.ins tance.baseVal_Getter_(unwrap_jso(this)));
1114 1127
1115 } 1128 }
(...skipping 2234 matching lines...) Expand 10 before | Expand all | Expand 10 after
3350 3363
3351 js.JsObject blink_jsObject = null; 3364 js.JsObject blink_jsObject = null;
3352 3365
3353 factory FilterPrimitiveStandardAttributes._internalWrap() { 3366 factory FilterPrimitiveStandardAttributes._internalWrap() {
3354 return new FilterPrimitiveStandardAttributes.internal_(); 3367 return new FilterPrimitiveStandardAttributes.internal_();
3355 } 3368 }
3356 3369
3357 FilterPrimitiveStandardAttributes.internal_() { } 3370 FilterPrimitiveStandardAttributes.internal_() { }
3358 3371
3359 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3372 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3373 int get hashCode => unwrap_jso(this).hashCode;
3360 3374
3361 @DomName('SVGFilterPrimitiveStandardAttributes.height') 3375 @DomName('SVGFilterPrimitiveStandardAttributes.height')
3362 @DocsEditable() 3376 @DocsEditable()
3363 AnimatedLength get height; 3377 AnimatedLength get height;
3364 3378
3365 @DomName('SVGFilterPrimitiveStandardAttributes.result') 3379 @DomName('SVGFilterPrimitiveStandardAttributes.result')
3366 @DocsEditable() 3380 @DocsEditable()
3367 AnimatedString get result; 3381 AnimatedString get result;
3368 3382
3369 @DomName('SVGFilterPrimitiveStandardAttributes.width') 3383 @DomName('SVGFilterPrimitiveStandardAttributes.width')
(...skipping 29 matching lines...) Expand all
3399 3413
3400 js.JsObject blink_jsObject = null; 3414 js.JsObject blink_jsObject = null;
3401 3415
3402 factory FitToViewBox._internalWrap() { 3416 factory FitToViewBox._internalWrap() {
3403 return new FitToViewBox.internal_(); 3417 return new FitToViewBox.internal_();
3404 } 3418 }
3405 3419
3406 FitToViewBox.internal_() { } 3420 FitToViewBox.internal_() { }
3407 3421
3408 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3422 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3423 int get hashCode => unwrap_jso(this).hashCode;
3409 3424
3410 @DomName('SVGFitToViewBox.preserveAspectRatio') 3425 @DomName('SVGFitToViewBox.preserveAspectRatio')
3411 @DocsEditable() 3426 @DocsEditable()
3412 AnimatedPreserveAspectRatio get preserveAspectRatio; 3427 AnimatedPreserveAspectRatio get preserveAspectRatio;
3413 3428
3414 @DomName('SVGFitToViewBox.viewBox') 3429 @DomName('SVGFitToViewBox.viewBox')
3415 @DocsEditable() 3430 @DocsEditable()
3416 AnimatedRect get viewBox; 3431 AnimatedRect get viewBox;
3417 3432
3418 } 3433 }
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
3724 3739
3725 js.JsObject blink_jsObject = null; 3740 js.JsObject blink_jsObject = null;
3726 3741
3727 factory Length._internalWrap() { 3742 factory Length._internalWrap() {
3728 return new Length.internal_(); 3743 return new Length.internal_();
3729 } 3744 }
3730 3745
3731 Length.internal_() { } 3746 Length.internal_() { }
3732 3747
3733 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3748 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3749 int get hashCode => unwrap_jso(this).hashCode;
3734 3750
3735 @DomName('SVGLength.SVG_LENGTHTYPE_CM') 3751 @DomName('SVGLength.SVG_LENGTHTYPE_CM')
3736 @DocsEditable() 3752 @DocsEditable()
3737 static const int SVG_LENGTHTYPE_CM = 6; 3753 static const int SVG_LENGTHTYPE_CM = 6;
3738 3754
3739 @DomName('SVGLength.SVG_LENGTHTYPE_EMS') 3755 @DomName('SVGLength.SVG_LENGTHTYPE_EMS')
3740 @DocsEditable() 3756 @DocsEditable()
3741 static const int SVG_LENGTHTYPE_EMS = 3; 3757 static const int SVG_LENGTHTYPE_EMS = 3;
3742 3758
3743 @DomName('SVGLength.SVG_LENGTHTYPE_EXS') 3759 @DomName('SVGLength.SVG_LENGTHTYPE_EXS')
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
3833 3849
3834 js.JsObject blink_jsObject = null; 3850 js.JsObject blink_jsObject = null;
3835 3851
3836 factory LengthList._internalWrap() { 3852 factory LengthList._internalWrap() {
3837 return new LengthList.internal_(); 3853 return new LengthList.internal_();
3838 } 3854 }
3839 3855
3840 LengthList.internal_() { } 3856 LengthList.internal_() { }
3841 3857
3842 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 3858 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
3859 int get hashCode => unwrap_jso(this).hashCode;
3843 3860
3844 @DomName('SVGLengthList.length') 3861 @DomName('SVGLengthList.length')
3845 @DocsEditable() 3862 @DocsEditable()
3846 @Experimental() // untriaged 3863 @Experimental() // untriaged
3847 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso (this)); 3864 int get length => _blink.BlinkSVGLengthList.instance.length_Getter_(unwrap_jso (this));
3848 3865
3849 @DomName('SVGLengthList.numberOfItems') 3866 @DomName('SVGLengthList.numberOfItems')
3850 @DocsEditable() 3867 @DocsEditable()
3851 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett er_(unwrap_jso(this)); 3868 int get numberOfItems => _blink.BlinkSVGLengthList.instance.numberOfItems_Gett er_(unwrap_jso(this));
3852 3869
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
4236 4253
4237 js.JsObject blink_jsObject = null; 4254 js.JsObject blink_jsObject = null;
4238 4255
4239 factory Matrix._internalWrap() { 4256 factory Matrix._internalWrap() {
4240 return new Matrix.internal_(); 4257 return new Matrix.internal_();
4241 } 4258 }
4242 4259
4243 Matrix.internal_() { } 4260 Matrix.internal_() { }
4244 4261
4245 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 4262 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
4263 int get hashCode => unwrap_jso(this).hashCode;
4246 4264
4247 @DomName('SVGMatrix.a') 4265 @DomName('SVGMatrix.a')
4248 @DocsEditable() 4266 @DocsEditable()
4249 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this)); 4267 num get a => _blink.BlinkSVGMatrix.instance.a_Getter_(unwrap_jso(this));
4250 4268
4251 @DomName('SVGMatrix.a') 4269 @DomName('SVGMatrix.a')
4252 @DocsEditable() 4270 @DocsEditable()
4253 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(t his), value); 4271 void set a(num value) => _blink.BlinkSVGMatrix.instance.a_Setter_(unwrap_jso(t his), value);
4254 4272
4255 @DomName('SVGMatrix.b') 4273 @DomName('SVGMatrix.b')
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
4390 4408
4391 js.JsObject blink_jsObject = null; 4409 js.JsObject blink_jsObject = null;
4392 4410
4393 factory Number._internalWrap() { 4411 factory Number._internalWrap() {
4394 return new Number.internal_(); 4412 return new Number.internal_();
4395 } 4413 }
4396 4414
4397 Number.internal_() { } 4415 Number.internal_() { }
4398 4416
4399 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 4417 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
4418 int get hashCode => unwrap_jso(this).hashCode;
4400 4419
4401 @DomName('SVGNumber.value') 4420 @DomName('SVGNumber.value')
4402 @DocsEditable() 4421 @DocsEditable()
4403 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this) ); 4422 num get value => _blink.BlinkSVGNumber.instance.value_Getter_(unwrap_jso(this) );
4404 4423
4405 @DomName('SVGNumber.value') 4424 @DomName('SVGNumber.value')
4406 @DocsEditable() 4425 @DocsEditable()
4407 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwr ap_jso(this), value); 4426 void set value(num value) => _blink.BlinkSVGNumber.instance.value_Setter_(unwr ap_jso(this), value);
4408 4427
4409 } 4428 }
(...skipping 17 matching lines...) Expand all
4427 4446
4428 js.JsObject blink_jsObject = null; 4447 js.JsObject blink_jsObject = null;
4429 4448
4430 factory NumberList._internalWrap() { 4449 factory NumberList._internalWrap() {
4431 return new NumberList.internal_(); 4450 return new NumberList.internal_();
4432 } 4451 }
4433 4452
4434 NumberList.internal_() { } 4453 NumberList.internal_() { }
4435 4454
4436 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 4455 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
4456 int get hashCode => unwrap_jso(this).hashCode;
4437 4457
4438 @DomName('SVGNumberList.length') 4458 @DomName('SVGNumberList.length')
4439 @DocsEditable() 4459 @DocsEditable()
4440 @Experimental() // untriaged 4460 @Experimental() // untriaged
4441 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso (this)); 4461 int get length => _blink.BlinkSVGNumberList.instance.length_Getter_(unwrap_jso (this));
4442 4462
4443 @DomName('SVGNumberList.numberOfItems') 4463 @DomName('SVGNumberList.numberOfItems')
4444 @DocsEditable() 4464 @DocsEditable()
4445 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett er_(unwrap_jso(this)); 4465 int get numberOfItems => _blink.BlinkSVGNumberList.instance.numberOfItems_Gett er_(unwrap_jso(this));
4446 4466
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
4687 4707
4688 js.JsObject blink_jsObject = null; 4708 js.JsObject blink_jsObject = null;
4689 4709
4690 factory PathSeg._internalWrap() { 4710 factory PathSeg._internalWrap() {
4691 return new PathSeg.internal_(); 4711 return new PathSeg.internal_();
4692 } 4712 }
4693 4713
4694 PathSeg.internal_() { } 4714 PathSeg.internal_() { }
4695 4715
4696 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 4716 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
4717 int get hashCode => unwrap_jso(this).hashCode;
4697 4718
4698 @DomName('SVGPathSeg.PATHSEG_ARC_ABS') 4719 @DomName('SVGPathSeg.PATHSEG_ARC_ABS')
4699 @DocsEditable() 4720 @DocsEditable()
4700 static const int PATHSEG_ARC_ABS = 10; 4721 static const int PATHSEG_ARC_ABS = 10;
4701 4722
4702 @DomName('SVGPathSeg.PATHSEG_ARC_REL') 4723 @DomName('SVGPathSeg.PATHSEG_ARC_REL')
4703 @DocsEditable() 4724 @DocsEditable()
4704 static const int PATHSEG_ARC_REL = 11; 4725 static const int PATHSEG_ARC_REL = 11;
4705 4726
4706 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH') 4727 @DomName('SVGPathSeg.PATHSEG_CLOSEPATH')
(...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after
5695 5716
5696 js.JsObject blink_jsObject = null; 5717 js.JsObject blink_jsObject = null;
5697 5718
5698 factory PathSegList._internalWrap() { 5719 factory PathSegList._internalWrap() {
5699 return new PathSegList.internal_(); 5720 return new PathSegList.internal_();
5700 } 5721 }
5701 5722
5702 PathSegList.internal_() { } 5723 PathSegList.internal_() { }
5703 5724
5704 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 5725 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
5726 int get hashCode => unwrap_jso(this).hashCode;
5705 5727
5706 @DomName('SVGPathSegList.length') 5728 @DomName('SVGPathSegList.length')
5707 @DocsEditable() 5729 @DocsEditable()
5708 @Experimental() // untriaged 5730 @Experimental() // untriaged
5709 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js o(this)); 5731 int get length => _blink.BlinkSVGPathSegList.instance.length_Getter_(unwrap_js o(this));
5710 5732
5711 @DomName('SVGPathSegList.numberOfItems') 5733 @DomName('SVGPathSegList.numberOfItems')
5712 @DocsEditable() 5734 @DocsEditable()
5713 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get ter_(unwrap_jso(this)); 5735 int get numberOfItems => _blink.BlinkSVGPathSegList.instance.numberOfItems_Get ter_(unwrap_jso(this));
5714 5736
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
5989 6011
5990 js.JsObject blink_jsObject = null; 6012 js.JsObject blink_jsObject = null;
5991 6013
5992 factory Point._internalWrap() { 6014 factory Point._internalWrap() {
5993 return new Point.internal_(); 6015 return new Point.internal_();
5994 } 6016 }
5995 6017
5996 Point.internal_() { } 6018 Point.internal_() { }
5997 6019
5998 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 6020 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6021 int get hashCode => unwrap_jso(this).hashCode;
5999 6022
6000 @DomName('SVGPoint.x') 6023 @DomName('SVGPoint.x')
6001 @DocsEditable() 6024 @DocsEditable()
6002 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this)); 6025 num get x => _blink.BlinkSVGPoint.instance.x_Getter_(unwrap_jso(this));
6003 6026
6004 @DomName('SVGPoint.x') 6027 @DomName('SVGPoint.x')
6005 @DocsEditable() 6028 @DocsEditable()
6006 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(th is), value); 6029 void set x(num value) => _blink.BlinkSVGPoint.instance.x_Setter_(unwrap_jso(th is), value);
6007 6030
6008 @DomName('SVGPoint.y') 6031 @DomName('SVGPoint.y')
(...skipping 29 matching lines...) Expand all
6038 6061
6039 js.JsObject blink_jsObject = null; 6062 js.JsObject blink_jsObject = null;
6040 6063
6041 factory PointList._internalWrap() { 6064 factory PointList._internalWrap() {
6042 return new PointList.internal_(); 6065 return new PointList.internal_();
6043 } 6066 }
6044 6067
6045 PointList.internal_() { } 6068 PointList.internal_() { }
6046 6069
6047 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 6070 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6071 int get hashCode => unwrap_jso(this).hashCode;
6048 6072
6049 @DomName('SVGPointList.length') 6073 @DomName('SVGPointList.length')
6050 @DocsEditable() 6074 @DocsEditable()
6051 @Experimental() // untriaged 6075 @Experimental() // untriaged
6052 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso( this)); 6076 int get length => _blink.BlinkSVGPointList.instance.length_Getter_(unwrap_jso( this));
6053 6077
6054 @DomName('SVGPointList.numberOfItems') 6078 @DomName('SVGPointList.numberOfItems')
6055 @DocsEditable() 6079 @DocsEditable()
6056 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette r_(unwrap_jso(this)); 6080 int get numberOfItems => _blink.BlinkSVGPointList.instance.numberOfItems_Gette r_(unwrap_jso(this));
6057 6081
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
6199 6223
6200 js.JsObject blink_jsObject = null; 6224 js.JsObject blink_jsObject = null;
6201 6225
6202 factory PreserveAspectRatio._internalWrap() { 6226 factory PreserveAspectRatio._internalWrap() {
6203 return new PreserveAspectRatio.internal_(); 6227 return new PreserveAspectRatio.internal_();
6204 } 6228 }
6205 6229
6206 PreserveAspectRatio.internal_() { } 6230 PreserveAspectRatio.internal_() { }
6207 6231
6208 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 6232 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6233 int get hashCode => unwrap_jso(this).hashCode;
6209 6234
6210 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET') 6235 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET')
6211 @DocsEditable() 6236 @DocsEditable()
6212 static const int SVG_MEETORSLICE_MEET = 1; 6237 static const int SVG_MEETORSLICE_MEET = 1;
6213 6238
6214 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE') 6239 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_SLICE')
6215 @DocsEditable() 6240 @DocsEditable()
6216 static const int SVG_MEETORSLICE_SLICE = 2; 6241 static const int SVG_MEETORSLICE_SLICE = 2;
6217 6242
6218 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN') 6243 @DomName('SVGPreserveAspectRatio.SVG_MEETORSLICE_UNKNOWN')
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
6361 6386
6362 js.JsObject blink_jsObject = null; 6387 js.JsObject blink_jsObject = null;
6363 6388
6364 factory Rect._internalWrap() { 6389 factory Rect._internalWrap() {
6365 return new Rect.internal_(); 6390 return new Rect.internal_();
6366 } 6391 }
6367 6392
6368 Rect.internal_() { } 6393 Rect.internal_() { }
6369 6394
6370 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 6395 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6396 int get hashCode => unwrap_jso(this).hashCode;
6371 6397
6372 @DomName('SVGRect.height') 6398 @DomName('SVGRect.height')
6373 @DocsEditable() 6399 @DocsEditable()
6374 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this) ); 6400 num get height => _blink.BlinkSVGRect.instance.height_Getter_(unwrap_jso(this) );
6375 6401
6376 @DomName('SVGRect.height') 6402 @DomName('SVGRect.height')
6377 @DocsEditable() 6403 @DocsEditable()
6378 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwr ap_jso(this), value); 6404 void set height(num value) => _blink.BlinkSVGRect.instance.height_Setter_(unwr ap_jso(this), value);
6379 6405
6380 @DomName('SVGRect.width') 6406 @DomName('SVGRect.width')
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
6483 6509
6484 js.JsObject blink_jsObject = null; 6510 js.JsObject blink_jsObject = null;
6485 6511
6486 factory RenderingIntent._internalWrap() { 6512 factory RenderingIntent._internalWrap() {
6487 return new RenderingIntent.internal_(); 6513 return new RenderingIntent.internal_();
6488 } 6514 }
6489 6515
6490 RenderingIntent.internal_() { } 6516 RenderingIntent.internal_() { }
6491 6517
6492 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 6518 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6519 int get hashCode => unwrap_jso(this).hashCode;
6493 6520
6494 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC') 6521 @DomName('SVGRenderingIntent.RENDERING_INTENT_ABSOLUTE_COLORIMETRIC')
6495 @DocsEditable() 6522 @DocsEditable()
6496 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; 6523 static const int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5;
6497 6524
6498 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO') 6525 @DomName('SVGRenderingIntent.RENDERING_INTENT_AUTO')
6499 @DocsEditable() 6526 @DocsEditable()
6500 static const int RENDERING_INTENT_AUTO = 1; 6527 static const int RENDERING_INTENT_AUTO = 1;
6501 6528
6502 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL') 6529 @DomName('SVGRenderingIntent.RENDERING_INTENT_PERCEPTUAL')
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
6669 6696
6670 js.JsObject blink_jsObject = null; 6697 js.JsObject blink_jsObject = null;
6671 6698
6672 factory StringList._internalWrap() { 6699 factory StringList._internalWrap() {
6673 return new StringList.internal_(); 6700 return new StringList.internal_();
6674 } 6701 }
6675 6702
6676 StringList.internal_() { } 6703 StringList.internal_() { }
6677 6704
6678 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 6705 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
6706 int get hashCode => unwrap_jso(this).hashCode;
6679 6707
6680 @DomName('SVGStringList.length') 6708 @DomName('SVGStringList.length')
6681 @DocsEditable() 6709 @DocsEditable()
6682 @Experimental() // untriaged 6710 @Experimental() // untriaged
6683 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso (this)); 6711 int get length => _blink.BlinkSVGStringList.instance.length_Getter_(unwrap_jso (this));
6684 6712
6685 @DomName('SVGStringList.numberOfItems') 6713 @DomName('SVGStringList.numberOfItems')
6686 @DocsEditable() 6714 @DocsEditable()
6687 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett er_(unwrap_jso(this)); 6715 int get numberOfItems => _blink.BlinkSVGStringList.instance.numberOfItems_Gett er_(unwrap_jso(this));
6688 6716
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
7923 7951
7924 js.JsObject blink_jsObject = null; 7952 js.JsObject blink_jsObject = null;
7925 7953
7926 factory Tests._internalWrap() { 7954 factory Tests._internalWrap() {
7927 return new Tests.internal_(); 7955 return new Tests.internal_();
7928 } 7956 }
7929 7957
7930 Tests.internal_() { } 7958 Tests.internal_() { }
7931 7959
7932 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 7960 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
7961 int get hashCode => unwrap_jso(this).hashCode;
7933 7962
7934 @DomName('SVGTests.requiredExtensions') 7963 @DomName('SVGTests.requiredExtensions')
7935 @DocsEditable() 7964 @DocsEditable()
7936 StringList get requiredExtensions; 7965 StringList get requiredExtensions;
7937 7966
7938 @DomName('SVGTests.requiredFeatures') 7967 @DomName('SVGTests.requiredFeatures')
7939 @DocsEditable() 7968 @DocsEditable()
7940 StringList get requiredFeatures; 7969 StringList get requiredFeatures;
7941 7970
7942 @DomName('SVGTests.systemLanguage') 7971 @DomName('SVGTests.systemLanguage')
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
8257 8286
8258 js.JsObject blink_jsObject = null; 8287 js.JsObject blink_jsObject = null;
8259 8288
8260 factory Transform._internalWrap() { 8289 factory Transform._internalWrap() {
8261 return new Transform.internal_(); 8290 return new Transform.internal_();
8262 } 8291 }
8263 8292
8264 Transform.internal_() { } 8293 Transform.internal_() { }
8265 8294
8266 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 8295 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8296 int get hashCode => unwrap_jso(this).hashCode;
8267 8297
8268 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX') 8298 @DomName('SVGTransform.SVG_TRANSFORM_MATRIX')
8269 @DocsEditable() 8299 @DocsEditable()
8270 static const int SVG_TRANSFORM_MATRIX = 1; 8300 static const int SVG_TRANSFORM_MATRIX = 1;
8271 8301
8272 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE') 8302 @DomName('SVGTransform.SVG_TRANSFORM_ROTATE')
8273 @DocsEditable() 8303 @DocsEditable()
8274 static const int SVG_TRANSFORM_ROTATE = 4; 8304 static const int SVG_TRANSFORM_ROTATE = 4;
8275 8305
8276 @DomName('SVGTransform.SVG_TRANSFORM_SCALE') 8306 @DomName('SVGTransform.SVG_TRANSFORM_SCALE')
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
8350 8380
8351 js.JsObject blink_jsObject = null; 8381 js.JsObject blink_jsObject = null;
8352 8382
8353 factory TransformList._internalWrap() { 8383 factory TransformList._internalWrap() {
8354 return new TransformList.internal_(); 8384 return new TransformList.internal_();
8355 } 8385 }
8356 8386
8357 TransformList.internal_() { } 8387 TransformList.internal_() { }
8358 8388
8359 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 8389 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8390 int get hashCode => unwrap_jso(this).hashCode;
8360 8391
8361 @DomName('SVGTransformList.length') 8392 @DomName('SVGTransformList.length')
8362 @DocsEditable() 8393 @DocsEditable()
8363 @Experimental() // untriaged 8394 @Experimental() // untriaged
8364 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_ jso(this)); 8395 int get length => _blink.BlinkSVGTransformList.instance.length_Getter_(unwrap_ jso(this));
8365 8396
8366 @DomName('SVGTransformList.numberOfItems') 8397 @DomName('SVGTransformList.numberOfItems')
8367 @DocsEditable() 8398 @DocsEditable()
8368 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G etter_(unwrap_jso(this)); 8399 int get numberOfItems => _blink.BlinkSVGTransformList.instance.numberOfItems_G etter_(unwrap_jso(this));
8369 8400
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
8473 8504
8474 js.JsObject blink_jsObject = null; 8505 js.JsObject blink_jsObject = null;
8475 8506
8476 factory UnitTypes._internalWrap() { 8507 factory UnitTypes._internalWrap() {
8477 return new UnitTypes.internal_(); 8508 return new UnitTypes.internal_();
8478 } 8509 }
8479 8510
8480 UnitTypes.internal_() { } 8511 UnitTypes.internal_() { }
8481 8512
8482 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 8513 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8514 int get hashCode => unwrap_jso(this).hashCode;
8483 8515
8484 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX') 8516 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_OBJECTBOUNDINGBOX')
8485 @DocsEditable() 8517 @DocsEditable()
8486 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; 8518 static const int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2;
8487 8519
8488 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN') 8520 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_UNKNOWN')
8489 @DocsEditable() 8521 @DocsEditable()
8490 static const int SVG_UNIT_TYPE_UNKNOWN = 0; 8522 static const int SVG_UNIT_TYPE_UNKNOWN = 0;
8491 8523
8492 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE') 8524 @DomName('SVGUnitTypes.SVG_UNIT_TYPE_USERSPACEONUSE')
(...skipping 21 matching lines...) Expand all
8514 8546
8515 js.JsObject blink_jsObject = null; 8547 js.JsObject blink_jsObject = null;
8516 8548
8517 factory UriReference._internalWrap() { 8549 factory UriReference._internalWrap() {
8518 return new UriReference.internal_(); 8550 return new UriReference.internal_();
8519 } 8551 }
8520 8552
8521 UriReference.internal_() { } 8553 UriReference.internal_() { }
8522 8554
8523 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 8555 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8556 int get hashCode => unwrap_jso(this).hashCode;
8524 8557
8525 @DomName('SVGURIReference.href') 8558 @DomName('SVGURIReference.href')
8526 @DocsEditable() 8559 @DocsEditable()
8527 AnimatedString get href; 8560 AnimatedString get href;
8528 8561
8529 } 8562 }
8530 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 8563 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8531 // for details. All rights reserved. Use of this source code is governed by a 8564 // for details. All rights reserved. Use of this source code is governed by a
8532 // BSD-style license that can be found in the LICENSE file. 8565 // BSD-style license that can be found in the LICENSE file.
8533 8566
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
8661 8694
8662 js.JsObject blink_jsObject = null; 8695 js.JsObject blink_jsObject = null;
8663 8696
8664 factory ViewSpec._internalWrap() { 8697 factory ViewSpec._internalWrap() {
8665 return new ViewSpec.internal_(); 8698 return new ViewSpec.internal_();
8666 } 8699 }
8667 8700
8668 ViewSpec.internal_() { } 8701 ViewSpec.internal_() { }
8669 8702
8670 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 8703 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8704 int get hashCode => unwrap_jso(this).hashCode;
8671 8705
8672 @DomName('SVGViewSpec.preserveAspectRatioString') 8706 @DomName('SVGViewSpec.preserveAspectRatioString')
8673 @DocsEditable() 8707 @DocsEditable()
8674 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese rveAspectRatioString_Getter_(unwrap_jso(this)); 8708 String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.instance.prese rveAspectRatioString_Getter_(unwrap_jso(this));
8675 8709
8676 @DomName('SVGViewSpec.transform') 8710 @DomName('SVGViewSpec.transform')
8677 @DocsEditable() 8711 @DocsEditable()
8678 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans form_Getter_(unwrap_jso(this))); 8712 TransformList get transform => wrap_jso(_blink.BlinkSVGViewSpec.instance.trans form_Getter_(unwrap_jso(this)));
8679 8713
8680 @DomName('SVGViewSpec.transformString') 8714 @DomName('SVGViewSpec.transformString')
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
8734 8768
8735 js.JsObject blink_jsObject = null; 8769 js.JsObject blink_jsObject = null;
8736 8770
8737 factory ZoomAndPan._internalWrap() { 8771 factory ZoomAndPan._internalWrap() {
8738 return new ZoomAndPan.internal_(); 8772 return new ZoomAndPan.internal_();
8739 } 8773 }
8740 8774
8741 ZoomAndPan.internal_() { } 8775 ZoomAndPan.internal_() { }
8742 8776
8743 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other); 8777 bool operator ==(other) => unwrap_jso(other) == unwrap_jso(this) || identical( this, other);
8778 int get hashCode => unwrap_jso(this).hashCode;
8744 8779
8745 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE') 8780 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_DISABLE')
8746 @DocsEditable() 8781 @DocsEditable()
8747 static const int SVG_ZOOMANDPAN_DISABLE = 1; 8782 static const int SVG_ZOOMANDPAN_DISABLE = 1;
8748 8783
8749 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY') 8784 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_MAGNIFY')
8750 @DocsEditable() 8785 @DocsEditable()
8751 static const int SVG_ZOOMANDPAN_MAGNIFY = 2; 8786 static const int SVG_ZOOMANDPAN_MAGNIFY = 2;
8752 8787
8753 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN') 8788 @DomName('SVGZoomAndPan.SVG_ZOOMANDPAN_UNKNOWN')
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
9451 _SVGVKernElement.internal_() : super.internal_(); 9486 _SVGVKernElement.internal_() : super.internal_();
9452 9487
9453 /** 9488 /**
9454 * Constructor instantiated by the DOM when a custom element has been created. 9489 * Constructor instantiated by the DOM when a custom element has been created.
9455 * 9490 *
9456 * This can only be called by subclasses from their created constructor. 9491 * This can only be called by subclasses from their created constructor.
9457 */ 9492 */
9458 _SVGVKernElement.created() : super.created(); 9493 _SVGVKernElement.created() : super.created();
9459 9494
9460 } 9495 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_dartium.dart ('k') | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698