| commit | d3344948ebe1f7a03f19d172288309e2108505f5 | [log] [tgz] |
|---|---|---|
| author | whesse@google.com <whesse@google.com> | Wed Oct 30 15:17:01 2013 +0000 |
| committer | whesse@google.com <whesse@google.com> | Wed Oct 30 15:17:01 2013 +0000 |
| tree | 6e283a121c63cf419966870602a5aa0b1ca6e9ef | |
| parent | 35a756b9766e27423cc416239c61c6873db2d369 [diff] |
Remove uses of Options from pkg, samples, tests, and third_party directories. BUG= R=sgjesse@google.com Review URL: https://codereview.chromium.org//52573002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/source_maps@29552 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/pkgs/source_maps/test/run.dart b/pkgs/source_maps/test/run.dart index 876cff7..21d2037 100755 --- a/pkgs/source_maps/test/run.dart +++ b/pkgs/source_maps/test/run.dart
@@ -18,9 +18,8 @@ import 'utils_test.dart' as utils_test; import 'vlq_test.dart' as vlq_test; -main() { - var args = new Options().arguments; - var pattern = new RegExp(args.length > 0 ? args[0] : '.'); +main(List<String> arguments) { + var pattern = new RegExp(arguments.length > 0 ? arguments[0] : '.'); useCompactVMConfiguration(); void addGroup(testFile, testMain) {