Fix analyze api test failure

TBR=ager@google.com

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@20954 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
sgjesse@google.com 2013-04-05 09:52:30 +00:00
parent 20dade5ff5
commit 43efc42bc5
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ patch class Process {
patch class _ProcessUtils {
/* patch */ static _exit(int status) native "Process_Exit";
/* patch */ static _setExitCode(int status) native "Process_SetExitCode";
/* patch */ static _sleep(int miliseconds) native "Process_Sleep";
/* patch */ static _sleep(int millis) native "Process_Sleep";
}

View file

@ -9,7 +9,7 @@ part of dart.io;
class _ProcessUtils {
external static _exit(int status);
external static _setExitCode(int status);
external static _sleep(int status);
external static _sleep(int millis);
}
/**