ui skeleton to interrupt evaluation.

This commit is contained in:
Danny Yoo 2013-03-04 14:44:15 -07:00
parent d5d76c0796
commit bb1a24f972
2 changed files with 12 additions and 2 deletions

View File

@ -10,6 +10,6 @@
<div id="output"></div> <div id="output"></div>
<br/> <br/>
<input id="repl" type="text" style="width:500px"></input> <input id="repl" type="text" style="width:500px"></input><img id="break" src="break.png"/>
</body> </body>
</html> </html>

View File

@ -3,6 +3,10 @@ $(document).ready(function() {
var repl = $("#repl"); var repl = $("#repl");
var output = $("#output"); var output = $("#output");
var breakButton = $("#break");
breakButton.hide();
breakButton.click(function() { interruptEvaluation(); });
var M = plt.runtime.currentMachine; var M = plt.runtime.currentMachine;
@ -49,9 +53,11 @@ $(document).ready(function() {
$(this).val(""); $(this).val("");
repl.attr('disabled', 'true'); repl.attr('disabled', 'true');
repl.val("... evaluating..."); repl.val("... evaluating...");
breakButton.show();
evaluate(src, evaluate(src,
function() { repl.removeAttr('disabled'); function() { repl.removeAttr('disabled');
repl.val("");}); repl.val("");
breakButton.hide();});
} }
}); });
}); });
@ -85,6 +91,10 @@ $(document).ready(function() {
} }
}; };
var interruptEvaluation = function() {
console.log('interrupt evaluation');
};
// In evaluation, we'll send compilation requests to the server, // In evaluation, we'll send compilation requests to the server,
// and get back bytecode that we should evaluate. // and get back bytecode that we should evaluate.