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

Side by Side Diff: tests/compiler/dart2js/related_types.dart

Issue 2606253002: Move dart_types to elements/resolution_types (Closed)
Patch Set: Created 3 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
« no previous file with comments | « tests/compiler/dart2js/mock_compiler.dart ('k') | tests/compiler/dart2js/resolver_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 library related_types; 5 library related_types;
6 6
7 import 'package:compiler/src/commandline_options.dart'; 7 import 'package:compiler/src/commandline_options.dart';
8 import 'package:compiler/src/compiler.dart'; 8 import 'package:compiler/src/compiler.dart';
9 import 'package:compiler/src/core_types.dart'; 9 import 'package:compiler/src/core_types.dart';
10 import 'package:compiler/src/dart_types.dart'; 10 import 'package:compiler/src/elements/resolution_types.dart';
11 import 'package:compiler/src/diagnostics/diagnostic_listener.dart'; 11 import 'package:compiler/src/diagnostics/diagnostic_listener.dart';
12 import 'package:compiler/src/diagnostics/messages.dart'; 12 import 'package:compiler/src/diagnostics/messages.dart';
13 import 'package:compiler/src/elements/elements.dart'; 13 import 'package:compiler/src/elements/elements.dart';
14 import 'package:compiler/src/filenames.dart'; 14 import 'package:compiler/src/filenames.dart';
15 import 'package:compiler/src/resolution/semantic_visitor.dart'; 15 import 'package:compiler/src/resolution/semantic_visitor.dart';
16 import 'package:compiler/src/tree/tree.dart'; 16 import 'package:compiler/src/tree/tree.dart';
17 import 'package:compiler/src/universe/call_structure.dart'; 17 import 'package:compiler/src/universe/call_structure.dart';
18 import 'package:compiler/src/universe/selector.dart'; 18 import 'package:compiler/src/universe/selector.dart';
19 import 'package:compiler/src/world.dart'; 19 import 'package:compiler/src/world.dart';
20 import 'memory_compiler.dart'; 20 import 'memory_compiler.dart';
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 ClassElement findClass(DartType type) => type.accept(this, null); 409 ClassElement findClass(DartType type) => type.accept(this, null);
410 410
411 @override 411 @override
412 ClassElement visitType(DartType type, _) => null; 412 ClassElement visitType(DartType type, _) => null;
413 413
414 @override 414 @override
415 ClassElement visitInterfaceType(InterfaceType type, _) { 415 ClassElement visitInterfaceType(InterfaceType type, _) {
416 return type.element; 416 return type.element;
417 } 417 }
418 } 418 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/mock_compiler.dart ('k') | tests/compiler/dart2js/resolver_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698