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

Side by Side Diff: tests/compiler/dart2js/resolver_test.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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 import 'dart:collection'; 6 import 'dart:collection';
7 7
8 import 'package:async_helper/async_helper.dart'; 8 import 'package:async_helper/async_helper.dart';
9 import 'package:expect/expect.dart'; 9 import 'package:expect/expect.dart';
10 import 'package:compiler/src/constants/expressions.dart'; 10 import 'package:compiler/src/constants/expressions.dart';
11 import 'package:compiler/src/dart_types.dart'; 11 import 'package:compiler/src/elements/resolution_types.dart';
12 import 'package:compiler/src/elements/modelx.dart'; 12 import 'package:compiler/src/elements/modelx.dart';
13 import 'package:compiler/src/resolution/constructors.dart'; 13 import 'package:compiler/src/resolution/constructors.dart';
14 import 'package:compiler/src/resolution/members.dart'; 14 import 'package:compiler/src/resolution/members.dart';
15 import 'package:compiler/src/resolution/registry.dart'; 15 import 'package:compiler/src/resolution/registry.dart';
16 import 'package:compiler/src/resolution/resolution_result.dart'; 16 import 'package:compiler/src/resolution/resolution_result.dart';
17 import 'package:compiler/src/resolution/scope.dart'; 17 import 'package:compiler/src/resolution/scope.dart';
18 import 'package:compiler/src/resolution/tree_elements.dart'; 18 import 'package:compiler/src/resolution/tree_elements.dart';
19 import 'package:compiler/src/universe/use.dart'; 19 import 'package:compiler/src/universe/use.dart';
20 import 'package:compiler/src/universe/world_impact.dart'; 20 import 'package:compiler/src/universe/world_impact.dart';
21 21
(...skipping 1514 matching lines...) Expand 10 before | Expand all | Expand 10 after
1536 functionName: 'm'); 1536 functionName: 'm');
1537 check( 1537 check(
1538 ''' 1538 '''
1539 class A { 1539 class A {
1540 m() => () => await - 3; 1540 m() => () => await - 3;
1541 } 1541 }
1542 main() => new A().m(); 1542 main() => new A().m();
1543 ''', 1543 ''',
1544 className: 'A'); 1544 className: 'A');
1545 } 1545 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/related_types.dart ('k') | tests/compiler/dart2js/semantic_visitor_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698