Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Side by Side Diff: pkg/analyzer/test/src/task/strong/strong_test_helper.dart

Issue 1602803002: Clean-up imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 // TODO(jmesserly): this file needs to be refactored, it's a port from 5 // TODO(jmesserly): this file needs to be refactored, it's a port from
6 // package:dev_compiler's tests 6 // package:dev_compiler's tests
7 library analyzer.test.src.task.strong.strong_test_helper; 7 library analyzer.test.src.task.strong.strong_test_helper;
8 8
9 import 'package:analyzer/dart/ast/ast.dart';
10 import 'package:analyzer/dart/ast/visitor.dart';
9 import 'package:analyzer/dart/element/element.dart'; 11 import 'package:analyzer/dart/element/element.dart';
10 import 'package:analyzer/file_system/file_system.dart'; 12 import 'package:analyzer/file_system/file_system.dart';
11 import 'package:analyzer/file_system/memory_file_system.dart'; 13 import 'package:analyzer/file_system/memory_file_system.dart';
12 import 'package:analyzer/src/context/context.dart' show SdkAnalysisContext; 14 import 'package:analyzer/src/context/context.dart' show SdkAnalysisContext;
13 import 'package:analyzer/src/generated/ast.dart';
14 import 'package:analyzer/src/generated/engine.dart'; 15 import 'package:analyzer/src/generated/engine.dart';
15 import 'package:analyzer/src/generated/error.dart'; 16 import 'package:analyzer/src/generated/error.dart';
16 import 'package:analyzer/src/generated/sdk.dart'; 17 import 'package:analyzer/src/generated/sdk.dart';
17 import 'package:analyzer/src/generated/source.dart'; 18 import 'package:analyzer/src/generated/source.dart';
18 import 'package:analyzer/src/generated/type_system.dart'; 19 import 'package:analyzer/src/generated/type_system.dart';
19 import 'package:analyzer/src/task/strong/checker.dart'; 20 import 'package:analyzer/src/task/strong/checker.dart';
20 import 'package:logging/logging.dart'; 21 import 'package:logging/logging.dart';
21 import 'package:source_span/source_span.dart'; 22 import 'package:source_span/source_span.dart';
22 import 'package:unittest/unittest.dart'; 23 import 'package:unittest/unittest.dart';
23 24
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 UriKind get uriKind => UriKind.DART_URI; 515 UriKind get uriKind => UriKind.DART_URI;
515 516
516 bool exists() => true; 517 bool exists() => true;
517 518
518 Source resolveRelative(Uri relativeUri) => 519 Source resolveRelative(Uri relativeUri) =>
519 throw new UnsupportedError('not expecting relative urls in dart: mocks'); 520 throw new UnsupportedError('not expecting relative urls in dart: mocks');
520 521
521 Uri resolveRelativeUri(Uri relativeUri) => 522 Uri resolveRelativeUri(Uri relativeUri) =>
522 throw new UnsupportedError('not expecting relative urls in dart: mocks'); 523 throw new UnsupportedError('not expecting relative urls in dart: mocks');
523 } 524 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/src/task/incremental_element_builder_test.dart ('k') | pkg/analyzer/test/src/task/strong_mode_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698