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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/AnalysisError.java

Issue 15736010: Extend the error framework (take 2) (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/AnalysisErrorWithProperties.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/AnalysisError.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/AnalysisError.java (revision 23019)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/AnalysisError.java (working copy)
@@ -159,6 +159,17 @@
}
/**
+ * Return the value of the given property, or {@code null} if the given property is not defined
+ * for this error.
+ *
+ * @param property the property whose value is to be returned
+ * @return the value of the given property
+ */
+ public Object getProperty(ErrorProperty property) {
+ return null;
+ }
+
+ /**
* Return the source in which the error occurred, or {@code null} if unknown.
*
* @return the source in which the error occurred
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/AnalysisErrorWithProperties.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698