blob: c9c8f773f26fc9472b254f0ef5fdca2a578413ec (
plain)
1
2
3
4
5
6
7
8
9
10
|
export macro todoInner = (module, line, msg)->
print "TODO#{msg and ': ' .. msg or ''} in file #{module}, at line #{line}"
{
code: "-- TODO#{msg and ': ' .. msg or ''}"
type: "lua"
}
export macro todo = (msg)-> |
$todoInner $FILE, $LINE#{msg and ", #{msg}" or ""}
|