Chromium Code Reviews| Index: sdk/lib/internal/list.dart |
| diff --git a/sdk/lib/internal/list.dart b/sdk/lib/internal/list.dart |
| index 14eeb1372ee8c050a5bb69528bee6d3e72e9496c..2bd89be2bcd65ade4ed97560c49da396f2e98710 100644 |
| --- a/sdk/lib/internal/list.dart |
| +++ b/sdk/lib/internal/list.dart |
| @@ -305,3 +305,5 @@ class ReversedListIterable<E> extends ListIterable<E> { |
| E elementAt(int index) => _source.elementAt(_source.length - 1 - index); |
| } |
| + |
| +external List makeListFixedLength(List growableList); |
|
Ivan Posva
2014/02/06 16:57:00
Why is this not in the core library as a private w
Lasse Reichstein Nielsen
2014/02/07 12:55:25
Because I expect to call it from other libraries (
|