diff --git a/main-draft.hl.rkt b/main-draft.hl.rkt index c0b7bc1..65bad4e 100644 --- a/main-draft.hl.rkt +++ b/main-draft.hl.rkt @@ -47,7 +47,7 @@ ♦chunk[ (_ graph-name #:∀ (pvarₕ …) - ({~lit node} nodeᵢ [fieldᵢⱼ :colon field-τᵢⱼ] …) + ({~lit node} nodeᵢ [fieldᵢⱼ cᵢⱼ:colon field-τᵢⱼ] …) … ({~lit mapping} (mappingₖ [argₖₗ :colon arg-τₖₗ] …) :colon result-τₖ @@ -65,25 +65,35 @@ ♦chunk[|| #'(begin - (define (make-placeholderₖ argₖₗ …) - (list 'placeholderₖ argₖₗ …)) - … - - (define (graph-name [rootₖ : (Listof (List arg-τₖₗ …))] …) + (define + #:∀ (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ₖₗ …)) + … + (worklist (list rootₖ …) - ((λ (args) + ((λ ([args : (List arg-τₖₗ …)]) (define-values (argₖₗ …) (apply values args)) (define result (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: - (extract-placeholders result)) + '(extract-placeholders result) + (error "NOT IMPL YET.8946513648")) …) ((List arg-τₖₗ …) result-τₖ) …)))] @@ -143,7 +153,8 @@ Row polymorphism: make a generic struct->vector and vector->struct? (for-template (all-from-out "literals.rkt"))) (require (for-template (only-meta-in 0 type-expander/lang) - typed-worklist) + typed-worklist + phc-adt) type-expander/expander phc-toolkit/untyped/aliases phc-toolkit/untyped/syntax-parse diff --git a/test/adt-pre-declarations.rkt b/test/adt-pre-declarations.rkt index 11a682f..90c0a15 100644 --- a/test/adt-pre-declarations.rkt +++ b/test/adt-pre-declarations.rkt @@ -16,3 +16,5 @@ (remembered! tagged-structure (| Person-incomplete| name)) (remembered! tagged-structure (City name)) (remembered! tagged-structure (t0 w)) +(remembered! tagged-structure (City streets)) +(remembered! tagged-structure (Street a name)) diff --git a/test/test-graph-low1.rkt b/test/test-graph-low1.rkt index c7a6a91..c02f430 100644 --- a/test/test-graph-low1.rkt +++ b/test/test-graph-low1.rkt @@ -1,6 +1,8 @@ #lang dotlambda/unhygienic type-expander/lang (require (for-syntax (lib "phc-graph/main-draft.hl.rkt"))) +(require phc-adt) +(adt-init) (define-syntax low-graph low-graph-impl)