9 lines
159 B
Plaintext
9 lines
159 B
Plaintext
// invalid_json_macro.hako
|
|
// Macro that returns invalid JSON (for strict error test)
|
|
|
|
static box MacroBoxSpec {
|
|
expand(json) {
|
|
return "NOT_JSON!"
|
|
}
|
|
}
|