moving files around some more
This commit is contained in:
parent
1ef003c65d
commit
f56253f229
|
@ -3,8 +3,8 @@
|
||||||
"lexical-structs.rkt"
|
"lexical-structs.rkt"
|
||||||
"il-structs.rkt"
|
"il-structs.rkt"
|
||||||
"compiler.rkt"
|
"compiler.rkt"
|
||||||
"compiler-structs.rkt"
|
"compiler-structs.rkt")
|
||||||
"where-is-collects.rkt")
|
|
||||||
|
|
||||||
(require/typed "parameters.rkt"
|
(require/typed "parameters.rkt"
|
||||||
(current-defined-name (Parameterof (U Symbol LamPositionalName))))
|
(current-defined-name (Parameterof (U Symbol LamPositionalName))))
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#lang racket/base
|
#lang racket/base
|
||||||
|
|
||||||
(require "assemble.rkt"
|
(require "assemble.rkt"
|
||||||
"../quote-cdata.rkt"
|
"quote-cdata.rkt"
|
||||||
"../make.rkt"
|
"../make.rkt"
|
||||||
"../make-structs.rkt"
|
"../make-structs.rkt"
|
||||||
"get-runtime.rkt"
|
"get-runtime.rkt"
|
||||||
|
@ -18,9 +18,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(define (package-anonymous source-code
|
(define (package-anonymous source-code
|
||||||
#:should-follow? should-follow?
|
#:should-follow? should-follow?
|
||||||
#:output-port op)
|
#:output-port op)
|
||||||
|
@ -33,10 +30,15 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;; package: s-expression (path -> boolean) output-port -> void
|
;; package: Source (path -> boolean) output-port -> void
|
||||||
|
|
||||||
;; Compile package for the given source program. should-follow?
|
;; Compile package for the given source program. should-follow?
|
||||||
;; indicates whether we should continue following module paths.
|
;; indicates whether we should continue following module paths.
|
||||||
|
;;
|
||||||
|
;; The generated output defines a function called 'invoke' with
|
||||||
|
;; four arguments (MACHINE, SUCCESS, FAIL, PARAMS). When called, it'll
|
||||||
|
;; execute the code to either run standalone expressions or
|
||||||
|
;; load in modules.
|
||||||
(define (package source-code
|
(define (package source-code
|
||||||
#:should-follow? should-follow?
|
#:should-follow? should-follow?
|
||||||
#:output-port op)
|
#:output-port op)
|
||||||
|
@ -62,7 +64,7 @@
|
||||||
(fprintf op "var invoke = (function(MACHINE, SUCCESS, FAIL, PARAMS) {")
|
(fprintf op "var invoke = (function(MACHINE, SUCCESS, FAIL, PARAMS) {")
|
||||||
(make (cons only-bootstrapped-code
|
(make (cons only-bootstrapped-code
|
||||||
(list (make-MainModuleSource source-code)))
|
(list (make-MainModuleSource source-code)))
|
||||||
packaging-configuration)
|
packaging-configuration)
|
||||||
(fprintf op "});\n"))
|
(fprintf op "});\n"))
|
||||||
|
|
||||||
|
|
||||||
|
@ -99,18 +101,26 @@ var invokeMainModule = function() {
|
||||||
MACHINE.modules['*main*'].invoke(
|
MACHINE.modules['*main*'].invoke(
|
||||||
MACHINE,
|
MACHINE,
|
||||||
function() {
|
function() {
|
||||||
console.log("done with main module invokation");
|
|
||||||
// On main module invokation success
|
// On main module invokation success
|
||||||
},
|
},
|
||||||
function(MACHINE, e) {
|
function(MACHINE, e) {
|
||||||
console.log(e.stack);
|
|
||||||
// On main module invokation failure
|
// On main module invokation failure
|
||||||
|
if (console && console.log) {
|
||||||
|
console.log(e.stack || e);
|
||||||
|
}
|
||||||
})},
|
})},
|
||||||
function() {},
|
function() {
|
||||||
|
// On module loading failure
|
||||||
|
if (console && console.log) {
|
||||||
|
console.log(e.stack || e);
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
currentDisplayer : function(v) {
|
currentDisplayer : function(v) {
|
||||||
document.body.appendChild(document.createTextNode(String(v)));
|
document.body.appendChild(
|
||||||
document.body.appendChild(document.createElement("br"));
|
document.createTextNode(String(v)));
|
||||||
|
document.body.appendChild(
|
||||||
|
document.createElement("br"));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#lang racket/base
|
#lang racket/base
|
||||||
|
|
||||||
(require "../parameters.rkt"
|
(require "../parameters.rkt"
|
||||||
"../where-is-collects.rkt"
|
"where-is-collects.rkt"
|
||||||
racket/path
|
racket/path
|
||||||
racket/contract
|
racket/contract
|
||||||
racket/list
|
racket/list
|
||||||
|
|
Loading…
Reference in New Issue
Block a user