About to try writing with types.

This commit is contained in:
Danny Yoo 2011-02-18 17:46:14 -05:00
parent 350507a66f
commit ac9ea0c75c
2 changed files with 25 additions and 0 deletions

6
typed-parse.rkt Normal file
View File

@ -0,0 +1,6 @@
#lang typed/racket/base
(require "typed-structs.rkt")
(require/typed "parse.rkt"
[parse (Any -> Expression)])
(provide parse)

19
typed-structs.rkt Normal file
View File

@ -0,0 +1,19 @@
#lang typed/racket/base
(provide (all-defined-out))
(define-type Expression (U Constant Quote Var Assign Branch Def Lam Seq App))
(define-struct: Constant ([v : Any]) #:transparent)
(define-struct: Quote ([v : Any]) #:transparent)
(define-struct: Var ([id : Symbol]) #:transparent)
(define-struct: Assign ([id : Symbol]
[expr : Expression]) #:transparent)
(define-struct: Branch ([test : Expression]
[consequent : Expression]
[alternative : Expression]) #:transparent)
(define-struct: Def ([id : Symbol]
[expr : Expression]) #:transparent)
(define-struct: Lam ([ids : (Listof Symbol)]
[body : Expression]) #:transparent)
(define-struct: Seq ([es : (Listof Expression)]) #:transparent)
(define-struct: App ([op : Expression]
[rands : (Listof Expression)]) #:transparent)