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

Side by Side Diff: pkg/front_end/testcases/inference/infer_binary_custom.dart.strong.expect

Issue 2873813002: Implement type inference of method invocations in Fasta. (Closed)
Patch Set: Created 3 years, 7 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
(Empty)
1 library test;
2 import self as self;
3 import "dart:core" as core;
4
5 class A extends core::Object {
6 constructor •() → void
7 : super core::Object::•()
8 ;
9 operator +(dynamic other) → core::int
10 return 1;
11 operator -(dynamic other) → core::double
12 return 2.0;
13 }
14 static field core::int v_add = new self::A::•().+("foo");
15 static field core::double v_minus = new self::A::•().-("bar");
16 static method main() → dynamic {
17 self::v_add;
18 self::v_minus;
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698