trying to specialize the type to avoid Any, which is causing issues

This commit is contained in:
Danny Yoo 2012-10-23 17:58:01 -06:00
parent 6cb8309ea0
commit ca4a358280
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
(require/typed "../parameters.rkt"
(current-defined-name (Parameterof (U Symbol LamPositionalName))))
(require/typed "../parser/parse-bytecode.rkt"
(parse-bytecode (Any -> Expression)))
(parse-bytecode (Compiled-Expression -> Expression)))

View File

@ -19,7 +19,7 @@
[log-debug (String -> Void)])
(require/typed "../parser/parse-bytecode.rkt"
[parse-bytecode (Any -> Expression)])
[parse-bytecode ((U Path Input-Port) -> Expression)])
(require/typed "../get-module-bytecode.rkt"
[get-module-bytecode ((U String Path Input-Port) -> Bytes)])