惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
S
Schneier on Security
The Hacker News
The Hacker News
P
Proofpoint News Feed
Spread Privacy
Spread Privacy
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
I
Intezer
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Schneier on Security
Schneier on Security
Security Latest
Security Latest
AWS News Blog
AWS News Blog
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
博客园 - 叶小钗
The Last Watchdog
The Last Watchdog
O
OpenAI News
月光博客
月光博客
Hacker News: Ask HN
Hacker News: Ask HN
阮一峰的网络日志
阮一峰的网络日志
S
Security @ Cisco Blogs
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Latest news
Latest news
P
Palo Alto Networks Blog
Last Week in AI
Last Week in AI
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
PCI Perspectives
PCI Perspectives
博客园 - 聂微东
SecWiki News
SecWiki News
宝玉的分享
宝玉的分享
Forbes - Security
Forbes - Security
H
Heimdal Security Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Hugging Face - Blog
Hugging Face - Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Troy Hunt's Blog
博客园 - 三生石上(FineUI控件)
Application and Cybersecurity Blog
Application and Cybersecurity Blog
罗磊的独立博客
WordPress大学
WordPress大学
D
Darknet – Hacking Tools, Hacker News & Cyber Security

Recent Commits to ecma262:main

Meta: update actions/checkout to v7 (#3898) Normative: Add missing Symbol.dispose and Symbol.asyncDispose propert… Editorial: Narrow the Property Descriptor [[Getter]] and [[Setter]] d… Editorial: rename alias that slipped past CI (#3895) Editorial: Rename PrivateElement [[Get]]/[[Set]] to [[Getter]]/[[Sett… Editorial: Rename PropertyDescriptor [[Get]]/[[Set]] to [[Getter]]/[[… Editorial: replace uses of "Record value" with just "Record" (#3891) Markup: updated print-only styles for >= 2026 edition (#3889) Editorial: Refactor parseInt into more cleanly-separated phases (#3841) Editorial: Don't check a cover for early errors (#3227) Editorial: Factor out RunCallerContext AO (#3846) Normative: Add `using` and `await using` Declarations, SuppressedErro… Meta: Add a "commit" prefix in the non-PR fallback mode (#3888) Meta: Improve the snapshot warning (#3888) Editorial: Improve more alias names (#3886)t Meta: IPR: a user renamed their account Editorial: Fix ordering of Atomics functions (#3884) Editorial: Move GlobalSymbolRegistry to the Agent record (#3880) Editorial: reword description of subclassing (#3872) Editorial: replace remaining use of [[HostSynchronizesWith]] (#3806)
Editorial: define thenable (#2869) · tc39/ecma262@1355a23
ikravets · 2026-07-10 · via Recent Commits to ecma262:main
Original file line numberDiff line numberDiff line change

@@ -50582,6 +50582,7 @@ <h1>Promise Objects</h1>

5058250582

</ul>

5058350583

<p>A promise is said to be <em>settled</em> if it is not pending, i.e. if it is either fulfilled or rejected.</p>

5058450584

<p>A promise is <em>resolved</em> if it is settled or if it has been “locked in” to match the state of another promise. Attempting to resolve or reject a resolved promise has no effect. A promise is <em>unresolved</em> if it is not resolved. An unresolved promise is always in the pending state. A resolved promise may be pending, fulfilled or rejected.</p>

50585+

<p>A <dfn variants="thenables">thenable</dfn> is an object _obj_ for which Get(_obj_, *"then"*) returns a function object.</p>

5058550586
5058650587

<emu-clause id="sec-promise-abstract-operations">

5058750588

<h1>Promise Abstract Operations</h1>