[functional tests] Remove dependency on the ThunderChez library.
I've just moved the relevant code into the functional-tests dir.
This commit is contained in:
51
functional-tests/srfi/s0/cond-expand.sls
Normal file
51
functional-tests/srfi/s0/cond-expand.sls
Normal file
@@ -0,0 +1,51 @@
|
||||
;; Copyright (c) 2009 Derick Eddington. All rights reserved.
|
||||
;; Licensed under an MIT-style license. My license is in the file
|
||||
;; named LICENSE from the original collection this file is distributed
|
||||
;; with. If this file is redistributed with some other collection, my
|
||||
;; license must also be included.
|
||||
|
||||
#!r6rs
|
||||
(library (srfi s0 cond-expand)
|
||||
(export
|
||||
cond-expand)
|
||||
(import
|
||||
(rnrs)
|
||||
(for (srfi private registry) expand))
|
||||
|
||||
(define-syntax cond-expand
|
||||
(lambda (stx)
|
||||
(syntax-case stx (and or not else)
|
||||
[(_)
|
||||
(syntax-violation #f "Unfulfilled cond-expand" stx)]
|
||||
[(_ (else body ...))
|
||||
#'(begin body ...)]
|
||||
[(_ ((and) body ...) more-clauses ...)
|
||||
#'(begin body ...)]
|
||||
[(_ ((and req1 req2 ...) body ...) more-clauses ...)
|
||||
#'(cond-expand
|
||||
(req1
|
||||
(cond-expand
|
||||
((and req2 ...) body ...)
|
||||
more-clauses ...))
|
||||
more-clauses ...)]
|
||||
[(_ ((or) body ...) more-clauses ...)
|
||||
#'(cond-expand more-clauses ...)]
|
||||
[(_ ((or req1 req2 ...) body ...) more-clauses ...)
|
||||
#'(cond-expand
|
||||
(req1
|
||||
(begin body ...))
|
||||
(else
|
||||
(cond-expand
|
||||
((or req2 ...) body ...)
|
||||
more-clauses ...)))]
|
||||
[(_ ((not req) body ...) more-clauses ...)
|
||||
#'(cond-expand
|
||||
(req
|
||||
(cond-expand more-clauses ...))
|
||||
(else body ...))]
|
||||
[(_ (feature-id body ...) more-clauses ...)
|
||||
(if (member (syntax->datum #'feature-id) available-features)
|
||||
#'(begin body ...)
|
||||
#'(cond-expand more-clauses ...))])))
|
||||
|
||||
)
|
Reference in New Issue
Block a user