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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/Element.java

Issue 787603004: Getters should not have parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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 | pkg/analysis_server/doc/api.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/Element.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/Element.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/Element.java
index e7a63319a5d5495932758c077964505324a3a2c1..9796614639a9a011c799531de9cc43edc32d690a 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/Element.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/Element.java
@@ -84,7 +84,8 @@ public class Element {
/**
* The parameter list for the element. If the element is not a method or function this field will
- * not be defined. If the element has zero parameters, this field will have a value of "()".
+ * not be defined. If the element doesn't have parameters (e.g. getter), this field will not be
+ * defined. If the element has zero parameters, this field will have a value of "()".
*/
private final String parameters;
@@ -181,7 +182,8 @@ public class Element {
/**
* The parameter list for the element. If the element is not a method or function this field will
- * not be defined. If the element has zero parameters, this field will have a value of "()".
+ * not be defined. If the element doesn't have parameters (e.g. getter), this field will not be
+ * defined. If the element has zero parameters, this field will have a value of "()".
*/
public String getParameters() {
return parameters;
« no previous file with comments | « no previous file | pkg/analysis_server/doc/api.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698