Update spec.md [skip ci] (#367)

This commit is contained in:
Alex Kuzmenko 2017-02-28 19:45:25 +02:00 committed by Henry Zhu
parent 09bb9bc6be
commit d9e9466350

View File

@ -1152,7 +1152,7 @@ interface ExportNamedDeclaration <: ModuleDeclaration {
}
```
An export named declaration, e.g., `export {foo, bar};`, `export {foo} from "mod";` or `export var foo = 1;`.
An export named declaration, e.g., `export {foo, bar};`, `export {foo} from "mod";`, `export var foo = 1;` or `export * as foo from "bar";`.
_Note: Having `declaration` populated with non-empty `specifiers` or non-null `source` results in an invalid state._