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

Unified Diff: dart/sdk/lib/mirrors/mirrors.dart

Issue 18052004: Implement JsMethodMirror.parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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
Index: dart/sdk/lib/mirrors/mirrors.dart
diff --git a/dart/sdk/lib/mirrors/mirrors.dart b/dart/sdk/lib/mirrors/mirrors.dart
index e29c225253b5d5820f01b7397771a9b250e92ebe..fd91660c405f850a6dee4ff23a85ba2949e87878 100644
--- a/dart/sdk/lib/mirrors/mirrors.dart
+++ b/dart/sdk/lib/mirrors/mirrors.dart
@@ -1111,21 +1111,19 @@ class Comment {
*
* Example usage:
*
- * [:
- * @MirrorsUsed(symbols: 'foo', override: '*')
- * import 'dart:mirrors';
+ * @MirrorsUsed(symbols: 'foo', override: '*')
+ * import 'dart:mirrors';
*
- * class Foo {
- * noSuchMethod(Invocation invocation) {
- * print(Mirrors.getName(invocation.memberName));
- * }
- * }
+ * class Foo {
+ * noSuchMethod(Invocation invocation) {
+ * print(Mirrors.getName(invocation.memberName));
+ * }
+ * }
*
- * main() {
- * new Foo().foo(); // Prints "foo".
- * new Foo().bar(); // Might print an arbitrary (mangled) name, "bar".
- * }
- * :]
+ * main() {
+ * new Foo().foo(); // Prints "foo".
+ * new Foo().bar(); // Might print an arbitrary (mangled) name, "bar".
+ * }
*/
// TODO(ahe): Remove ", override: '*'" when it isn't necessary anymore.
class MirrorsUsed {

Powered by Google App Engine
This is Rietveld 408576698