Index: sdk/lib/_internal/pub/bin/pub.dart |
diff --git a/tests/language/issue9602_other.dart b/sdk/lib/_internal/pub/bin/pub.dart |
similarity index 65% |
copy from tests/language/issue9602_other.dart |
copy to sdk/lib/_internal/pub/bin/pub.dart |
index a189b7759b4381e2a8a27289c2b7ca318915f85a..70eb37e0476c8fd927abf22dd0c15cf6d367d113 100644 |
--- a/tests/language/issue9602_other.dart |
+++ b/sdk/lib/_internal/pub/bin/pub.dart |
@@ -2,9 +2,7 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
-// Regression test case for http://dartbug.com/9602 |
-library issue9602_other; |
+import 'package:pub/src/pub.dart'; |
Bob Nystrom
2013/04/23 19:41:19
Does this mean that you have to build the SDK befo
nweiz
2013/04/23 19:56:27
I've removed package: pub imports, but no, that's
Bob Nystrom
2013/04/23 20:26:14
SGTM. I wasn't sure if it copied or linked, but it
|
-class M { |
- var _field; |
-} |
+// TODO(nweiz): move option-parsing logic into this file. |
+void main() => run(); |