| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library engine.engine_test; | 5 library engine.engine_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:collection'; | 8 import 'dart:collection'; |
| 9 | 9 |
| 10 import 'package:analyzer/file_system/memory_file_system.dart'; | 10 import 'package:analyzer/file_system/memory_file_system.dart'; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 import 'package:analyzer/src/generated/resolver.dart'; | 24 import 'package:analyzer/src/generated/resolver.dart'; |
| 25 import 'package:analyzer/src/generated/scanner.dart'; | 25 import 'package:analyzer/src/generated/scanner.dart'; |
| 26 import 'package:analyzer/src/generated/sdk.dart'; | 26 import 'package:analyzer/src/generated/sdk.dart'; |
| 27 import 'package:analyzer/src/generated/sdk_io.dart'; | 27 import 'package:analyzer/src/generated/sdk_io.dart'; |
| 28 import 'package:analyzer/src/generated/source_io.dart'; | 28 import 'package:analyzer/src/generated/source_io.dart'; |
| 29 import 'package:analyzer/src/generated/testing/ast_factory.dart'; | 29 import 'package:analyzer/src/generated/testing/ast_factory.dart'; |
| 30 import 'package:analyzer/src/generated/testing/element_factory.dart'; | 30 import 'package:analyzer/src/generated/testing/element_factory.dart'; |
| 31 import 'package:analyzer/src/generated/utilities_collection.dart'; | 31 import 'package:analyzer/src/generated/utilities_collection.dart'; |
| 32 import 'package:analyzer/src/services/lint.dart'; | 32 import 'package:analyzer/src/services/lint.dart'; |
| 33 import 'package:analyzer/src/string_source.dart'; | 33 import 'package:analyzer/src/string_source.dart'; |
| 34 import 'package:analyzer/task/model.dart' hide AnalysisTask; | 34 import 'package:analyzer/task/model.dart' hide AnalysisTask, WorkManager; |
| 35 import 'package:html/dom.dart' show Document; | 35 import 'package:html/dom.dart' show Document; |
| 36 import 'package:path/path.dart' as pathos; | 36 import 'package:path/path.dart' as pathos; |
| 37 import 'package:typed_mock/typed_mock.dart'; | 37 import 'package:typed_mock/typed_mock.dart'; |
| 38 import 'package:unittest/unittest.dart'; | 38 import 'package:unittest/unittest.dart'; |
| 39 import 'package:watcher/src/utils.dart'; | 39 import 'package:watcher/src/utils.dart'; |
| 40 | 40 |
| 41 import '../reflective_tests.dart'; | 41 import '../reflective_tests.dart'; |
| 42 import '../utils.dart'; | 42 import '../utils.dart'; |
| 43 import 'all_the_rest_test.dart'; | 43 import 'all_the_rest_test.dart'; |
| 44 import 'resolver_test.dart'; | 44 import 'resolver_test.dart'; |
| (...skipping 6949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6994 @override | 6994 @override |
| 6995 bool exists() => true; | 6995 bool exists() => true; |
| 6996 } | 6996 } |
| 6997 | 6997 |
| 6998 class _UniversalCachePartitionTest_test_setMaxCacheSize | 6998 class _UniversalCachePartitionTest_test_setMaxCacheSize |
| 6999 implements CacheRetentionPolicy { | 6999 implements CacheRetentionPolicy { |
| 7000 @override | 7000 @override |
| 7001 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => | 7001 RetentionPriority getAstPriority(Source source, SourceEntry sourceEntry) => |
| 7002 RetentionPriority.LOW; | 7002 RetentionPriority.LOW; |
| 7003 } | 7003 } |
| OLD | NEW |