提交 9f9d0ec7 编写于 作者: M mahaifeng

调整部分示例避免iOS编译报错

上级 3daea108
...@@ -52,11 +52,17 @@ export function testSyncWithCallback(opts : AsyncOptions) : SyntaxResult { ...@@ -52,11 +52,17 @@ export function testSyncWithCallback(opts : AsyncOptions) : SyntaxResult {
async function testAwaitPromise(res : SyntaxResult) : Promise<SyntaxResult> { async function testAwaitPromise(res : SyntaxResult) : Promise<SyntaxResult> {
return await new Promise(function (resolve : (res : SyntaxResult) => void) { // #ifdef APP-ANDROID
setTimeout(() => { return await new Promise(function (resolve : (res : SyntaxResult) => void) {
resolve(res) resolve(res)
}, 2000) setTimeout(() => {
}) resolve(res)
}, 2000)
})
// #endif
// #ifndef APP-ANDROID
return res
// #endif
} }
/** /**
* 导出一个异步方法 * 导出一个异步方法
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册