feat: Warns the user if they exceed 16 context frames.

This commit is contained in:
Spencer Brower
2026-07-28 15:41:44 -04:00
parent f1c7d02bc1
commit 6d7b88a8d6
5 changed files with 240 additions and 152 deletions
+8 -4
View File
@@ -10,11 +10,15 @@ Inner :: struct {
bar: int,
}
Page :: struct {
title: string,
}
Outer :: struct {
title: string,
page.title: string,
inner: Inner,
numbers: [3]int,
title: string,
page: Page,
inner: Inner,
numbers: [3]int,
}
@(test)