embark/lib/modules/solidity/solcP.js

20 lines
489 B
JavaScript
Raw Normal View History

2017-03-29 17:50:05 +00:00
let solc;
2017-02-25 03:49:34 +00:00
2017-03-30 11:12:39 +00:00
process.on('message', function (msg) {
2017-02-25 03:49:34 +00:00
if (msg.action === 'loadCompiler') {
solc = require(msg.solcLocation);
2017-02-25 03:49:34 +00:00
process.send({result: "loadedCompiler"});
}
if (msg.action === 'compile') {
// TODO: only available in 0.4.11; need to make versions warn about this
let output = solc.compileStandardWrapper(JSON.stringify(msg.jsonObj));
2017-02-25 03:49:34 +00:00
process.send({result: "compilation", output: output});
}
});
2017-03-30 11:12:39 +00:00
process.on('exit', function () {
process.exit(0);
});