| Index: runtime/lib/mirrors_impl.dart
|
| diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart
|
| index a2ab082698353683625dd7195acd806f3046f56c..f8062979181af2a7516e12f33c3968415208da56 100644
|
| --- a/runtime/lib/mirrors_impl.dart
|
| +++ b/runtime/lib/mirrors_impl.dart
|
| @@ -1293,12 +1293,14 @@ class _LocalVariableMirrorImpl extends _LocalDeclarationMirrorImpl
|
| this.owner,
|
| this._type,
|
| this.isStatic,
|
| - this.isFinal)
|
| + this.isFinal,
|
| + this.isConst)
|
| : super(reflectee, _s(simpleName));
|
|
|
| final DeclarationMirror owner;
|
| final bool isStatic;
|
| final bool isFinal;
|
| + final bool isConst;
|
|
|
| bool get isPrivate => _n(simpleName).startsWith('_');
|
|
|
| @@ -1339,7 +1341,9 @@ class _LocalParameterMirrorImpl extends _LocalVariableMirrorImpl
|
| owner,
|
| null, // We override the type.
|
| false, // isStatic does not apply.
|
| - isFinal);
|
| + isFinal,
|
| + false // Not const.
|
| + );
|
|
|
| final int _position;
|
| final bool isOptional;
|
|
|