quad/.claude/audit/handtrace-round10-reference-impl/spikes/d1_basic.luau
qwreey d2d67c7aeb
qa: 10라운드 광범위 탐사 완료 — 발견 H-150~H-157 (🔴 0 / 🟡 5 / 🟢 3), §4 배치 문항 7건 회신 대기
- 신선한 탐사자(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
2026-08-28 01:03:05 +09:00

12 lines
562 B
Text

--!nocheck
local q = require("./core"); local D = require("./dispatch")
local inst = {} -- 최상위 물리 inst가 owner
-- Frame { A, B, C } — 전부 plain 요소(길이 1, 발행 채널 None)
local bl = D.getBlocker(inst); bl:On()
for i = 1, 3 do
D.setOffsetSource(inst, i, D.None)
D.setLength(inst, i, 1, inst)
end
bl:OffWithoutEmit(); D.recompute(inst, D.getBookkeeping(inst))
print("offsets:", D.getOffsetAt(inst,1), D.getOffsetAt(inst,2), D.getOffsetAt(inst,3), "| 다음 자리:", D.getOffsetAt(inst,4))
print("recompute 횟수:", D.stats())