Chromium Code Reviews| 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'; |