Add _File._deleteLink to dart2js dart:io patch.

BUG=

Review URL: https://codereview.chromium.org//13780002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21046 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ajohnsen@google.com 2013-04-08 07:51:01 +00:00
parent e75df511a6
commit d9acfd62ee

View file

@ -78,6 +78,9 @@ patch class _File {
patch static _delete(String path) {
throw new UnsupportedError("File._delete");
}
patch static _deleteLink(String path) {
throw new UnsupportedError("File._deleteLink");
}
patch static _directory(String path) {
throw new UnsupportedError("File._directory");
}