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

Side by Side Diff: tests/compiler/dart2js/backend_dart/dart_backend_test.dart

Issue 1284593003: Remove dart2jslib.dart (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 import 'dart:async'; 6 import 'dart:async';
7 import "package:async_helper/async_helper.dart"; 7 import "package:async_helper/async_helper.dart";
8 import '../mock_compiler.dart'; 8 import '../mock_compiler.dart';
9 import '../mock_libraries.dart'; 9 import '../mock_libraries.dart';
10 import '../output_collector.dart'; 10 import '../output_collector.dart';
11 import 'package:compiler/compiler.dart'; 11 import 'package:compiler/compiler.dart';
12 import 'package:compiler/src/dart2jslib.dart' as leg; 12 import 'package:compiler/src/compiler.dart' as leg;
13 import 'package:compiler/src/dart_backend/dart_backend.dart'; 13 import 'package:compiler/src/dart_backend/dart_backend.dart';
14 import 'package:compiler/src/elements/elements.dart'; 14 import 'package:compiler/src/elements/elements.dart';
15 import 'package:compiler/src/tree/tree.dart'; 15 import 'package:compiler/src/tree/tree.dart';
16 16
17 const ioLib = r''' 17 const ioLib = r'''
18 library io; 18 library io;
19 class Platform { 19 class Platform {
20 static int operatingSystem; 20 static int operatingSystem;
21 } 21 }
22 '''; 22 ''';
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 testParametersMinified(); 1107 testParametersMinified();
1108 testDeclarationTypePlaceholders(); 1108 testDeclarationTypePlaceholders();
1109 testPlatformLibraryMemberNamesAreFixed(); 1109 testPlatformLibraryMemberNamesAreFixed();
1110 testConflictsWithCoreLib(); 1110 testConflictsWithCoreLib();
1111 testUnresolvedNamedConstructor1(); 1111 testUnresolvedNamedConstructor1();
1112 testUnresolvedNamedConstructor2(); 1112 testUnresolvedNamedConstructor2();
1113 testUnresolvedNamedConstructor3(); 1113 testUnresolvedNamedConstructor3();
1114 testClassAndNamedMixinDeclarations(); 1114 testClassAndNamedMixinDeclarations();
1115 } 1115 }
1116 1116
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/analyze_unused_dart2js_test.dart ('k') | tests/compiler/dart2js/backend_dart/dart_printer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698