mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-06-30 09:46:39 +02:00
updating type names
This commit is contained in:
parent
742d96af8b
commit
aa1363cb9e
2 changed files with 3 additions and 2 deletions
lib/chibi
|
@ -148,7 +148,7 @@
|
|||
(not (type-subset? t p-type)))
|
||||
(display "WARNING: incompatible type: "
|
||||
(current-error-port))
|
||||
(write (list x t p-type) (current-error-port))
|
||||
(write/ss (list x t p-type) (current-error-port))
|
||||
(newline (current-error-port))))
|
||||
t))))
|
||||
(lp (and (pair? p) (cdr p)) (cdr a)))
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
|
||||
(define-library (chibi type-inference)
|
||||
(export type-analyze-module type-analyze procedure-signature)
|
||||
(import (scheme) (srfi 1) (srfi 69) (chibi modules) (chibi ast) (chibi match))
|
||||
(import (scheme) (srfi 1) (srfi 38) (srfi 69)
|
||||
(chibi modules) (chibi ast) (chibi match))
|
||||
(include "type-inference.scm"))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue