Twitter hashtag: #esspec
便利ツール
時事ネタ
自己紹介 (近況報告)
syumai syumai.icon
Go / TSを書いて暮らしてます
今週末、TSKaigi Kansai 2024で話してきます
LT「初めてDefinitely TypedにPRを出した話」
スポンサーの件のブログが出てます
丸一年間壊れ続けていたiPhoneのカメラを直した
iwatsurut
とくに、イベントもなく過ごしています。
YAMAMOTO Yuji
2024/10/01 初参加
iPad Proのディスプレイが壊れたので直したら、純正パーツじゃなかったためか音ゲーがめっちゃプレイしづらくなってしまって辛い
前回のあらすじ
20:40 再開
We unwind back to the InnerModuleEvaluation on B... から
今回の範囲
16.2.1.5.4 Example Cyclic Module Record Graphsの Now, consider a module graph with a cycle: から
終わり次第、 16.2.1.5 Cyclic Module Records に戻る
気になりポイント
フォントの指定が間違っているやつ
誤: Then, when the host calls A.Link(), it will complete successfully (again by assumption) such that A.Status = B.Status = C.Status = linked
正: Then, when the host calls A.Link(), it will complete successfully (again by assumption) such that A.Status = B.Status = C.Status = LINKED
Table 45: Module fields after the initial Evaluate() call
C: [[PendingAsyncDependencies]] 2 (D and E)
Dは既にEVALUATINGなので、Pendingの数え上げに含める必要があるのかわからない
Table 51: Module fields after module C finishes with an error
A: [[EvaluationError]] がEMPTYのままなのに、 [[Status]] が EVALUATEDになっているのはおかしいかもしれない
C: [[PendingAsyncDependencies]] の網掛けと中央寄せは多分いらない
メモ
EVALUATING -> EVALUATING-ASYNCは遷移が存在する
AsyncEvaluationがtrueの時に、Evaluate呼び出しから戻るタイミングで、一気にまとめてEVALUATING-ASYNCになる