File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 617617 (cond
618618 [(hash-has-key? vars x)
619619 (if spec?
620- (string->symbol (format "?~a " (hash-ref vars x)))
620+ (string->symbol (format "?s ~a " (hash-ref vars x)))
621621 (string->symbol (format "?t~a " (hash-ref vars x))))]
622622 [else (vector-ref mappings x)]))
623623
726726 ; ; Var-spec-bindings
727727 (for ([var (in-list (context-vars ctx))])
728728 ; Get the binding names for the program
729- (define binding-name (string->symbol (format "?~a " var)))
729+ (define binding-name (string->symbol (format "?s ~a " var)))
730730 (define constructor-name (string->symbol (format "const~a " constructor-num)))
731731 (hash-set! binding->constructor binding-name constructor-name)
732732
802802 (define curr-binding-name
803803 (if (hash-has-key? vars root)
804804 (if (spec? brf)
805- (string->symbol (format "?~a " (hash-ref vars root)))
805+ (string->symbol (format "?s ~a " (hash-ref vars root)))
806806 (string->symbol (format "?t~a " (hash-ref vars root))))
807807 (string->symbol (format "?r~a " root))))
808808
You can’t perform that action at this time.
0 commit comments