Fix syntax error in args.dart, reenable args tests.

Review URL: https://chromiumcodereview.appspot.com//10837315

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@10920 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
dgrove@google.com 2012-08-17 20:15:29 +00:00
parent de05dec3f1
commit f76b3e0ac8
2 changed files with 1 additions and 3 deletions

View file

@ -531,7 +531,7 @@ class ArgResults {
}
/** Get the names of the options as a [Collection]. */
Collection<String> get options => _options.getKeys();
Collection<String> get options() => _options.getKeys();
}
class _Option {

View file

@ -25,5 +25,3 @@ unittest/test/instance_test: Skip
[ $compiler == dart2js && $checked ]
fixnum/test/int_32_test: Fail # Issue 3720.
fixnum/test/int_64_test: Fail # Issue 3720.
args/test/*: Skip # TODO(dgrove): skip while I get bots fixed