@@ -27,37 +27,59 @@ main() {
2727 Expect .equals (true , throwsTypeError (() => float32x4 / dynamicNull));
2828 Expect .equals (true , throwsTypeError (() => float32x4.lessThan (dynamicNull)));
2929 Expect .equals (
30- true , throwsTypeError (() => float32x4.lessThanOrEqual (dynamicNull)));
30+ true ,
31+ throwsTypeError (() => float32x4.lessThanOrEqual (dynamicNull)),
32+ );
3133 Expect .equals (
32- true , throwsTypeError (() => float32x4.greaterThan (dynamicNull)));
34+ true ,
35+ throwsTypeError (() => float32x4.greaterThan (dynamicNull)),
36+ );
3337 Expect .equals (
34- true , throwsTypeError (() => float32x4.greaterThanOrEqual (dynamicNull)));
38+ true ,
39+ throwsTypeError (() => float32x4.greaterThanOrEqual (dynamicNull)),
40+ );
3541 Expect .equals (true , throwsTypeError (() => float32x4.equal (dynamicNull)));
3642 Expect .equals (true , throwsTypeError (() => float32x4.notEqual (dynamicNull)));
3743 Expect .equals (true , throwsTypeError (() => float32x4.scale (dynamicNull)));
3844 Expect .equals (
39- true , throwsTypeError (() => float32x4.clamp (dynamicNull, float32x4)));
45+ true ,
46+ throwsTypeError (() => float32x4.clamp (dynamicNull, float32x4)),
47+ );
4048 Expect .equals (
41- true , throwsTypeError (() => float32x4.clamp (float32x4, dynamicNull)));
49+ true ,
50+ throwsTypeError (() => float32x4.clamp (float32x4, dynamicNull)),
51+ );
4252 Expect .equals (true , throwsTypeError (() => float32x4.shuffle (dynamicNull)));
43- Expect .equals (true ,
44- throwsTypeError (() => float32x4.shuffleMix (float32x4, dynamicNull)));
4553 Expect .equals (
46- true , throwsTypeError (() => float32x4.shuffleMix (dynamicNull, 0 )));
54+ true ,
55+ throwsTypeError (() => float32x4.shuffleMix (float32x4, dynamicNull)),
56+ );
57+ Expect .equals (
58+ true ,
59+ throwsTypeError (() => float32x4.shuffleMix (dynamicNull, 0 )),
60+ );
4761 Expect .equals (true , throwsTypeError (() => float32x4.withX (dynamicNull)));
4862 Expect .equals (true , throwsTypeError (() => float32x4.withY (dynamicNull)));
4963 Expect .equals (true , throwsTypeError (() => float32x4.withZ (dynamicNull)));
5064 Expect .equals (true , throwsTypeError (() => float32x4.withW (dynamicNull)));
5165 Expect .equals (true , throwsTypeError (() => float32x4.min (dynamicNull)));
5266 Expect .equals (true , throwsTypeError (() => float32x4.max (dynamicNull)));
5367 Expect .equals (
54- true , throwsTypeError (() => Float32x4 (dynamicNull, 0.0 , 0.0 , 0.0 )));
68+ true ,
69+ throwsTypeError (() => Float32x4 (dynamicNull, 0.0 , 0.0 , 0.0 )),
70+ );
5571 Expect .equals (
56- true , throwsTypeError (() => Float32x4 (0.0 , dynamicNull, 0.0 , 0.0 )));
72+ true ,
73+ throwsTypeError (() => Float32x4 (0.0 , dynamicNull, 0.0 , 0.0 )),
74+ );
5775 Expect .equals (
58- true , throwsTypeError (() => Float32x4 (0.0 , 0.0 , dynamicNull, 0.0 )));
76+ true ,
77+ throwsTypeError (() => Float32x4 (0.0 , 0.0 , dynamicNull, 0.0 )),
78+ );
5979 Expect .equals (
60- true , throwsTypeError (() => Float32x4 (0.0 , 0.0 , 0.0 , dynamicNull)));
80+ true ,
81+ throwsTypeError (() => Float32x4 (0.0 , 0.0 , 0.0 , dynamicNull)),
82+ );
6183
6284 // Float32x4.splat
6385 Expect .equals (true , throwsTypeError (() => Float32x4 .splat (dynamicNull)));
@@ -70,9 +92,13 @@ main() {
7092 Expect .equals (true , throwsTypeError (() => float64x2 / dynamicNull));
7193 Expect .equals (true , throwsTypeError (() => float64x2.scale (dynamicNull)));
7294 Expect .equals (
73- true , throwsTypeError (() => float64x2.clamp (dynamicNull, float64x2)));
95+ true ,
96+ throwsTypeError (() => float64x2.clamp (dynamicNull, float64x2)),
97+ );
7498 Expect .equals (
75- true , throwsTypeError (() => float64x2.clamp (float64x2, dynamicNull)));
99+ true ,
100+ throwsTypeError (() => float64x2.clamp (float64x2, dynamicNull)),
101+ );
76102 Expect .equals (true , throwsTypeError (() => float64x2.withX (dynamicNull)));
77103 Expect .equals (true , throwsTypeError (() => float64x2.withY (dynamicNull)));
78104 Expect .equals (true , throwsTypeError (() => Float64x2 (dynamicNull, 0.0 )));
@@ -92,9 +118,13 @@ main() {
92118 Expect .equals (true , throwsTypeError (() => int32x4 | dynamicNull));
93119 Expect .equals (true , throwsTypeError (() => int32x4.shuffle (dynamicNull)));
94120 Expect .equals (
95- true , throwsTypeError (() => int32x4.shuffleMix (int32x4, dynamicNull)));
121+ true ,
122+ throwsTypeError (() => int32x4.shuffleMix (int32x4, dynamicNull)),
123+ );
96124 Expect .equals (
97- true , throwsTypeError (() => int32x4.shuffleMix (dynamicNull, 0 )));
125+ true ,
126+ throwsTypeError (() => int32x4.shuffleMix (dynamicNull, 0 )),
127+ );
98128 Expect .equals (true , throwsTypeError (() => int32x4.withX (dynamicNull)));
99129 Expect .equals (true , throwsTypeError (() => int32x4.withY (dynamicNull)));
100130 Expect .equals (true , throwsTypeError (() => int32x4.withZ (dynamicNull)));
@@ -109,17 +139,29 @@ main() {
109139 Expect .equals (true , throwsTypeError (() => Int32x4 (0 , 0 , dynamicNull, 0 )));
110140 Expect .equals (true , throwsTypeError (() => Int32x4 (0 , 0 , 0 , dynamicNull)));
111141 Expect .equals (
112- true , throwsTypeError (() => int32x4.select (dynamicNull, float32x4)));
142+ true ,
143+ throwsTypeError (() => int32x4.select (dynamicNull, float32x4)),
144+ );
113145 Expect .equals (
114- true , throwsTypeError (() => int32x4.select (float32x4, dynamicNull)));
146+ true ,
147+ throwsTypeError (() => int32x4.select (float32x4, dynamicNull)),
148+ );
115149
116150 // Int32x4.bool
117- Expect .equals (true ,
118- throwsTypeError (() => Int32x4 .bool (dynamicNull, false , false , false )));
119- Expect .equals (true ,
120- throwsTypeError (() => Int32x4 .bool (false , dynamicNull, false , false )));
121- Expect .equals (true ,
122- throwsTypeError (() => Int32x4 .bool (false , false , dynamicNull, false )));
123- Expect .equals (true ,
124- throwsTypeError (() => Int32x4 .bool (false , false , false , dynamicNull)));
151+ Expect .equals (
152+ true ,
153+ throwsTypeError (() => Int32x4 .bool (dynamicNull, false , false , false )),
154+ );
155+ Expect .equals (
156+ true ,
157+ throwsTypeError (() => Int32x4 .bool (false , dynamicNull, false , false )),
158+ );
159+ Expect .equals (
160+ true ,
161+ throwsTypeError (() => Int32x4 .bool (false , false , dynamicNull, false )),
162+ );
163+ Expect .equals (
164+ true ,
165+ throwsTypeError (() => Int32x4 .bool (false , false , false , dynamicNull)),
166+ );
125167}
0 commit comments