-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Runtime compiler RFC#1070 support #21076
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| export * from './lib/public-api'; | ||
|
|
||
| export { ALLOWED_GLOBALS } from './lib/plugins/allowed-globals'; |
This file contains hidden or 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
72 changes: 72 additions & 0 deletions
72
packages/@ember/template-compiler/lib/plugins/allowed-globals.ts
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| /** | ||
| * @private | ||
| * | ||
| * RFC: https://github.com/emberjs/rfcs/pull/1070 | ||
| * | ||
| * Criteria for inclusion in this list: | ||
| * | ||
| * Any of: | ||
| * - begins with an uppercase letter | ||
| * - guaranteed to never be added to glimmer as a keyword (e.g.: globalThis) | ||
| * | ||
| * And: | ||
| * - must not need new to invoke | ||
| * - must not require lifetime management (e.g.: setTimeout) | ||
| * - must not be a single-word lower-case API, because of potential collision with future new HTML elements | ||
| * - if the API is a function, the return value should not be a promise | ||
| * - must be one one of these lists: | ||
| * - https://tc39.es/ecma262/#sec-global-object | ||
| * - https://tc39.es/ecma262/#sec-function-properties-of-the-global-object | ||
| * - https://html.spec.whatwg.org/multipage/nav-history-apis.html#window | ||
| * - https://html.spec.whatwg.org/multipage/indices.html#all-interfaces | ||
| * - https://html.spec.whatwg.org/multipage/webappapis.html | ||
| */ | ||
| export const ALLOWED_GLOBALS = new Set([ | ||
| // //////////////// | ||
| // namespaces | ||
| // //////////////// | ||
| // TC39 | ||
| 'globalThis', | ||
| 'Atomics', | ||
| 'JSON', | ||
| 'Math', | ||
| 'Reflect', | ||
| // WHATWG | ||
| 'localStorage', | ||
| 'sessionStorage', | ||
| 'URL', | ||
| // //////////////// | ||
| // functions / utilities | ||
| // //////////////// | ||
| // TC39 | ||
| 'isNaN', | ||
| 'isFinite', | ||
| 'parseInt', | ||
| 'parseFloat', | ||
| 'decodeURI', | ||
| 'decodeURIComponent', | ||
| 'encodeURI', | ||
| 'encodeURIComponent', | ||
| // WHATWG | ||
| 'postMessage', | ||
| 'structuredClone', | ||
| // //////////////// | ||
| // new-less Constructors (still functions) | ||
| // //////////////// | ||
| // TC39 | ||
| 'Array', // different behavior from (array) | ||
| 'BigInt', | ||
| 'Boolean', | ||
| 'Date', | ||
| 'Number', | ||
| 'Object', // different behavior from (hash) | ||
| 'String', | ||
| // //////////////// | ||
| // Values | ||
| // //////////////// | ||
| // TC39 | ||
| 'Infinity', | ||
| 'NaN', | ||
| // WHATWG | ||
| 'isSecureContext', | ||
| ]); | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all of this copied from babel-plugin-ember-template-compilation
perhaps in a future release babel-plugin-ember-template-compilation could import this file (or remove the list entirely if we do this right)