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

Unified Diff: pkg/dartdoc/lib/src/dartdoc/nav.dart

Issue 11039018: Show noargs methods as () instead of (...) in find-as-you-type. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« pkg/dartdoc/lib/dartdoc.dart ('K') | « pkg/dartdoc/lib/src/client/search.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dartdoc/lib/src/dartdoc/nav.dart
diff --git a/pkg/dartdoc/lib/src/dartdoc/nav.dart b/pkg/dartdoc/lib/src/dartdoc/nav.dart
index e0a124720814eb612757da5df8ff65edec36f621..52552b563c9a55410efc0847cee72c8eddda3fe9 100644
--- a/pkg/dartdoc/lib/src/dartdoc/nav.dart
+++ b/pkg/dartdoc/lib/src/dartdoc/nav.dart
@@ -23,6 +23,7 @@
* String KIND, // One of FIELD, CONSTRUCTOR, METHOD, GETTER, or SETTER.
* String LINK_NAME, // Anchor name for the member if different from
* // NAME.
+ * bool NO_ARGS, // Is true if member is a no-args constructor/method.
ngeoffray 2012/10/02 16:06:38 Why not just saying if the member doesn't take any
Johnni Winther 2012/10/03 09:22:16 Done.
* };
*
*
@@ -41,6 +42,7 @@ const String KIND = 'kind';
const String FIELD = 'field';
const String CONSTRUCTOR = 'constructor';
const String METHOD = 'method';
+const String NO_ARGS = 'noargs';
const String GETTER = 'getter';
const String SETTER = 'setter';
const String LINK_NAME = 'link_name';
« pkg/dartdoc/lib/dartdoc.dart ('K') | « pkg/dartdoc/lib/src/client/search.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698