From bb1a24f972afe1127acf4262ea6764a0a7d13cde Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 4 Mar 2013 14:44:15 -0700 Subject: [PATCH] ui skeleton to interrupt evaluation. --- whalesong/repl-prototype/htdocs/index.html | 2 +- whalesong/repl-prototype/htdocs/repl.js | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/whalesong/repl-prototype/htdocs/index.html b/whalesong/repl-prototype/htdocs/index.html index f7735b8..89259f2 100644 --- a/whalesong/repl-prototype/htdocs/index.html +++ b/whalesong/repl-prototype/htdocs/index.html @@ -10,6 +10,6 @@

- + diff --git a/whalesong/repl-prototype/htdocs/repl.js b/whalesong/repl-prototype/htdocs/repl.js index 0101fd1..6830609 100644 --- a/whalesong/repl-prototype/htdocs/repl.js +++ b/whalesong/repl-prototype/htdocs/repl.js @@ -3,6 +3,10 @@ $(document).ready(function() { var repl = $("#repl"); var output = $("#output"); + var breakButton = $("#break"); + breakButton.hide(); + breakButton.click(function() { interruptEvaluation(); }); + var M = plt.runtime.currentMachine; @@ -49,9 +53,11 @@ $(document).ready(function() { $(this).val(""); repl.attr('disabled', 'true'); repl.val("... evaluating..."); + breakButton.show(); evaluate(src, 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, // and get back bytecode that we should evaluate.