| Index: dart/lib/compiler/implementation/apiimpl.dart
|
| diff --git a/dart/lib/compiler/implementation/apiimpl.dart b/dart/lib/compiler/implementation/apiimpl.dart
|
| index ca2eb39d4f95460198c690d4665cb8e519a5b5ab..8bcd5ca6fe8e123b2c83adc8f9f3bd7dfa7a521b 100644
|
| --- a/dart/lib/compiler/implementation/apiimpl.dart
|
| +++ b/dart/lib/compiler/implementation/apiimpl.dart
|
| @@ -2,17 +2,17 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -#library('leg_apiimpl');
|
| +library leg_apiimpl;
|
|
|
| -#import('dart:uri');
|
| +import 'dart:uri';
|
|
|
| -#import('../compiler.dart', prefix: 'api');
|
| -#import('leg.dart', prefix: 'leg');
|
| -#import('tree/tree.dart', prefix: 'tree');
|
| -#import('elements/elements.dart', prefix: 'elements');
|
| -#import('ssa/tracer.dart', prefix: 'ssa');
|
| -#import('../../../lib/_internal/libraries.dart');
|
| -#import('source_file.dart');
|
| +import '../compiler.dart' as api;
|
| +import 'dart2jslib.dart' as leg;
|
| +import 'tree/tree.dart' as tree;
|
| +import 'elements/elements.dart' as elements;
|
| +import 'ssa/tracer.dart' as ssa;
|
| +import '../../../lib/_internal/libraries.dart';
|
| +import 'source_file.dart';
|
|
|
| class Compiler extends leg.Compiler {
|
| api.ReadStringFromUri provider;
|
|
|