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