AOT
usage
Wait
wait some condition before do something.
import { AOT_Placeholder, AOT } from 'aot';
class DB_Base {
constructor(){
this._db_init = this.initConnect()
}
protected _db_init:Promise<void>
async initConnect(){
}
}
class MyDB extends DB_Base {
private _init_aot = new AOT("init my db");
constructor(){
super();
this._init_aot.autoRegister(this);
this._db_init.then(()=>{
this._init_aot.compile(true);
});
}
@AOT_Placeholder.Wait("_db_init")
async insert(){
}
}
Then
replace some function if condition is false.
class FileSystem_Shim {
private async _writeFile_idb(){
}
}
class FileSystem extends FileSystem_Shim{
private _can_fs = new AOT('RequestFileSystem');
constructor(){
super();
this._can_fs.autoRegister(this);
this._can_fs.compile('webkitRequestFileSystem' in self||'requestFileSystem' in self);
}
@AOT_Placeholder.Then('_writeFile_idb')
async writeFile(){
}
}
you can use Wait
before Then
. have fun.