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

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

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 6
7 import 'package:compiler/implementation/util/uri_extras.dart'; 7 import 'package:compiler/src/util/uri_extras.dart';
8 8
9 9
10 void testRelativize() { 10 void testRelativize() {
11 void c(String expected, String base, String path, bool isWindows) { 11 void c(String expected, String base, String path, bool isWindows) {
12 if (isWindows == null) { 12 if (isWindows == null) {
13 c(expected, base, path, true); 13 c(expected, base, path, true);
14 c(expected, base, path, false); 14 c(expected, base, path, false);
15 return; 15 return;
16 } 16 }
17 17
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 '/Users/other/out.js.map', 87 '/Users/other/out.js.map',
88 '/Users/person/out.js', true); 88 '/Users/person/out.js', true);
89 89
90 c('out.js', '/out.js.map', '/out.js', null); 90 c('out.js', '/out.js.map', '/out.js', null);
91 91
92 } 92 }
93 93
94 void main() { 94 void main() {
95 testRelativize(); 95 testRelativize();
96 } 96 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/unparser_test.dart ('k') | tests/compiler/dart2js/value_range2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698