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

Unified Diff: pkg/dartdoc/nav.dart

Issue 10829361: 'Find-as-you-type'-search in dartdoc/apidoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 8 years, 4 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 | « pkg/dartdoc/mirrors/dart2js_mirror.dart ('k') | pkg/dartdoc/search.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dartdoc/nav.dart
diff --git a/pkg/dartdoc/nav.dart b/pkg/dartdoc/nav.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e0a124720814eb612757da5df8ff65edec36f621
--- /dev/null
+++ b/pkg/dartdoc/nav.dart
@@ -0,0 +1,73 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/*
+ * Constant values used for encoding navigation info.
+ *
+ * The generated JSON data is a list of LibraryInfo maps, defined as follows:
+ *
+ * LibraryInfo = {
+ * String NAME, // Library name.
+ * List<TypeInfo> TYPES, // Library types.
+ * List<MemberInfo> MEMBERS, // Library functions and variables.
+ * };
+ * TypeInfo = {
+ * String NAME, // Type name.
+ * String ARGS, // Type variables, e.g. "<K,V>". Optional.
+ * String KIND, // One of CLASS, INTERFACE, or TYPEDEF.
+ * List<MemberInfo> MEMBERS, // Type fields and methods.
+ * };
+ * MemberInfo = {
+ * String NAME, // Member name.
+ * String KIND, // One of FIELD, CONSTRUCTOR, METHOD, GETTER, or SETTER.
+ * String LINK_NAME, // Anchor name for the member if different from
+ * // NAME.
+ * };
+ *
+ *
+ * TODO(johnniwinther): Shorten the string values to reduce JSON output size.
+ */
+
+const String LIBRARY = 'library';
+const String CLASS = 'class';
+const String INTERFACE = 'interface';
+const String TYPEDEF = 'typedef';
+const String MEMBERS = 'members';
+const String TYPES = 'types';
+const String ARGS = 'args';
+const String NAME = 'name';
+const String KIND = 'kind';
+const String FIELD = 'field';
+const String CONSTRUCTOR = 'constructor';
+const String METHOD = 'method';
+const String GETTER = 'getter';
+const String SETTER = 'setter';
+const String LINK_NAME = 'link_name';
+
+/**
+ * Translation of const values to strings. Used to facilitate shortening of
+ * constant value strings.
+ */
+String kindToString(String kind) {
+ if (kind == LIBRARY) {
+ return 'library';
+ } else if (kind == CLASS) {
+ return 'class';
+ } else if (kind == INTERFACE) {
+ return 'interface';
+ } else if (kind == TYPEDEF) {
+ return 'typedef';
+ } else if (kind == FIELD) {
+ return 'field';
+ } else if (kind == CONSTRUCTOR) {
+ return 'constructor';
+ } else if (kind == METHOD) {
+ return 'method';
+ } else if (kind == GETTER) {
+ return 'getter';
+ } else if (kind == SETTER) {
+ return 'setter';
+ }
+ return '';
+}
« no previous file with comments | « pkg/dartdoc/mirrors/dart2js_mirror.dart ('k') | pkg/dartdoc/search.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698