some unfinished work on string interpolation

This commit is contained in:
Scott Richmond 2024-05-08 17:42:10 -04:00
parent 3466b075af
commit c5d04ddd66
2 changed files with 6 additions and 6 deletions

View File

@ -551,12 +551,12 @@
(import ./scanner :as s)
(do
#(comment
(def source `"{foo}"`)
(def source `"foo {bar} \{baz"`)
(def scanned (s/scan source))
# (def a-parser (new-parser scanned))
# (def parsed (whenn a-parser))
# (-> parsed)
(map (fn [t] (t :type)) (scanned :tokens))
(first (scanned :tokens))
)

View File

@ -187,7 +187,6 @@
:else (add-error scanner (string "Unexpected " curr " after number " num ".")))))
(recur scanner (buffer char) false))
## TODO: activate string interpolation
(defn- add-string
[scanner]
(print "Adding string")
@ -197,9 +196,10 @@
"{" (recur (advance scanner) (buffer/push buff char) true)
# allow multiline strings
"\n" (recur (update (advance scanner) :line inc) (buffer/push buff char) interpolate?)
### TODO: add interpolated strings
### :string -> (if (interpolate? :interpolated :string))
"\"" (add-token (advance scanner) :string (string buff))
"\"" (add-token (advance scanner) (if interpolate? :interpolated :string)(string buff))
### FIXME: Actually add the escaped character to the string;
### The only weird escapy-thing is actually the lbrace
### So only do anything fancy if the next char is "{"
"\\" (let [next (next-char scanner)
scanner (if (= next "\n")
(update scanner :line inc)