Index: runtime/lib/mirrors_impl.dart |
diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart |
index 2a02bd8c326f1cad2ae3f702d983d9ae70c78fc2..9ec13b330bfacc7dd596744191fdda1dc18de29c 100644 |
--- a/runtime/lib/mirrors_impl.dart |
+++ b/runtime/lib/mirrors_impl.dart |
@@ -1266,12 +1266,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('_'); |
@@ -1315,7 +1317,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; |