blob: 8abdcd5a6f4e4f827bffaa8da743f891de1221ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
local function printr(...)
print(...)
return ...
end
local collect = {}
local function printr_collect(...)
table.insert(collect, (...))
return printr(...)
end
-- used to print what the lua parser (load) is seeing, after cratera has done its thing
loadstring = nil
local realload = load
load = function(target, ...)
if type(target) == "function" then
return realload(function() return printr_collect(target()) end, ...)
else
return realload(printr_collect(target), ...)
end
end
local cratera = require "dirtycratera"
-- first test: does it handle lua code properly?
assert(printr(cratera.load(io.lines("dirtycompiler.lua", "*a")())))()
print("-----------------------------------------------------------------------------------------------------------------------")
print(table.concat(collect))
collect = {}
-- second test: does it handle cratera tests properly?
assert(printr(cratera.load(io.lines("tests.cratera", "*a")())))()
print("-----------------------------------------------------------------------------------------------------------------------")
print(table.concat(collect))
|