| OLD | NEW |
| 1 // 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 |
| 2 // 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 |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of dart.mirrors; |
| 6 |
| 5 /** | 7 /** |
| 6 * A [MirrorSystem] is the main interface used to reflect on a set of | 8 * A [MirrorSystem] is the main interface used to reflect on a set of |
| 7 * associated libraries. | 9 * associated libraries. |
| 8 * | 10 * |
| 9 * At runtime each running isolate has a distinct [MirrorSystem]. | 11 * At runtime each running isolate has a distinct [MirrorSystem]. |
| 10 * | 12 * |
| 11 * It is also possible to have a [MirrorSystem] which represents a set | 13 * It is also possible to have a [MirrorSystem] which represents a set |
| 12 * of libraries which are not running -- perhaps at compile-time. In | 14 * of libraries which are not running -- perhaps at compile-time. In |
| 13 * this case, all available reflective functionality would be | 15 * this case, all available reflective functionality would be |
| 14 * supported, but runtime functionality (such as invoking a function | 16 * supported, but runtime functionality (such as invoking a function |
| (...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 /** | 746 /** |
| 745 * Is [:true:] if this comment is a documentation comment. | 747 * Is [:true:] if this comment is a documentation comment. |
| 746 * | 748 * |
| 747 * That is, that the comment is either enclosed in [: /** ... */ :] or starts | 749 * That is, that the comment is either enclosed in [: /** ... */ :] or starts |
| 748 * with [: /// :]. | 750 * with [: /// :]. |
| 749 */ | 751 */ |
| 750 final bool isDocComment; | 752 final bool isDocComment; |
| 751 | 753 |
| 752 const Comment(this.text, this.trimmedText, this.isDocComment); | 754 const Comment(this.text, this.trimmedText, this.isDocComment); |
| 753 } | 755 } |
| OLD | NEW |