Add DoExpression to spec (#364)

This commit is contained in:
Alex Kuzmenko 2017-03-03 22:38:04 +02:00 committed by Daniel Tschinder
parent d9e9466350
commit 962ce16e84

View File

@ -78,6 +78,7 @@ These are the core Babylon AST node types.
- [CallExpression](#callexpression)
- [NewExpression](#newexpression)
- [SequenceExpression](#sequenceexpression)
- [DoExpression](#doexpression)
- [Template Literals](#template-literals)
- [TemplateLiteral](#templateliteral)
- [TaggedTemplateExpression](#taggedtemplateexpression)
@ -920,6 +921,15 @@ interface SequenceExpression <: Expression {
A sequence expression, i.e., a comma-separated sequence of expressions.
## DoExpression
```js
interface DoExpression <: Expression {
type: "DoExpression";
body: BlockStatement
}
```
# Template Literals
## TemplateLiteral