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

Unified Diff: pkg/compiler/lib/src/serialization/modelz.dart

Issue 1723443003: First step of support for parsing and ignoring generic methods. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 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
Index: pkg/compiler/lib/src/serialization/modelz.dart
diff --git a/pkg/compiler/lib/src/serialization/modelz.dart b/pkg/compiler/lib/src/serialization/modelz.dart
index 07cf4e6e7b537419dd8f3804ad6a8b7370e73232..c8421810b38ed273ce5211efebba26c2879c3ea0 100644
--- a/pkg/compiler/lib/src/serialization/modelz.dart
+++ b/pkg/compiler/lib/src/serialization/modelz.dart
@@ -16,6 +16,7 @@ import '../compiler.dart'
show Compiler;
import '../constants/constructors.dart';
import '../constants/expressions.dart';
+import '../core_types.dart';
import '../dart_types.dart';
import '../elements/elements.dart';
import '../elements/modelx.dart' show
@@ -853,7 +854,7 @@ class ClassElementZ extends DeserializedElementZ
bool get hasLocalScopeMembers => _unsupported('hasLocalScopeMembers');
@override
- bool implementsFunction(Compiler compiler) {
+ bool implementsFunction(CoreClasses coreClasses) {
floitsch 2016/02/22 12:45:20 How is this change related to generic methods?
eernst 2016/02/22 18:02:51 It is unrelated. The IDE complained about the type
floitsch 2016/02/22 18:40:27 https://codereview.chromium.org/1723653002
eernst 2016/02/23 12:40:45 OK, reverted it here.
return _unsupported('implementsFunction');
}

Powered by Google App Engine
This is Rietveld 408576698