* fix: scope.inAsync should exclude reference in class property initializers * chore: add test on await in computed class property * fix flow error :(
4 lines
41 B
JavaScript
4 lines
41 B
JavaScript
class C {
|
|
#p = async () => await 42;
|
|
}
|