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

Side by Side Diff: sdk/lib/mirrors/mirrors_impl.dart

Issue 12475004: Add dart analyzer test suite 'analyze_library' that fails if we (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 // 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698