Chromium Code Reviews| Index: sdk/lib/_internal/lib/constant_map.dart |
| diff --git a/sdk/lib/_internal/lib/constant_map.dart b/sdk/lib/_internal/lib/constant_map.dart |
| index 7dbedbcc89b2059633d4f37f83d8b074d090bec7..f13f30911b03c4078dc9c18a24bb92a1ee437742 100644 |
| --- a/sdk/lib/_internal/lib/constant_map.dart |
| +++ b/sdk/lib/_internal/lib/constant_map.dart |
| @@ -28,7 +28,7 @@ class ConstantStringMap<K, V> extends ConstantMap<K, V> |
| // This constructor is not used. The instantiation is shortcut by the |
| // compiler. It is here to make the uninitialized final fields legal. |
| - const ConstantStringMap._(this.length, this._jsObject, _keys) : super._(); |
| + const ConstantStringMap._(this.length, this._jsObject, this._keys) : super._(); |
|
sra1
2014/02/07 02:24:46
Line length, break before :
|
| final int length; |
| // A constant map is backed by a JavaScript object. |
| @@ -69,7 +69,7 @@ class ConstantStringMap<K, V> extends ConstantMap<K, V> |
| class ConstantProtoMap<K, V> extends ConstantStringMap<K, V> { |
| // This constructor is not used. The instantiation is shortcut by the |
| // compiler. It is here to make the uninitialized final fields legal. |
| - ConstantProtoMap._(length, jsObject, keys) : super._(length, jsObject, keys); |
| + ConstantProtoMap._(length, jsObject, keys, this._protoValue) : super._(length, jsObject, keys); |
|
sra1
2014/02/07 02:24:46
ditto
|
| final V _protoValue; |