dots for the teaching language
This commit is contained in:
parent
2e077e257d
commit
e417662c31
|
@ -92,6 +92,9 @@
|
||||||
'hash?
|
'hash?
|
||||||
'hash-eq?
|
'hash-eq?
|
||||||
'hash-eqv?
|
'hash-eqv?
|
||||||
|
'hash
|
||||||
|
'hasheqv
|
||||||
|
'hasheq
|
||||||
'make-hash
|
'make-hash
|
||||||
'make-hasheqv
|
'make-hasheqv
|
||||||
'make-hasheq
|
'make-hasheq
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
cs019-unless
|
cs019-unless
|
||||||
cs019-set!
|
cs019-set!
|
||||||
cs019-case
|
cs019-case
|
||||||
cs019-local)
|
cs019-local
|
||||||
|
cs019-dots)
|
||||||
|
|
||||||
(define-syntax cs019-define advanced-define/proc)
|
(define-syntax cs019-define advanced-define/proc)
|
||||||
(define-syntax cs019-lambda advanced-lambda/proc)
|
(define-syntax cs019-lambda advanced-lambda/proc)
|
||||||
|
@ -22,3 +23,4 @@
|
||||||
(define-syntax cs019-set! advanced-set!/proc)
|
(define-syntax cs019-set! advanced-set!/proc)
|
||||||
(define-syntax cs019-case advanced-case/proc)
|
(define-syntax cs019-case advanced-case/proc)
|
||||||
(define-syntax cs019-local intermediate-local/proc)
|
(define-syntax cs019-local intermediate-local/proc)
|
||||||
|
(define-syntax cs019-dots beginner-dots/proc)
|
||||||
|
|
|
@ -14,7 +14,14 @@
|
||||||
[cs019-when when]
|
[cs019-when when]
|
||||||
[cs019-unless unless]
|
[cs019-unless unless]
|
||||||
[cs019-case case]
|
[cs019-case case]
|
||||||
[cs019-local local]))
|
[cs019-local local]
|
||||||
|
|
||||||
|
[cs019-dots ..]
|
||||||
|
[cs019-dots ...]
|
||||||
|
[cs019-dots ....]
|
||||||
|
[cs019-dots .....]
|
||||||
|
[cs019-dots ......]
|
||||||
|
))
|
||||||
|
|
||||||
(define-syntax λ (make-rename-transformer #'cs019-lambda))
|
(define-syntax λ (make-rename-transformer #'cs019-lambda))
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,9 @@
|
||||||
advanced-unless/proc
|
advanced-unless/proc
|
||||||
advanced-set!/proc advanced-set!-continue/proc
|
advanced-set!/proc advanced-set!-continue/proc
|
||||||
advanced-case/proc
|
advanced-case/proc
|
||||||
intermediate-local/proc)
|
intermediate-local/proc
|
||||||
|
|
||||||
|
beginner-dots/proc)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -288,7 +290,32 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
;; dots (.. and ... and .... and ..... and ......)
|
||||||
|
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
|
;; Syntax Identifier -> Expression
|
||||||
|
;; Produces an expression which raises an error reporting unfinished code.
|
||||||
|
(define (dots-error stx name)
|
||||||
|
(quasisyntax/loc stx
|
||||||
|
(error (quote (unsyntax name))
|
||||||
|
"expected a finished expression, but found a template")))
|
||||||
|
|
||||||
|
;; Expression -> Expression
|
||||||
|
;; Transforms unfinished code (... and the like) to code
|
||||||
|
;; raising an appropriate error.
|
||||||
|
(define beginner-dots/proc
|
||||||
|
(make-set!-transformer
|
||||||
|
(lambda (stx)
|
||||||
|
|
||||||
|
;; this ensures that coverage happens; it lifts a constant
|
||||||
|
;; expression to the top level, but one that has the source location of the dots expression
|
||||||
|
(syntax-local-lift-expression (datum->syntax #'here 1 stx))
|
||||||
|
|
||||||
|
(syntax-case stx (set!)
|
||||||
|
[(set! form expr) (dots-error stx (syntax form))]
|
||||||
|
[(form . rest) (dots-error stx (syntax form))]
|
||||||
|
[form (dots-error stx stx)]))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2563,6 +2563,67 @@
|
||||||
return initializeHash(lst, plt.baselib.hashes.makeEqualHashtable());
|
return initializeHash(lst, plt.baselib.hashes.makeEqualHashtable());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
installPrimitiveProcedure(
|
||||||
|
'hash',
|
||||||
|
baselib.arity.makeArityAtLeast(0),
|
||||||
|
function(M) {
|
||||||
|
var lst = NULL, i;
|
||||||
|
for(i = 0; i < M.a; i+=2) {
|
||||||
|
if (i+1 < M.a) {
|
||||||
|
lst = makePair(makePair(checkAny(M, 'hash', i), checkAny(M, 'hash', i + 1)),
|
||||||
|
lst);
|
||||||
|
} else {
|
||||||
|
raiseContractError(
|
||||||
|
M,
|
||||||
|
baselib.format.format(
|
||||||
|
"hash: key does not have a value (i.e., an odd number of arguments were provided): ~e",
|
||||||
|
[checkAny(M, 'hash', i)]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqualHashtable());
|
||||||
|
});
|
||||||
|
|
||||||
|
installPrimitiveProcedure(
|
||||||
|
'hasheq',
|
||||||
|
baselib.arity.makeArityAtLeast(0),
|
||||||
|
function(M) {
|
||||||
|
var lst = NULL, i;
|
||||||
|
for(i = 0; i < M.a; i+=2) {
|
||||||
|
if (i+1 < M.a) {
|
||||||
|
lst = makePair(makePair(checkAny(M, 'hasheq', i), checkAny(M, 'hasheq', i + 1)),
|
||||||
|
lst);
|
||||||
|
} else {
|
||||||
|
raiseContractError(
|
||||||
|
M,
|
||||||
|
baselib.format.format(
|
||||||
|
"hasheq: key does not have a value (i.e., an odd number of arguments were provided): ~e",
|
||||||
|
[checkAny(M, 'hasheq', i)]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqHashtable());
|
||||||
|
});
|
||||||
|
|
||||||
|
installPrimitiveProcedure(
|
||||||
|
'hasheqv',
|
||||||
|
baselib.arity.makeArityAtLeast(0),
|
||||||
|
function(M) {
|
||||||
|
var lst = NULL, i;
|
||||||
|
for(i = 0; i < M.a; i+=2) {
|
||||||
|
if (i+1 < M.a) {
|
||||||
|
lst = makePair(makePair(checkAny(M, 'hasheqv', i), checkAny(M, 'hasheqv', i + 1)),
|
||||||
|
lst);
|
||||||
|
} else {
|
||||||
|
raiseContractError(
|
||||||
|
M,
|
||||||
|
baselib.format.format(
|
||||||
|
"hasheqv: key does not have a value (i.e., an odd number of arguments were provided): ~e",
|
||||||
|
[checkAny(M, 'hasheqv', i)]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return initializeImmutableHash(lst, plt.baselib.hashes.makeImmutableEqvHashtable());
|
||||||
|
});
|
||||||
|
|
||||||
installPrimitiveProcedure(
|
installPrimitiveProcedure(
|
||||||
'make-immutable-hasheq',
|
'make-immutable-hasheq',
|
||||||
makeList(0, 1),
|
makeList(0, 1),
|
||||||
|
|
|
@ -152,6 +152,9 @@
|
||||||
hash?
|
hash?
|
||||||
hash-eq?
|
hash-eq?
|
||||||
hash-eqv?
|
hash-eqv?
|
||||||
|
hash
|
||||||
|
hasheqv
|
||||||
|
hasheq
|
||||||
make-hash
|
make-hash
|
||||||
make-hasheqv
|
make-hasheqv
|
||||||
make-hasheq
|
make-hasheq
|
||||||
|
|
|
@ -48,3 +48,7 @@ false
|
||||||
true
|
true
|
||||||
false
|
false
|
||||||
true
|
true
|
||||||
|
|
||||||
|
#hash((1 . one) (2 . two))
|
||||||
|
#hasheqv((1 . one) (2 . two))
|
||||||
|
#hasheq((1 . one) (2 . two))
|
||||||
|
|
|
@ -119,3 +119,9 @@
|
||||||
(hash-has-key? (make-hash '((1 . one))) 1)
|
(hash-has-key? (make-hash '((1 . one))) 1)
|
||||||
(hash-has-key? (make-immutable-hash) 1)
|
(hash-has-key? (make-immutable-hash) 1)
|
||||||
(hash-has-key? (make-immutable-hash '((1 . one))) 1)
|
(hash-has-key? (make-immutable-hash '((1 . one))) 1)
|
||||||
|
|
||||||
|
(newline)
|
||||||
|
(hash 1 'one 2 'two)
|
||||||
|
(hasheqv 1 'one 2 'two)
|
||||||
|
(hasheq 1 'one 2 'two)
|
||||||
|
|
||||||
|
|
|
@ -6,4 +6,4 @@
|
||||||
|
|
||||||
(provide version)
|
(provide version)
|
||||||
(: version String)
|
(: version String)
|
||||||
(define version "1.61")
|
(define version "1.62")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user