When parsing syntax from a string input port, all line/column numbers get set to #f. Why is that?
(let* ([port (open-input-string "123")]
[stx (read-syntax "my-input" port)])
(printf "line ~a column ~a" (syntax-line stx) (syntax-column stx))
)
Expected output:
line 1 column 0
line #f column #f