* fix: scope.inAsync should exclude reference in class property initializers * chore: add test on await in computed class property * fix flow error :(
7 lines
97 B
JavaScript
7 lines
97 B
JavaScript
async () => {
|
|
class C {
|
|
// here await is an identifier reference
|
|
p = await + 42;
|
|
}
|
|
}
|