adding static check to make sure I didn't screw up the type subset definition

This commit is contained in:
Danny Yoo 2011-08-19 19:17:33 -04:00
parent f1ed02095c
commit 24ad16ac9c
5 changed files with 63 additions and 7 deletions

View File

@ -2,7 +2,8 @@
(provide (all-defined-out))
(require "arity-structs.rkt")
(require "arity-structs.rkt"
"../type-helpers.rkt")
(define-type OperandDomain (U 'number
'string
'box
@ -95,6 +96,8 @@
'not
'eq?))
(ensure-type-subsetof KernelPrimitiveName/Inline KernelPrimitiveName)
(define-predicate KernelPrimitiveName/Inline? KernelPrimitiveName/Inline)

View File

@ -138,10 +138,15 @@
car
cdr
list
list?
pair?
null?
not
eq?
values)
values
apply
call-with-values)
(define (-identity x) x)
@ -183,8 +188,6 @@
;; arity-at-least?
;; arity-at-least-value
apply
call-with-values
;; compose
;; current-inexact-milliseconds
@ -259,8 +262,6 @@ raise-mismatch-error
procedure-arity
procedure-arity-includes?
procedure-rename
pair?
list?
;; (undefined? -undefined?)
;; immutable?
;; void?

View File

@ -237,7 +237,7 @@
symbol->string
string-append
string-length
(my-cons cons)
(my-list list)
(my-car car)
@ -245,6 +245,7 @@
(my-cadr cadr)
(my-caddr caddr)
(my-pair? pair?)
null?
(my-set-car! set-car!)
(my-set-cdr! set-cdr!)
(my-member member)

View File

@ -791,6 +791,8 @@
(list->mutable-pair-list rand-vals)]
[(null?)
(null? (first rand-vals))]
[(pair?)
(MutablePair? (first rand-vals))]
[(not)
(not (first rand-vals))]
[(eq?)

49
type-helpers.rkt Normal file
View 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)
|#