Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #library("package1"); | |
| 6 | |
| 7 #import('package2.dart', prefix: 'b1'); | |
|
kasperl
2012/06/13 12:40:10
bn -> pn?
ngeoffray
2012/06/13 12:55:20
Done.
| |
| 8 #import('package2.dart', prefix: 'b2'); | |
| 9 #import('package:package2.dart', prefix: 'b3'); | |
| 10 | |
| 11 main() { | |
| 12 Expect.identical(b1.x, b2.x); | |
| 13 Expect.identical(b1.x, b3.x); | |
| 14 } | |
| OLD | NEW |