Add missing semicolon in AST spec (#12454)

[skip ci]
This commit is contained in:
Sosuke Suzuki
2020-12-08 03:32:35 +09:00
committed by GitHub
parent b5b95f81dc
commit 2ba9265198

View File

@@ -1082,7 +1082,7 @@ An expression wrapped by parentheses. By default `@babel/parser` does not create
```js
interface DoExpression <: Expression {
type: "DoExpression";
body: BlockStatement
body: BlockStatement;
}
```