Implement ? suffix to "quiet" a context and exclude it from backtraces (#1800)

This commit is contained in:
Rangi
2025-08-18 21:34:58 -04:00
committed by GitHub
parent 77a105e189
commit b7e0783ae7
32 changed files with 392 additions and 139 deletions

View File

@@ -0,0 +1,20 @@
macro mac
warn "from macro"
endm
mac ; normal
macro? quiet
warn "from quiet macro"
endm
quiet
rept? 1
warn "from quiet rept"
endr
for? x, 1
warn "from quiet for (x={d:x})"
endr
include? "quiet-backtrace.inc"
macro loud
warn "from loud macro"
endm
mac?