generated from explainers-by-googlers/template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ Title: Explicit JavaScript Compile Hints (File-based) | |
Shortname: explicit-js-compile-hints | ||
Level: None | ||
Status: LD | ||
Repository: explainers-by-googlers/explicit-javascript-compile-hints-file-based | ||
URL: https://explainers-by-googlers.github.io/explicit-javascript-compile-hints-file-based/ | ||
Repository: WICG/explicit-javascript-compile-hints-file-based | ||
URL: https://github.com/WICG/explicit-javascript-compile-hints-file-based | ||
Editor: Marja Hölttä, Google, https://google.com, [email protected] | ||
Abstract: A magic comment in JavaScript for signaling certain scripts / functions should be prioritized. | ||
Markup Shorthands: markdown yes, css no | ||
|
@@ -25,6 +25,17 @@ This proposal introduces a new magic comment that signals to browsers that the f | |
|
||
In its current form, it’s not a defined standard and is subject to modifications. | ||
|
||
Example usage {#example} | ||
======================== | ||
|
||
In this example, the magic comment is used for triggering the eager compilation of the two JavaScript functions in the file: | ||
```JavaScript | ||
//# eagerCompilation=all | ||
|
||
function foo() { ... } // will now be eagerly parsed and compiled | ||
function bar() { ... } // will now be eagerly parsed and compiled | ||
``` | ||
|
||
Additions to Script Records and Source Text Module Records {#additions} | ||
======================================================================= | ||
|
||
|