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