Chromium Code Reviews| Index: corelib/src/expando.dart |
| diff --git a/corelib/src/expando.dart b/corelib/src/expando.dart |
| index e21c5aaf071ba072d11417527eb83c37c9b4dbdf..d537659146000ba03d5c339cd2f40adb432fb19b 100644 |
| --- a/corelib/src/expando.dart |
| +++ b/corelib/src/expando.dart |
| @@ -5,7 +5,7 @@ |
| /** |
| * An [Expando] allows adding new properties to objects. |
| */ |
| -interface Expando<T> default _Expando<T> { |
| +interface Expando<T> default ExpandoImplementation<T> { |
|
Ivan Posva
2012/08/27 21:16:21
Why this extra indirection?
class Expando<T> {
|
| /** |
| * The name of the this [Expando] as passed to the constructor. If |