generated from tc39/template-for-proposals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec.emu
42 lines (37 loc) · 1.29 KB
/
spec.emu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<meta charset="utf8">
<link rel="stylesheet" href="./spec.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/github.min.css">
<script src="./spec.js"></script>
<pre class="metadata">
title: Qualified Imports
stage: -1
contributors: Michał Miszczyszyn
</pre>
<emu-clause id="sec-ecmascript-language-scripts-and-modules" number="16">
<h1>ECMAScript Language: Scripts and Modules</h1>
<emu-clause id="sec-modules" number="2">
<h1>Modules</h1>
<emu-clause id="sec-imports" number="2">
<h1>Imports</h1>
<h2>Syntax</h2>
<emu-grammar type="definition">
ImportClause :
ImportedDefaultBinding
NameSpaceImport
NamedImports
NamedImports <ins>QualifiedImportClause</ins>
ImportedDefaultBinding `,` NameSpaceImport
ImportedDefaultBinding `,` NamedImports
ImportedDefaultBinding `,` NamedImports <ins>QualifiedImportClause</ins>
<ins>QualifiedImportClause :
`as` ImportedBinding</ins>
</emu-grammar>
<emu-clause id="sec-static-semantics-importentriesformodule" type="sdo" number="3">
<h1>
Static Semantics: ImportEntriesForModule
</h1>
</emu-clause>
</emu-clause>
</emu-clause>
</emu-clause>