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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java

Issue 10915171: Don't report 'no such method' if class defines 'noSuchMethod' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add preference Created 8 years, 3 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: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
index 70f3558d292bcdd75807e9ede57408c224619fdb..2489e6ae31dd5d2ae97f13dc051f3856542a6cf1 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
@@ -133,10 +133,16 @@ public class DartCore extends Plugin implements DartSdkListener {
public static final String AUXILIARY_DIR_PREFERENCE = "external resources";
/**
- * Preference to control if "not a member" warnings should be suppressed for inferred types.
+ * Preference to control if "not a member" warnings should be reported for inferred types.
*/
public static final String TYPE_CHECKS_FOR_INFERRED_TYPES = "typeChecksForInferredTypes";
+ /**
+ * Preference to control if "not a member" warnings should be reported for classes implementing
+ * "noSuchMethod".
+ */
+ public static final String REPORT_NO_MEMBER_WHEN_HAS_INTERCEPTOR = "reportNoMemberWhenHasInterceptor";
+
public static final String PROJECT_PREF_DISABLE_DART_BASED_BUILDER = "disableDartBasedBuilder";
/**

Powered by Google App Engine
This is Rietveld 408576698