| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |