Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 303 Bytes

es2017.md

File metadata and controls

18 lines (14 loc) · 303 Bytes

This document specifies the extensions to the core ESTree AST types to support the ES2017 grammar.

Function

extend interface Function {
    async: boolean;
}

AwaitExpression

interface AwaitExpression <: Expression {
    type: "AwaitExpression";
    argument: Expression;
}