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

Side by Side Diff: pkg/kernel/testcases/strong-mode/DeltaBlue.baseline.txt

Issue 2619193003: Insert implicit downcasts in kernel strong mode. (Closed)
Patch Set: Add missing status line Created 3 years, 11 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 // dynamic is not a subtype of dart.core::int (DeltaBlue.dart:126:17) 1 // dynamic is not a subtype of dart.core::int (DeltaBlue.dart:126:18)
2 // dynamic is not a subtype of dart.core::int (DeltaBlue.dart:133:15) 2 // dynamic is not a subtype of dart.core::int (DeltaBlue.dart:133:16)
3 // dynamic is not a subtype of dart.core::int (DeltaBlue.dart:138:36) 3 // dynamic is not a subtype of dart.core::int (DeltaBlue.dart:138:37)
4 // dynamic is not a subtype of dart.core::int (DeltaBlue.dart:139:15) 4 // dynamic is not a subtype of dart.core::int (DeltaBlue.dart:139:16)
5 library; 5 library;
6 import self as self; 6 import self as self;
7 import "dart:core" as core; 7 import "dart:core" as core;
8 8
9 class DeltaBlue extends core::Object { 9 class DeltaBlue extends core::Object {
10 constructor •() → void 10 constructor •() → void
11 : super core::Object::•() 11 : super core::Object::•()
12 ; 12 ;
13 method run() → void { 13 method run() → void {
14 self::chainTest(100); 14 self::chainTest(100);
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 } 445 }
446 static method change(self::Variable v, core::int newValue) → void { 446 static method change(self::Variable v, core::int newValue) → void {
447 self::EditConstraint edit = new self::EditConstraint::•(v, self::PREFERRED); 447 self::EditConstraint edit = new self::EditConstraint::•(v, self::PREFERRED);
448 self::Plan plan = self::planner.{self::Planner::extractPlanFromConstraints}(<s elf::EditConstraint>[edit]); 448 self::Plan plan = self::planner.{self::Planner::extractPlanFromConstraints}(<s elf::EditConstraint>[edit]);
449 for (core::int i = 0; i.{core::num::<}(10); i = i.{core::num::+}(1)) { 449 for (core::int i = 0; i.{core::num::<}(10); i = i.{core::num::+}(1)) {
450 v.{self::Variable::value} = newValue; 450 v.{self::Variable::value} = newValue;
451 plan.{self::Plan::execute}(); 451 plan.{self::Plan::execute}();
452 } 452 }
453 edit.{self::Constraint::destroyConstraint}(); 453 edit.{self::Constraint::destroyConstraint}();
454 } 454 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698