| Index: sdk/lib/mirrors/mirrors.dart
|
| diff --git a/sdk/lib/mirrors/mirrors.dart b/sdk/lib/mirrors/mirrors.dart
|
| index 8ac0e83a03843e99ed40c82ed4d48351ad1a2be0..796889c64c0a5a475b248da7c5795358f5499d3e 100644
|
| --- a/sdk/lib/mirrors/mirrors.dart
|
| +++ b/sdk/lib/mirrors/mirrors.dart
|
| @@ -532,13 +532,6 @@ abstract class ClosureMirror implements InstanceMirror {
|
| MethodMirror get function;
|
|
|
| /**
|
| - * The source code for this closure, if available. Otherwise null.
|
| - *
|
| - * TODO(turnidge): Would this just be available in function?
|
| - */
|
| - String get source;
|
| -
|
| - /**
|
| * Executes the closure and returns a mirror on the result.
|
| * Let *f* be the closure reflected by this mirror,
|
| * let *a1, ..., an* be the elements of [positionalArguments]
|
| @@ -953,6 +946,11 @@ abstract class MethodMirror implements DeclarationMirror {
|
| TypeMirror get returnType;
|
|
|
| /**
|
| + * The source code for the reflectee, if available. Otherwise null.
|
| + */
|
| + String get source;
|
| +
|
| + /**
|
| * A list of mirrors on the parameters for the reflectee.
|
| */
|
| List<ParameterMirror> get parameters;
|
|
|