JSTQL-JS-Transform/dsl_files/test.jstl

11 lines
222 B
Text
Raw Normal View History

proposal (async) {
applicable to {
let _$_a_$_ = await _$_expr_$_();
console.log(_$_a_$_);
}
replace with {
_$_expr_$_().then(() => {
console.log(_$_a_$_);
})
}
}