From f79886060c002b304da72cdd947125bf43805928 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Thu, 9 Jun 2011 12:43:36 -0400 Subject: [PATCH] trying to teach the make system about javascript-implemented modules. --- NOTES | 7 ++++++- README | 4 +--- js-assembler/package.rkt | 39 ++++++++++++++++++++++++++++++++++---- tests/browser-evaluate.rkt | 1 + world.rkt | 3 +++ 5 files changed, 46 insertions(+), 8 deletions(-) create mode 100644 world.rkt diff --git a/NOTES b/NOTES index 3e6487e..6b0d027 100644 --- a/NOTES +++ b/NOTES @@ -738,4 +738,9 @@ I should add the functions: get-viewport-width get-viewport-height -Other notes from Shriram: too slow, inconsistent positioning from jsworld. \ No newline at end of file +Other notes from Shriram: too slow, inconsistent positioning from jsworld. + + +---------------------------------------------------------------------- + +Added base as the default planet language. \ No newline at end of file diff --git a/README b/README index 3e9b1b3..eec16ac 100644 --- a/README +++ b/README @@ -17,8 +17,6 @@ amount of time. Example usage -[TODO: make this a reality... The lang line would preferably be - #lang planet dyoo/whalesong] Create a simple, standalong executable of your program. At the @@ -27,7 +25,7 @@ moment, the program must be written in the base language of whalesong. from compiling, and we'll be working to remove this restriction.) $ cat hello.rkt - #lang s-exp "lang/base.rkt" + #lang planet dyoo/whalesong (display "hello world") (newline) diff --git a/js-assembler/package.rkt b/js-assembler/package.rkt index 712fa3c..f4e7aea 100644 --- a/js-assembler/package.rkt +++ b/js-assembler/package.rkt @@ -5,6 +5,7 @@ "../make/make.rkt" "../make/make-structs.rkt" "../parameters.rkt" + "../lang/js/query.rkt" (planet dyoo/closure-compile:1:1) (prefix-in runtime: "get-runtime.rkt") (prefix-in racket: racket/base)) @@ -38,6 +39,19 @@ +;; source-is-javascript-module?: Source -> (or Source #f) +(define (source-is-javascript-module? src) + (cond + [(StatementsSource? src) + src] + [(MainModuleSource? src) + src] + [(ModuleSource? src) + src] + [(SexpSource? src) + src] + [(UninterpretedSource? src) + src])) @@ -59,15 +73,32 @@ ;; wrap-source: source -> source (define (wrap-source src) (printf "adding ~s\n" src) - src) + (cond + [(source-is-javascript-module? src) + => + (lambda (wrapped-src) + wrapped-src)] + [else + src])) + (define (on-visit-src src ast stmts) - (assemble/write-invoke stmts op) - (fprintf op "(MACHINE, function() { ")) + (cond + [(UninterpretedSource? src) + ;; FIXME + (void)] + [else + (assemble/write-invoke stmts op) + (fprintf op "(MACHINE, function() { ")])) (define (after-visit-src src ast stmts) - (fprintf op " }, FAIL, PARAMS);")) + (cond + [(UninterpretedSource? src) + ;; FIXME + (void)] + [else + (fprintf op " }, FAIL, PARAMS);")])) (define (on-last-src) diff --git a/tests/browser-evaluate.rkt b/tests/browser-evaluate.rkt index e8ed6c7..fbcc48a 100644 --- a/tests/browser-evaluate.rkt +++ b/tests/browser-evaluate.rkt @@ -85,6 +85,7 @@ [program (second javascript-compiler+program)]) (with-handlers ([exn:fail? (lambda (exn) + (displayln exn) (let ([sentinel (format #<