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

Side by Side Diff: dart/pkg/dartdoc/lib/src/dartdoc/nav.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 part of dartdoc;
2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
6 4
7 /* 5 /*
8 * Constant values used for encoding navigation info. 6 * Constant values used for encoding navigation info.
9 * 7 *
10 * The generated JSON data is a list of LibraryInfo maps, defined as follows: 8 * The generated JSON data is a list of LibraryInfo maps, defined as follows:
11 * 9 *
12 * LibraryInfo = { 10 * LibraryInfo = {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 return 'constructor'; 66 return 'constructor';
69 } else if (kind == METHOD) { 67 } else if (kind == METHOD) {
70 return 'method'; 68 return 'method';
71 } else if (kind == GETTER) { 69 } else if (kind == GETTER) {
72 return 'getter'; 70 return 'getter';
73 } else if (kind == SETTER) { 71 } else if (kind == SETTER) {
74 return 'setter'; 72 return 'setter';
75 } 73 }
76 return ''; 74 return '';
77 } 75 }
OLDNEW
« no previous file with comments | « dart/pkg/dartdoc/lib/src/dartdoc/comment_map.dart ('k') | dart/pkg/dartdoc/lib/src/dartdoc/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698