Draft now compiles again.

This commit is contained in:
Georges Dupéron 2017-05-03 12:57:41 +02:00
parent 0977529e6b
commit b6043def44
3 changed files with 27 additions and 12 deletions

View File

@ -47,7 +47,7 @@
♦chunk[<signature> ♦chunk[<signature>
(_ graph-name (_ graph-name
#:∀ (pvarₕ ) #:∀ (pvarₕ )
({~lit node} nodeᵢ [fieldᵢⱼ :colon field-τᵢⱼ] ) ({~lit node} nodeᵢ [fieldᵢⱼ cᵢⱼ:colon field-τᵢⱼ] )
({~lit mapping} (mappingₖ [argₖₗ :colon arg-τₖₗ] ) ({~lit mapping} (mappingₖ [argₖₗ :colon arg-τₖₗ] )
:colon result-τₖ :colon result-τₖ
@ -65,25 +65,35 @@
♦chunk[|<phase~1: call mappings and extract placeholders>| ♦chunk[|<phase~1: call mappings and extract placeholders>|
#'(begin #'(begin
(define (make-placeholderₖ argₖₗ ) (define
(list 'placeholderₖ argₖₗ )) #:∀ (pvarₕ )
(graph-name [rootₖ : (Listof (List arg-τₖₗ ))] )
;; TODO: move these to a separate literate programming chunk
(define-type nodeᵢ (tagged nodeᵢ [fieldᵢⱼ cᵢⱼ field-τᵢⱼ] ))
(define (make-placeholderₖ argₖₗ )
(list 'placeholderₖ argₖₗ ))
(define (graph-name [rootₖ : (Listof (List arg-τₖₗ ))] )
(worklist (worklist
(list rootₖ ) (list rootₖ )
((λ (args) ((λ ([args : (List arg-τₖₗ )])
(define-values (argₖₗ ) (apply values args)) (define-values (argₖₗ ) (apply values args))
(define result (define result
(let* ([mappingₖ make-placeholderₖ] (let* ([mappingₖ make-placeholderₖ]
[argₖₗ convert-inflexible-to-flexible?] [argₖₗ 'convert-inflexible-to-flexible?]
[argₖₗ invariant-well-scopedness?] [argₖₗ 'invariant-well-scopedness?]
) )
. bodyₖ)) (error "NOT IMPL YET.787543")
;. bodyₖ
'(bodyₖ)))
;; returns placeholders + the result: ;; returns placeholders + the result:
(extract-placeholders result)) '(extract-placeholders result)
(error "NOT IMPL YET.8946513648"))
) )
((List arg-τₖₗ ) result-τₖ) )))] ((List arg-τₖₗ ) result-τₖ) )))]
@ -143,7 +153,8 @@ Row polymorphism: make a generic struct->vector and vector->struct?
(for-template (all-from-out "literals.rkt"))) (for-template (all-from-out "literals.rkt")))
(require (for-template (only-meta-in 0 type-expander/lang) (require (for-template (only-meta-in 0 type-expander/lang)
typed-worklist) typed-worklist
phc-adt)
type-expander/expander type-expander/expander
phc-toolkit/untyped/aliases phc-toolkit/untyped/aliases
phc-toolkit/untyped/syntax-parse phc-toolkit/untyped/syntax-parse

View File

@ -16,3 +16,5 @@
(remembered! tagged-structure (| Person-incomplete| name)) (remembered! tagged-structure (| Person-incomplete| name))
(remembered! tagged-structure (City name)) (remembered! tagged-structure (City name))
(remembered! tagged-structure (t0 w)) (remembered! tagged-structure (t0 w))
(remembered! tagged-structure (City streets))
(remembered! tagged-structure (Street a name))

View File

@ -1,6 +1,8 @@
#lang dotlambda/unhygienic type-expander/lang #lang dotlambda/unhygienic type-expander/lang
(require (for-syntax (lib "phc-graph/main-draft.hl.rkt"))) (require (for-syntax (lib "phc-graph/main-draft.hl.rkt")))
(require phc-adt)
(adt-init)
(define-syntax low-graph low-graph-impl) (define-syntax low-graph low-graph-impl)