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

Unified Diff: pkg/analyzer/test/src/context/mock_sdk.dart

Issue 2940703002: Fix top level type inference for binary operators. (Closed)
Patch Set: Created 3 years, 6 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
Index: pkg/analyzer/test/src/context/mock_sdk.dart
diff --git a/pkg/analyzer/test/src/context/mock_sdk.dart b/pkg/analyzer/test/src/context/mock_sdk.dart
index 985c3cd80b454c70c42afa39ece43479a7b074e6..cec5d79fae93776c082bd1eaa9a737325b211d7c 100644
--- a/pkg/analyzer/test/src/context/mock_sdk.dart
+++ b/pkg/analyzer/test/src/context/mock_sdk.dart
@@ -177,7 +177,7 @@ abstract class num implements Comparable<num> {
num operator +(num other);
num operator -(num other);
num operator *(num other);
- num operator /(num other);
+ double operator /(num other);
int operator ^(int other);
int operator |(int other);
int operator <<(int other);

Powered by Google App Engine
This is Rietveld 408576698