adding static check to make sure I didn't screw up the type subset definition
This commit is contained in:
parent
f1ed02095c
commit
24ad16ac9c
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
(provide (all-defined-out))
|
(provide (all-defined-out))
|
||||||
|
|
||||||
(require "arity-structs.rkt")
|
(require "arity-structs.rkt"
|
||||||
|
"../type-helpers.rkt")
|
||||||
(define-type OperandDomain (U 'number
|
(define-type OperandDomain (U 'number
|
||||||
'string
|
'string
|
||||||
'box
|
'box
|
||||||
|
@ -95,6 +96,8 @@
|
||||||
'not
|
'not
|
||||||
'eq?))
|
'eq?))
|
||||||
|
|
||||||
|
(ensure-type-subsetof KernelPrimitiveName/Inline KernelPrimitiveName)
|
||||||
|
|
||||||
|
|
||||||
(define-predicate KernelPrimitiveName/Inline? KernelPrimitiveName/Inline)
|
(define-predicate KernelPrimitiveName/Inline? KernelPrimitiveName/Inline)
|
||||||
|
|
||||||
|
|
|
@ -138,10 +138,15 @@
|
||||||
car
|
car
|
||||||
cdr
|
cdr
|
||||||
list
|
list
|
||||||
|
list?
|
||||||
|
pair?
|
||||||
null?
|
null?
|
||||||
not
|
not
|
||||||
eq?
|
eq?
|
||||||
values)
|
values
|
||||||
|
|
||||||
|
apply
|
||||||
|
call-with-values)
|
||||||
|
|
||||||
|
|
||||||
(define (-identity x) x)
|
(define (-identity x) x)
|
||||||
|
@ -183,8 +188,6 @@
|
||||||
;; arity-at-least?
|
;; arity-at-least?
|
||||||
;; arity-at-least-value
|
;; arity-at-least-value
|
||||||
|
|
||||||
apply
|
|
||||||
call-with-values
|
|
||||||
|
|
||||||
;; compose
|
;; compose
|
||||||
;; current-inexact-milliseconds
|
;; current-inexact-milliseconds
|
||||||
|
@ -259,8 +262,6 @@ raise-mismatch-error
|
||||||
procedure-arity
|
procedure-arity
|
||||||
procedure-arity-includes?
|
procedure-arity-includes?
|
||||||
procedure-rename
|
procedure-rename
|
||||||
pair?
|
|
||||||
list?
|
|
||||||
;; (undefined? -undefined?)
|
;; (undefined? -undefined?)
|
||||||
;; immutable?
|
;; immutable?
|
||||||
;; void?
|
;; void?
|
||||||
|
|
|
@ -245,6 +245,7 @@
|
||||||
(my-cadr cadr)
|
(my-cadr cadr)
|
||||||
(my-caddr caddr)
|
(my-caddr caddr)
|
||||||
(my-pair? pair?)
|
(my-pair? pair?)
|
||||||
|
null?
|
||||||
(my-set-car! set-car!)
|
(my-set-car! set-car!)
|
||||||
(my-set-cdr! set-cdr!)
|
(my-set-cdr! set-cdr!)
|
||||||
(my-member member)
|
(my-member member)
|
||||||
|
|
|
@ -791,6 +791,8 @@
|
||||||
(list->mutable-pair-list rand-vals)]
|
(list->mutable-pair-list rand-vals)]
|
||||||
[(null?)
|
[(null?)
|
||||||
(null? (first rand-vals))]
|
(null? (first rand-vals))]
|
||||||
|
[(pair?)
|
||||||
|
(MutablePair? (first rand-vals))]
|
||||||
[(not)
|
[(not)
|
||||||
(not (first rand-vals))]
|
(not (first rand-vals))]
|
||||||
[(eq?)
|
[(eq?)
|
||||||
|
|
49
type-helpers.rkt
Normal file
49
type-helpers.rkt
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
#lang typed/racket/base
|
||||||
|
(require (for-syntax racket/base
|
||||||
|
syntax/parse))
|
||||||
|
|
||||||
|
;; Provides helpers for use with Typed Racket programs.
|
||||||
|
|
||||||
|
(provide ensure-type-subsetof)
|
||||||
|
|
||||||
|
|
||||||
|
;; Usage: (ensure-type-subsetof subtype supertype)
|
||||||
|
;;
|
||||||
|
;; Statically errors out if subtype is not within supertype.
|
||||||
|
;;
|
||||||
|
(define-syntax (ensure-type-subsetof stx)
|
||||||
|
(syntax-parse stx
|
||||||
|
[(_ subtype:id supertype:id)
|
||||||
|
;; begin-splicing
|
||||||
|
(with-syntax ([x (syntax/loc stx x)])
|
||||||
|
#`(void (lambda () (ann (values (ann #,(syntax/loc stx (error 'fail))
|
||||||
|
subtype)) supertype))))]))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#|
|
||||||
|
(define-type T0 (U 'a 'b 'c 'd 'e 'f 'g 'h 'i 'j 'k 'l 'm 'n 'o 'p
|
||||||
|
'q 'r 's 't 'u 'v 'w 'x 'y 'z))
|
||||||
|
(define-type T1 (U 'a
|
||||||
|
'e
|
||||||
|
'i
|
||||||
|
'o
|
||||||
|
'u))
|
||||||
|
(ensure-type-subsetof T1 T0)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
(define-struct: Id ([name : Symbol]))
|
||||||
|
(define-struct: Num ([datum : Number]))
|
||||||
|
(define-struct: Add ([lhs : Expr]
|
||||||
|
[rhs : Expr]));
|
||||||
|
(define-type Expr
|
||||||
|
(U Id
|
||||||
|
;; Num ;; Uncomment to correct the type error
|
||||||
|
Add))
|
||||||
|
(define-type ConstantExpr (U Id Num))
|
||||||
|
|
||||||
|
;; And if we mess up at least it errors out at compile time
|
||||||
|
(ensure-type-subsetof ConstantExpr Expr)
|
||||||
|
|#
|
Loading…
Reference in New Issue
Block a user