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

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

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 years, 6 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 | Annotate | Revision Log
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:uri';
7 import 'parser_helper.dart'; 6 import 'parser_helper.dart';
8 import 'mock_compiler.dart'; 7 import 'mock_compiler.dart';
9 import '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart'; 8 import '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart';
10 9
11 testUnparse(String statement) { 10 testUnparse(String statement) {
12 Node node = parseStatement(statement); 11 Node node = parseStatement(statement);
13 Expect.equals(statement, unparse(node)); 12 Expect.equals(statement, unparse(node));
14 } 13 }
15 14
16 testUnparseMember(String member) { 15 testUnparseMember(String member) {
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 testImport(); 356 testImport();
358 testExport(); 357 testExport();
359 testPart(); 358 testPart();
360 testPartOf(); 359 testPartOf();
361 testCombinators(); 360 testCombinators();
362 testRedirectingFactoryConstructors(); 361 testRedirectingFactoryConstructors();
363 testClassDeclarations(); 362 testClassDeclarations();
364 testMixinApplications(); 363 testMixinApplications();
365 testParameters(); 364 testParameters();
366 } 365 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/type_test_helper.dart ('k') | tests/compiler/dart2js/uri_extras_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698