Promise インスタンスの内部プロパティ

Promise のインスタンスが、その機能の実現のため内部に保持するプロパティについて:

  • [[PromiseState]] : 'pending' | 'resolved' | 'rejected'
  • [[PromiseResult]] : 結果の javascript オブジェクト
  • [[PromiseFulfillReactions]] : resolve した時に実行するべき PromiseReaction Record のリスト
  • [[PromiseRejectReactions]] : reject した時に実行するべき PromiseReaction Record のリスト
  • [[PromiseIsHandled]] : unhandled rejection tracking のために使う

src: https://tc39.es/ecma262/#sec-properties-of-promise-instances