yuescript-src 0.13.6

Sources of Yuescript and logic to build them.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
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)->
	if msg
		"$todoInner $FILE, $LINE, #{msg}"
	else
		"$todoInner $FILE, $LINE"