mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
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:
parent
20dade5ff5
commit
43efc42bc5
2 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue