13 lines
223 B
Plaintext
13 lines
223 B
Plaintext
// hang_macro.hako
|
|
// Macro that never returns (infinite loop) to test timeout handling.
|
|
|
|
static box MacroBoxSpec {
|
|
expand(json) {
|
|
// Busy loop forever
|
|
loop(true) {
|
|
// do nothing
|
|
}
|
|
return json
|
|
}
|
|
}
|