| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | 5 import 'dart:async'; |
| 6 | 6 |
| 7 import 'package:analyzer/dart/ast/ast.dart'; | 7 import 'package:analyzer/dart/ast/ast.dart'; |
| 8 import 'package:analyzer/file_system/file_system.dart'; | 8 import 'package:analyzer/file_system/file_system.dart'; |
| 9 import 'package:analyzer/src/context/context.dart'; | 9 import 'package:analyzer/src/context/context.dart'; |
| 10 import 'package:analyzer/src/dart/analysis/byte_store.dart'; | 10 import 'package:analyzer/src/dart/analysis/byte_store.dart'; |
| 11 import 'package:analyzer/src/dart/analysis/driver.dart' as driver; | 11 import 'package:analyzer/src/dart/analysis/driver.dart' as driver; |
| 12 import 'package:analyzer/src/dart/analysis/file_state.dart'; | 12 import 'package:analyzer/src/dart/analysis/file_state.dart'; |
| 13 import 'package:analyzer/src/generated/engine.dart'; | 13 import 'package:analyzer/src/generated/engine.dart'; |
| 14 import 'package:analyzer/src/generated/sdk.dart'; | 14 import 'package:analyzer/src/generated/sdk.dart'; |
| 15 import 'package:analyzer/src/generated/source.dart'; | 15 import 'package:analyzer/src/generated/source.dart'; |
| 16 import 'package:analyzer/src/generated/utilities_dart.dart'; | |
| 17 import 'package:analyzer/src/summary/idl.dart'; | 16 import 'package:analyzer/src/summary/idl.dart'; |
| 18 import 'package:analyzer/src/util/absolute_path.dart'; | 17 import 'package:analyzer/src/util/absolute_path.dart'; |
| 19 import 'package:front_end/incremental_resolved_ast_generator.dart'; | 18 import 'package:front_end/incremental_resolved_ast_generator.dart'; |
| 20 import 'package:front_end/src/base/file_repository.dart'; | 19 import 'package:front_end/src/base/file_repository.dart'; |
| 21 import 'package:front_end/src/base/processed_options.dart'; | 20 import 'package:front_end/src/base/processed_options.dart'; |
| 21 import 'package:front_end/src/base/resolve_relative_uri.dart'; |
| 22 import 'package:front_end/src/base/source.dart'; | 22 import 'package:front_end/src/base/source.dart'; |
| 23 import 'package:front_end/src/dependency_grapher_impl.dart'; | 23 import 'package:front_end/src/dependency_grapher_impl.dart'; |
| 24 import 'package:path/src/context.dart'; | 24 import 'package:path/src/context.dart'; |
| 25 | 25 |
| 26 dynamic unimplemented() { | 26 dynamic unimplemented() { |
| 27 // TODO(paulberry): get rid of this. | 27 // TODO(paulberry): get rid of this. |
| 28 throw new UnimplementedError(); | 28 throw new UnimplementedError(); |
| 29 } | 29 } |
| 30 | 30 |
| 31 /// Implementation of [IncrementalKernelGenerator]. | 31 /// Implementation of [IncrementalKernelGenerator]. |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 class _SourceProxy extends BasicSource { | 295 class _SourceProxy extends BasicSource { |
| 296 @override | 296 @override |
| 297 final String fullName; | 297 final String fullName; |
| 298 | 298 |
| 299 _SourceProxy(Uri uri, this.fullName) : super(uri); | 299 _SourceProxy(Uri uri, this.fullName) : super(uri); |
| 300 | 300 |
| 301 int get modificationStamp => 0; | 301 int get modificationStamp => 0; |
| 302 | 302 |
| 303 noSuchMethod(Invocation invocation) => unimplemented(); | 303 noSuchMethod(Invocation invocation) => unimplemented(); |
| 304 } | 304 } |
| OLD | NEW |