Mercurial > repos > tabletprog
view scripttags.js @ 354:a6cdcc1b1c02
Fix il and llcompile modules enough that it actually attempts to run the compiled program
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Wed, 15 Apr 2015 20:08:38 -0700 |
parents | da7f585bf626 |
children |
line wrap: on
line source
function compileAndRun(src) { var ast = parser.parse(src); asyncProcessTopLevelJS(toplevel, function() { var js = makeJSProg(ast); eval(js); }); /*.toJSModule(); mainModule = eval(js); if (mainModule.strue) { each(mainModule.strue, function(key, val) { if(val instanceof Function) { Boolean.prototype[key] = function() { return this.valueOf() ? mainModule.strue[key].apply(mainModule.strue, arguments) : mainModule.sfalse[key].apply(mainModule.sfalse, arguments); }; } }); } mainModule.main();*/ } onReady(function() { toplevel.onReady( function() { var tags = qall('script[type="text/tabletprog"]'); for (var i = 0; i < tags.length; ++i) { if (tags[i].src) { (function() { var src = tags[i].src; get(src, function(req) { console.log('Compiling ' + src); compileAndRun(req.responseText); }); })(); } else { compileAndRun(tags[i].innerHTML); } } }); });