trying to trace why there's a second newline after color display
This commit is contained in:
parent
ed445f1d92
commit
e2869e744e
|
@ -1,8 +1,7 @@
|
||||||
#lang s-exp "../lang/js/js.rkt"
|
#lang s-exp "../lang/base.rkt"
|
||||||
|
|
||||||
(declare-implementation
|
(require "private/main.rkt"
|
||||||
#:racket "racket-impl.rkt"
|
"private/color.rkt")
|
||||||
#:javascript ("colordb.js"
|
|
||||||
"kernel.js"
|
(provide (all-from-out "private/main.rkt")
|
||||||
"js-impl.js")
|
(all-from-out "private/color.rkt"))
|
||||||
#:provided-values (is-color?))
|
|
||||||
|
|
10
image/private/color.rkt
Normal file
10
image/private/color.rkt
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#lang s-exp "../../lang/base.rkt"
|
||||||
|
|
||||||
|
(provide [struct-out color])
|
||||||
|
|
||||||
|
(define-struct color (red green blue alpha)
|
||||||
|
#:extra-constructor-name make-color)
|
||||||
|
|
||||||
|
|
||||||
|
(color 3 4 5 0)
|
||||||
|
(make-color 3 5 7 0)
|
8
image/private/main.rkt
Normal file
8
image/private/main.rkt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#lang s-exp "../../lang/js/js.rkt"
|
||||||
|
|
||||||
|
(declare-implementation
|
||||||
|
#:racket "racket-impl.rkt"
|
||||||
|
#:javascript ("colordb.js"
|
||||||
|
"kernel.js"
|
||||||
|
"js-impl.js")
|
||||||
|
#:provided-values (is-color?))
|
|
@ -1,4 +1,4 @@
|
||||||
#lang s-exp "../lang/base.rkt"
|
#lang s-exp "../../lang/base.rkt"
|
||||||
|
|
||||||
(provide is-color?)
|
(provide is-color?)
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
(require "assemble.rkt"
|
(require "assemble.rkt"
|
||||||
"quote-cdata.rkt"
|
"quote-cdata.rkt"
|
||||||
|
"../logger.rkt"
|
||||||
"../make/make.rkt"
|
"../make/make.rkt"
|
||||||
"../make/make-structs.rkt"
|
"../make/make-structs.rkt"
|
||||||
"../parameters.rkt"
|
"../parameters.rkt"
|
||||||
|
@ -67,9 +68,11 @@
|
||||||
[(StatementsSource? src)
|
[(StatementsSource? src)
|
||||||
#f]
|
#f]
|
||||||
[(MainModuleSource? src)
|
[(MainModuleSource? src)
|
||||||
(source-is-javascript-module? (MainModuleSource-source src))]
|
(source-is-javascript-module?
|
||||||
|
(MainModuleSource-source src))]
|
||||||
[(ModuleSource? src)
|
[(ModuleSource? src)
|
||||||
(query:has-javascript-implementation? `(file ,(path->string (ModuleSource-path src))))]
|
(query:has-javascript-implementation?
|
||||||
|
`(file ,(path->string (ModuleSource-path src))))]
|
||||||
[(SexpSource? src)
|
[(SexpSource? src)
|
||||||
#f]
|
#f]
|
||||||
[(UninterpretedSource? src)
|
[(UninterpretedSource? src)
|
||||||
|
@ -151,8 +154,10 @@ MACHINE.modules[~s] =
|
||||||
;; Translate all JavaScript-implemented sources into uninterpreted sources;
|
;; Translate all JavaScript-implemented sources into uninterpreted sources;
|
||||||
;; we'll leave its interpretation to on-visit-src.
|
;; we'll leave its interpretation to on-visit-src.
|
||||||
(define (wrap-source src)
|
(define (wrap-source src)
|
||||||
|
(log-debug "Checking if the source has a JavaScript implementation")
|
||||||
(cond
|
(cond
|
||||||
[(source-is-javascript-module? src)
|
[(source-is-javascript-module? src)
|
||||||
|
(log-debug "Replacing implementation with JavaScript one.")
|
||||||
(get-javascript-implementation src)]
|
(get-javascript-implementation src)]
|
||||||
[else
|
[else
|
||||||
src]))
|
src]))
|
||||||
|
@ -208,7 +213,9 @@ MACHINE.modules[~s] =
|
||||||
;; package-standalone-xhtml: X output-port -> void
|
;; package-standalone-xhtml: X output-port -> void
|
||||||
(define (package-standalone-xhtml source-code op)
|
(define (package-standalone-xhtml source-code op)
|
||||||
(display *header* op)
|
(display *header* op)
|
||||||
|
(log-debug "writing the runtime")
|
||||||
(display (quote-cdata (get-runtime)) op)
|
(display (quote-cdata (get-runtime)) op)
|
||||||
|
(log-debug "writing the source code")
|
||||||
(display (quote-cdata (get-code source-code)) op)
|
(display (quote-cdata (get-code source-code)) op)
|
||||||
(display *footer* op))
|
(display *footer* op))
|
||||||
|
|
||||||
|
|
12
logger.rkt
12
logger.rkt
|
@ -1,4 +1,5 @@
|
||||||
#lang racket/base
|
#lang racket/base
|
||||||
|
(require racket/match)
|
||||||
|
|
||||||
;; A small module to provide logging for Whalesong.
|
;; A small module to provide logging for Whalesong.
|
||||||
|
|
||||||
|
@ -36,10 +37,13 @@
|
||||||
(void (thread (lambda ()
|
(void (thread (lambda ()
|
||||||
(let ([receiver
|
(let ([receiver
|
||||||
(make-log-receiver whalesong-logger 'debug)])
|
(make-log-receiver whalesong-logger 'debug)])
|
||||||
(let loop ([msg (sync receiver)])
|
(let loop ()
|
||||||
(when should-print-logs?
|
(let ([msg (sync receiver)])
|
||||||
(displayln msg))
|
(when should-print-logs?
|
||||||
(loop))))))
|
(match msg
|
||||||
|
[(vector level msg data)
|
||||||
|
(printf "~a: ~a\n" level msg)]))
|
||||||
|
(loop)))))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,9 @@
|
||||||
racket/match)
|
racket/match)
|
||||||
|
|
||||||
|
|
||||||
|
(require/typed "../logger.rkt"
|
||||||
|
[log-debug (String -> Void)])
|
||||||
|
|
||||||
(require/typed "../parser/parse-bytecode.rkt"
|
(require/typed "../parser/parse-bytecode.rkt"
|
||||||
[parse-bytecode (Any -> Expression)])
|
[parse-bytecode (Any -> Expression)])
|
||||||
|
|
||||||
|
@ -31,9 +34,22 @@
|
||||||
(make-parameter (lambda: ([s : Source]) s)))
|
(make-parameter (lambda: ([s : Source]) s)))
|
||||||
|
|
||||||
|
|
||||||
|
(: source-name (Source -> String))
|
||||||
|
(define (source-name a-source)
|
||||||
|
(cond
|
||||||
|
[(StatementsSource? a-source)
|
||||||
|
"<StatementsSource>"]
|
||||||
|
[(UninterpretedSource? a-source)
|
||||||
|
"<UninterpretedSource>"]
|
||||||
|
[(MainModuleSource? a-source)
|
||||||
|
"<MainModuleSource>"]
|
||||||
|
[(SexpSource? a-source)
|
||||||
|
"<SexpSource>"]
|
||||||
|
[(ModuleSource? a-source)
|
||||||
|
"<ModuleSource>"]))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(: get-ast-and-statements (Source -> (values (U False Expression)
|
(: get-ast-and-statements (Source -> (values (U False Expression)
|
||||||
(Listof Statement))))
|
(Listof Statement))))
|
||||||
(define (get-ast-and-statements a-source)
|
(define (get-ast-and-statements a-source)
|
||||||
|
@ -143,12 +159,15 @@
|
||||||
[(hash-has-key? visited (first sources))
|
[(hash-has-key? visited (first sources))
|
||||||
(loop (rest sources))]
|
(loop (rest sources))]
|
||||||
[else
|
[else
|
||||||
|
(log-debug (format "compiling a module ~a"
|
||||||
|
(source-name (first sources))))
|
||||||
(hash-set! visited (first sources) #t)
|
(hash-set! visited (first sources) #t)
|
||||||
(let*-values ([(this-source)
|
(let*-values ([(this-source)
|
||||||
((current-module-source-compiling-hook)
|
((current-module-source-compiling-hook)
|
||||||
(first sources))]
|
(first sources))]
|
||||||
[(ast stmts)
|
[(ast stmts)
|
||||||
(get-ast-and-statements this-source)])
|
(get-ast-and-statements this-source)])
|
||||||
|
(log-debug "visiting")
|
||||||
(on-module-statements this-source ast stmts)
|
(on-module-statements this-source ast stmts)
|
||||||
(loop (append (map wrap-source (collect-new-dependencies this-source ast))
|
(loop (append (map wrap-source (collect-new-dependencies this-source ast))
|
||||||
(rest sources)))
|
(rest sources)))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user