mirror of https://github.com/tc39/test262.git
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
|
function __consolePrintHandle__(msg){
|
||
|
print(msg);
|
||
|
}
|
||
|
|
||
|
function $DONE(){
|
||
|
if(!arguments[0])
|
||
|
__consolePrintHandle__('Test262:AsyncTestComplete');
|
||
|
else
|
||
|
__consolePrintHandle__('Error: ' + arguments[0]);
|
||
|
}
|