fix non-turnstile mlish to work with define-primop and current-host-lang

This commit is contained in:
Stephen Chang 2016-10-31 15:48:28 -04:00
parent 39ad3e1726
commit 824803388f
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,8 @@
#lang s-exp "../typecheck.rkt"
(require (only-in "../typecheck.rkt"
[define-typed-syntax def-typed-stx/no-provide]))
(require racket/fixnum racket/flonum)
(require (postfix-in - racket/fixnum)
(postfix-in - racket/flonum))
(extends
"ext-stlc.rkt"

View File

@ -1,6 +1,7 @@
#lang s-exp macrotypes/typecheck
(require
racket/fixnum racket/flonum
(postfix-in - racket/fixnum)
(postfix-in - racket/flonum)
(for-syntax macrotypes/type-constraints macrotypes/variance-constraints))
(extends