- 신선한 탐사자(fable) 단일 컨텍스트, 지시서 -round10-brief.md §2 레인 A·C 완료, B 부분, D ALL PASS - audit/handtrace-round10-reference-impl/: round7 참조 구현을 현재 계약으로 갱신·재실행 (부수: round7/ref9 _recompute 첫 인자 오류 발견·정정) - base/·인덱스 레이어는 미변경 — 결정은 사용자 배치 회신 뒤 -round10-followup.md로 Co-authored-by: qwreey <me@qwreey.moe> Claude-Session: https://claude.ai/code/session_01546hjsYNLSMZdHdPyTZaGb
11 lines
448 B
Text
11 lines
448 B
Text
--!nocheck
|
|
local q = require("./core"); local D = require("./dispatch")
|
|
local inst = {}
|
|
local s2 = D.newSlot("s2")
|
|
local bl = D.getBlocker(inst); bl:On()
|
|
-- 1번 자리 등록 생략(H-39 버그 재발), 2번은 발행 채널이 있는 Slot
|
|
local ok, err = pcall(function()
|
|
D.setOffsetSource(inst, 2, s2.Offset) -- 여기서 getOffsetAt(inst, 2)를 부른다
|
|
end)
|
|
print("setOffsetSource에서 터지는가:", not ok)
|
|
print("메시지:", err)
|