| Index: pkg/compiler/lib/src/common.dart
 | 
| diff --git a/pkg/compiler/lib/src/common.dart b/pkg/compiler/lib/src/common.dart
 | 
| index b997eda1d5ffe65fda6a8660a7fcba158b2e56cf..13830f361e64c226bf25d0a20d6a74f37dd8e02e 100644
 | 
| --- a/pkg/compiler/lib/src/common.dart
 | 
| +++ b/pkg/compiler/lib/src/common.dart
 | 
| @@ -5,6 +5,9 @@
 | 
|  library dart2js.common;
 | 
|  
 | 
|  
 | 
| +export 'common/names.dart' show
 | 
| +    Names;
 | 
| +
 | 
|  export 'common/tasks.dart' show
 | 
|      CompilerTask;
 | 
|  
 | 
| @@ -53,10 +56,11 @@ export 'tree/tree.dart' show
 | 
|  export 'types/types.dart' show
 | 
|      TypeMask;
 | 
|  
 | 
| -export 'universe/universe.dart' show
 | 
| -    CallStructure,
 | 
| -    Selector,
 | 
| -    SelectorKind;
 | 
| +export 'universe/call_structure.dart' show
 | 
| +    CallStructure;
 | 
| +
 | 
| +export 'universe/selector.dart' show
 | 
| +    Selector;
 | 
|  
 | 
|  export 'util/util.dart' show
 | 
|      Link;
 | 
| 
 |