Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: sky/specs/modules.md

Issue 687353003: Specs: Add a way for the inspector to see the registered event listeners (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/specs/apis.md ('k') | sky/specs/script.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Sky module system 1 Sky Module System
2 ================= 2 =================
3 3
4 This document describes the Sky module system. 4 This document describes the Sky module system.
5 5
6 Overview 6 Overview
7 -------- 7 --------
8 8
9 The Sky module system is based on the ```import``` element. In its 9 The Sky module system is based on the ```import``` element. In its
10 most basic form, you import a module as follows: 10 most basic form, you import a module as follows:
11 11
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 Where ```name_1``` through ```name_n``` are the names bound to the 68 Where ```name_1``` through ```name_n``` are the names bound to the
69 various named imports in the script element's document, 69 various named imports in the script element's document,
70 ```source_code``` is the text content of the script element, 70 ```source_code``` is the text content of the script element,
71 ```source_module`` is the ```Module``` object of the script element's 71 ```source_module`` is the ```Module``` object of the script element's
72 module, and ```value_1``` through ```value_n``` are the values 72 module, and ```value_1``` through ```value_n``` are the values
73 exported by the various named imports in the script element's 73 exported by the various named imports in the script element's
74 document. 74 document.
75 75
76 When an import fails to load, the ```as``` name for the import gets 76 When an import fails to load, the ```as``` name for the import gets
77 bound to ```undefined```. 77 bound to ```undefined```.
OLDNEW
« no previous file with comments | « sky/specs/apis.md ('k') | sky/specs/script.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698