diff --git a/whalesong/repl-prototype/htdocs/repl.js b/whalesong/repl-prototype/htdocs/repl.js index 5b7afab..54de387 100644 --- a/whalesong/repl-prototype/htdocs/repl.js +++ b/whalesong/repl-prototype/htdocs/repl.js @@ -13,6 +13,9 @@ jQuery(document).ready(function() { // The machine. var M; + + var interactionsCount = 0; + var sendOutputToBottom = function() { output.get(0).scrollTop = output.get(0).scrollHeight; }; @@ -206,7 +209,9 @@ jQuery(document).ready(function() { writeErrorMessage("internal server error"); after(); }; - xhr.replCompile(src, onCompile, onServerError); + xhr.replCompile("", + src, onCompile, onServerError); + interactionsCount = interactionsCount + 1; }; diff --git a/whalesong/repl-prototype/htdocs/rpc.js b/whalesong/repl-prototype/htdocs/rpc.js index 4a25014..eadf330 100644 --- a/whalesong/repl-prototype/htdocs/rpc.js +++ b/whalesong/repl-prototype/htdocs/rpc.js @@ -1,7 +1,7 @@ (function () { "use strict"; var url = "/compile"; - var replCompile = function(code, onDone, onDoneError) { + var replCompile = function(name, code, onDone, onDoneError) { jQuery.ajax({ 'url': url, 'cache': false, 'success': function(data, textStatus, jqXHR) { @@ -10,7 +10,8 @@ 'error': function(jqXHR, textStatus, errorThrown) { onDoneError(errorThrown); }, - 'data': {'src' : code }, + 'data': {'name' : name, + 'src' : code }, 'dataType': 'json' }); }; diff --git a/whalesong/repl-prototype/server.rkt b/whalesong/repl-prototype/server.rkt index 5603c16..c95be15 100644 --- a/whalesong/repl-prototype/server.rkt +++ b/whalesong/repl-prototype/server.rkt @@ -64,6 +64,9 @@ (define (start req) (define-values (response op) (make-port-response #:mime-type #"text/json" #:with-cors? #t)) + (define name (if (exists-binding? 'name (request-bindings req)) + (extract-binding/single 'name (request-bindings req)) + #f)) (define text-src (extract-binding/single 'src (request-bindings req))) (define as-mod? (match (extract-bindings 'm (request-bindings req)) [(list (or "t" "true")) @@ -79,7 +82,7 @@ (port-count-lines! ip) (define assembled-codes (let loop () - (define sexp (read-syntax #f ip)) + (define sexp (read-syntax name ip)) (cond [(eof-object? sexp) '()] [else