remove dependency on typed racket and sweet-exp

This commit is contained in:
Stephen Chang 2017-01-25 10:47:42 -05:00
parent 0084146c1c
commit 6618f0e038
4 changed files with 12 additions and 4 deletions

View File

@ -4,9 +4,7 @@
(define deps
'("base"
"sweet-exp-lib"
"lens"
"typed-racket-lib"
))
(define build-deps

View File

@ -2,3 +2,6 @@
(define compile-omit-paths
'("examples/tests"))
(define test-omit-paths
'("examples/tests/mlish/sweet-map.rkt")) ; needs sweet-exp

View File

@ -1,6 +1,9 @@
#lang turnstile
(require (prefix-in tr: typed/racket))
;; This file tries to extend Ben Greenman's trivial package with lambdas
;; see tests/trivial-test.rkt for examples
;; TODO:
;; ) do I need separate → and CCs types, both with constraints?
;; - yes?

View File

@ -5,8 +5,12 @@
(define compile-omit-paths
'("examples/rosette"
"examples/tests"))
"examples/tests"
"examples/trivial.rkt"))
(define test-omit-paths
'("examples/rosette"
"examples/tests/rosette"))
"examples/tests/rosette" ; needs rosette
"examples/tests/trivial-test.rkt" ; needs typed/racket
"examples/tests/mlish/sweet-map.rkt")) ; needs sweet-exp