Results 34 issues of Spencer Florence

`foldl`'s error report all of its arguments one position off. ``` > (foldl + 0 5) foldl : 2th argument must be a list, given 5 ``` but `5` is...

The program ``` hiphop: "require hopscript" let hh = require("hiphop");= let prg = ; let machine = new hh.ReactiveMachine(prg, "TEST"); ``` Gives the error: ``` error: TypeError: toObject: cannot convert...

The following program: ```js "require hopscript" let hh = require("hiphop"); let inSig = {accessibility: hh.IN}; let outSig = {accessibility: hh.OUT}; let prg = ; let machine = new hh.ReactiveMachine(prg, "prog")...

I have a program that creates a pict3d which, when rendered, errors with: ``` flv3: expected non-NaNs; given +nan.0 +nan.0 +nan.0 context...: /Applications/Racket/racket/share/pkgs/pict3d/pict3d/private/gui/parameters.rkt:28:0: default-pict3d-auto-camera /Applications/Racket/racket/share/pkgs/pict3d/pict3d/private/gui/pict3d-snip.rkt:350:4: reset-camera /Applications/Racket/racket/share/pkgs/pict3d/pict3d/private/gui/pict3d-snip.rkt:329:2 /Applications/Racket/racket/collects/racket/private/class-internal.rkt:3549:0: continue-make-object /Applications/Racket/racket/collects/racket/private/class-internal.rkt:3503:0:...

The `combine?` argument to `draw-text` seems to shift circumflexes one character space to the left. The program: ``` #lang racket (require racket/draw) (define (draw t combine?) (define b (make-object bitmap%...

With the error: ``` cover: no coverage information for "/Applications/Racket/racket/share/pkgs/typed-racket-lib/typed/racket/class.rkt" context...: /Users/florence/playground/cover/cover/private/format-utils.rkt:25:0: make-covered? /Applications/Racket/racket/collects/racket/private/more-scheme.rkt:371:13: hash-ref! /Users/florence/playground/cover/cover/cover.rkt:273:5 /Users/florence/playground/cover/cover/private/html/html.rkt:369:4: recur /Users/florence/playground/cover/cover/private/html/html.rkt:346:0: expression-coverage/file /Users/florence/playground/cover/cover/private/html/html.rkt:113:0: make-html-file /Users/florence/playground/cover/cover/private/html/html.rkt:47:4: for-loop /Users/florence/playground/cover/cover/private/html/html.rkt:45:0: get-files /Users/florence/playground/cover/cover/private/html/html.rkt:29:0: generate-html-coverage /Users/florence/playground/cover/cover/raco.rkt:83:4 /Users/florence/playground/cover/cover/private/shared.rkt:36:0:...

bug
help wanted
in progress

A not-well-thought-out brain dump on possible ways to fix: 1. Do some kind of analysis to guess which compile time functions and macros can't escape the current module, and mark...

Add a mode that determines the number of times an expression is run instead of just if it was run. (useful for gauging how tests generators are working)

enhancement

To do this the coverage namespace key needs to be dynamically loaded from a module that is attached afresh to the coverage namespace.

enhancement
in progress

with the HTML sorter if I sort the index by some column, visit a page, then go back the sorting reverts to the default setting. It should really do the...

enhancement