docs: [skip ci] update AST spec

This commit is contained in:
Sven SAULEAU
2018-05-23 09:42:33 +02:00
committed by GitHub
parent 6b91d6434d
commit ad1de09b5f

View File

@@ -239,6 +239,7 @@ interface NumericLiteral <: Literal {
```js
interface Program <: Node {
type: "Program";
interpreter: string | null;
sourceType: "script" | "module";
body: [ Statement | ModuleDeclaration ];
directives: [ Directive ];