Adjust tc-utils too for new DrRacket protocol
This commit is contained in:
parent
220805a6bf
commit
f271d3b167
|
@ -151,7 +151,6 @@ don't depend on any other portion of the system
|
||||||
(define (log-type-error msg stxes)
|
(define (log-type-error msg stxes)
|
||||||
(define stx (and (not (null? stxes)) (car stxes)))
|
(define stx (and (not (null? stxes)) (car stxes)))
|
||||||
(when (and stx
|
(when (and stx
|
||||||
(syntax-source stx)
|
|
||||||
(syntax-position stx)
|
(syntax-position stx)
|
||||||
(syntax-span stx))
|
(syntax-span stx))
|
||||||
(define tooltip-info
|
(define tooltip-info
|
||||||
|
@ -160,15 +159,15 @@ don't depend on any other portion of the system
|
||||||
(let ([fst (car (syntax-e stx))])
|
(let ([fst (car (syntax-e stx))])
|
||||||
(and (identifier? fst)
|
(and (identifier? fst)
|
||||||
(free-identifier=? fst #'quote))))
|
(free-identifier=? fst #'quote))))
|
||||||
(list (vector (syntax-source stx)
|
(list (vector stx
|
||||||
(sub1 (syntax-position stx))
|
(sub1 (syntax-position stx))
|
||||||
(+ (sub1 (syntax-position stx)) (syntax-span stx))
|
(+ (sub1 (syntax-position stx)) (syntax-span stx))
|
||||||
msg))
|
msg))
|
||||||
(list (vector (syntax-source stx)
|
(list (vector stx
|
||||||
(sub1 (syntax-position stx))
|
(sub1 (syntax-position stx))
|
||||||
(syntax-position stx)
|
(syntax-position stx)
|
||||||
msg)
|
msg)
|
||||||
(vector (syntax-source stx)
|
(vector stx
|
||||||
(sub1 (+ (sub1 (syntax-position stx))
|
(sub1 (+ (sub1 (syntax-position stx))
|
||||||
(syntax-span stx)))
|
(syntax-span stx)))
|
||||||
(+ (sub1 (syntax-position stx))
|
(+ (sub1 (syntax-position stx))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user