OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |