-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_espruino.js
51 lines (46 loc) · 1.76 KB
/
test_espruino.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
// Test by compiling the code into Espruino itself
var acorn = require("acorn");
var fs = require("fs");
var jsToC = require("./src/compile.js").jsToC;
var filename = "tests/test.js";
var js = fs.readFileSync(filename).toString();
var ast = acorn.parse(js, { ecmaVersion : 6 });
ast.body.forEach(function(node) {
if (node.type=="FunctionDeclaration") {
if (node.body.type=="BlockStatement" &&
node.body.body.length>0 &&
node.body.body[0].type=="ExpressionStatement" &&
node.body.body[0].expression.type=="Literal" &&
node.body.body[0].expression.value=="compiled") {
var compiled = jsToC(node);
fs.writeFileSync(filename+".h", compiled.cArgSpec+";\n");
fs.writeFileSync(filename+".c",
'/*JSON{\n'+
' "type" : "function",\n'+
' "name" : "'+compiled.functionName+'",\n'+
' "generate" : "'+compiled.functionName+'",\n'+
' "params" : [\n'+
' ["a","JsVar",""],\n'+
' ["b","JsVar",""],\n'+
' ["c","JsVar",""]\n'+
' ],\n'+
' "return" : ["JsVar",""]\n'+
'}\n'+
'*/\n');
fs.writeFileSync(filename+"c.cpp",
'extern "C" {\n'+
'#include "src/jsvar.h"\n'+
'#include "src/jsparse.h"\n'+
"#include "+JSON.stringify("../"+filename+".h")+"\n"+
"}\n"+
"\n"+
compiled.code+"\n");
var exec = require('child_process').exec;
var cmd = "DEBUG=1 CFILE=../EspruinoCompiler/"+filename+".c CPPFILE=../EspruinoCompiler/"+filename+"c.cpp make";
exec(cmd, { cwd : "../Espruino" }, function (error, stdout, stderr) {
if (stdout) console.log('stdout: ' + stdout+"\n");
if (stderr) console.log('stderr: ' + stderr+"\n");
});
}
}
});