Closes FB case #165 Use syntax? instead of identifier? in the graph-info types
This commit is contained in:
parent
c896df5666
commit
411c386bb1
|
@ -139,10 +139,10 @@ return the corresponding node can be written based on it.
|
||||||
|
|
||||||
@chunk[<node-info>
|
@chunk[<node-info>
|
||||||
(struct+/contract node-info
|
(struct+/contract node-info
|
||||||
([predicate? identifier?]
|
([predicate? identifier?] ;; (expr/τ (→ Any Boolean : ?))
|
||||||
[field-order (listof identifier?)]
|
[field-order (listof identifier?)]
|
||||||
[fields (hash/c symbol? field-info? #:immutable #t)]
|
[fields (hash/c symbol? field-info? #:immutable #t)]
|
||||||
[promise-type identifier?]
|
[promise-type stx-type/c]
|
||||||
;; Wrappers can mean that we have incomplete types with fewer
|
;; Wrappers can mean that we have incomplete types with fewer
|
||||||
;; fields than the final node type.
|
;; fields than the final node type.
|
||||||
;[make-incomplete-type identifier?]
|
;[make-incomplete-type identifier?]
|
||||||
|
@ -159,7 +159,7 @@ A field has a type.
|
||||||
|
|
||||||
@chunk[<field-info>
|
@chunk[<field-info>
|
||||||
(struct+/contract field-info
|
(struct+/contract field-info
|
||||||
([type identifier?])
|
([type stx-type/c])
|
||||||
#:transparent
|
#:transparent
|
||||||
#:methods gen:custom-write
|
#:methods gen:custom-write
|
||||||
[(define write-proc (struct-printer 'field-info))]
|
[(define write-proc (struct-printer 'field-info))]
|
||||||
|
@ -172,7 +172,7 @@ A field has a type.
|
||||||
@chunk[<invariant-info>
|
@chunk[<invariant-info>
|
||||||
(struct+/contract invariant-info
|
(struct+/contract invariant-info
|
||||||
([predicate identifier?] ; (→ RootNode Boolean : +witness-type)
|
([predicate identifier?] ; (→ RootNode Boolean : +witness-type)
|
||||||
[witness-type identifier?])
|
[witness-type stx-type/c])
|
||||||
#:transparent
|
#:transparent
|
||||||
#:methods gen:custom-write
|
#:methods gen:custom-write
|
||||||
[(define write-proc (struct-printer 'invariant-info))]
|
[(define write-proc (struct-printer 'invariant-info))]
|
||||||
|
@ -275,6 +275,7 @@ data.
|
||||||
|
|
||||||
@CHUNK[<*>
|
@CHUNK[<*>
|
||||||
(require phc-toolkit/untyped
|
(require phc-toolkit/untyped
|
||||||
|
type-expander/expander
|
||||||
racket/struct
|
racket/struct
|
||||||
mzlib/pconvert
|
mzlib/pconvert
|
||||||
(for-syntax phc-toolkit/untyped
|
(for-syntax phc-toolkit/untyped
|
||||||
|
@ -296,7 +297,7 @@ data.
|
||||||
_)))
|
_)))
|
||||||
{~optional {~and prefab #:prefab}})
|
{~optional {~and prefab #:prefab}})
|
||||||
#:with name/c (format-id #'name "~a/c" #'name)
|
#:with name/c (format-id #'name "~a/c" #'name)
|
||||||
(quasisyntax/top-loc this-syntax
|
(quasisyntax/top-loc (stx-car this-syntax)
|
||||||
#,(template
|
#,(template
|
||||||
(begin
|
(begin
|
||||||
(struct name (?? parent) (field ...)
|
(struct name (?? parent) (field ...)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user