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

Unified Diff: test/dart_codegen/expect/math/rectangle.dart

Issue 959003003: Typecheck constructor initializers properly (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« test/checker/checker_test.dart ('K') | « test/dart_codegen/expect/core/uri.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/dart_codegen/expect/math/rectangle.dart
diff --git a/test/dart_codegen/expect/math/rectangle.dart b/test/dart_codegen/expect/math/rectangle.dart
index 04fc4e6a59b2a1a3c3a9611e6fdb9a92cded2b0b..169033b8118c46bcfd0ebe224e2250d50758bf54 100644
--- a/test/dart_codegen/expect/math/rectangle.dart
+++ b/test/dart_codegen/expect/math/rectangle.dart
@@ -64,22 +64,22 @@ T left = ((__x3) => DDC$RT.cast(__x3, num, T, "CastGeneral", """line 167, column
T top;
T _width;
T _height;
- MutableRectangle(this.left, this.top, T width, T height) : this._width = (width < 0) ? _clampToZero(width) : width, this._height = (height < 0) ? _clampToZero(height) : height;
+ MutableRectangle(this.left, this.top, T width, T height) : this._width = ((__x7) => DDC$RT.cast(__x7, dynamic, T, "CastGeneral", """line 212, column 23 of dart:math/rectangle.dart: """, __x7 is T, false))((width < 0) ? _clampToZero(width) : width), this._height = ((__x8) => DDC$RT.cast(__x8, dynamic, T, "CastGeneral", """line 213, column 24 of dart:math/rectangle.dart: """, __x8 is T, false))((height < 0) ? _clampToZero(height) : height);
factory MutableRectangle.fromPoints(Point<T> a, Point<T> b) {
-T left = ((__x7) => DDC$RT.cast(__x7, num, T, "CastGeneral", """line 228, column 14 of dart:math/rectangle.dart: """, __x7 is T, false))(min(a.x, b.x));
- T width = ((__x8) => DDC$RT.cast(__x8, num, T, "CastGeneral", """line 229, column 15 of dart:math/rectangle.dart: """, __x8 is T, false))(max(a.x, b.x) - left);
- T top = ((__x9) => DDC$RT.cast(__x9, num, T, "CastGeneral", """line 230, column 13 of dart:math/rectangle.dart: """, __x9 is T, false))(min(a.y, b.y));
- T height = ((__x10) => DDC$RT.cast(__x10, num, T, "CastGeneral", """line 231, column 16 of dart:math/rectangle.dart: """, __x10 is T, false))(max(a.y, b.y) - top);
+T left = ((__x9) => DDC$RT.cast(__x9, num, T, "CastGeneral", """line 228, column 14 of dart:math/rectangle.dart: """, __x9 is T, false))(min(a.x, b.x));
+ T width = ((__x10) => DDC$RT.cast(__x10, num, T, "CastGeneral", """line 229, column 15 of dart:math/rectangle.dart: """, __x10 is T, false))(max(a.x, b.x) - left);
+ T top = ((__x11) => DDC$RT.cast(__x11, num, T, "CastGeneral", """line 230, column 13 of dart:math/rectangle.dart: """, __x11 is T, false))(min(a.y, b.y));
+ T height = ((__x12) => DDC$RT.cast(__x12, num, T, "CastGeneral", """line 231, column 16 of dart:math/rectangle.dart: """, __x12 is T, false))(max(a.y, b.y) - top);
return new MutableRectangle<T>(left, top, width, height);
}
T get width => _width;
void set width(T width) {
-if (width < 0) width = ((__x11) => DDC$RT.cast(__x11, num, T, "CastGeneral", """line 247, column 28 of dart:math/rectangle.dart: """, __x11 is T, false))(_clampToZero(width));
+if (width < 0) width = ((__x13) => DDC$RT.cast(__x13, num, T, "CastGeneral", """line 247, column 28 of dart:math/rectangle.dart: """, __x13 is T, false))(_clampToZero(width));
_width = width;
}
T get height => _height;
void set height(T height) {
-if (height < 0) height = ((__x12) => DDC$RT.cast(__x12, num, T, "CastGeneral", """line 263, column 30 of dart:math/rectangle.dart: """, __x12 is T, false))(_clampToZero(height));
+if (height < 0) height = ((__x14) => DDC$RT.cast(__x14, num, T, "CastGeneral", """line 263, column 30 of dart:math/rectangle.dart: """, __x14 is T, false))(_clampToZero(height));
_height = height;
}
}
« test/checker/checker_test.dart ('K') | « test/dart_codegen/expect/core/uri.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698