Skip to content

Commit

Permalink
Add DoExpression to spec (babel#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-kuzmenko authored and danez committed Mar 3, 2017
1 parent d9e9466 commit 962ce16
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ast/spec.md
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 962ce16

Please sign in to comment.