formatter: handle multi-quoted expressions

This commit is contained in:
Tyler Wilding
2024-05-25 13:25:39 -04:00
parent e67a3ea4c3
commit 005fd46a96
5 changed files with 99 additions and 21 deletions
+41 -1
View File
@@ -100,4 +100,44 @@ Retain quoted empty lists
---
(or (= '() lst))
(or (= '() lst))
===
Quasi-quoted unquoted List
===
`,(something here)
---
`,(something here)
===
Empty Quoted List
===
'()
---
'()
===
Non-empty Quoted List
===
'(1 2 3)
---
'(1 2 3)
===
Non-empty Quoted List with quoted symbols inside
===
'('3)
---
'('3)
+11 -1
View File
@@ -36,4 +36,14 @@ vector-rad<-vector-deg/2!
---
vector-rad<-vector-deg/2!
vector-rad<-vector-deg/2!
===
Double Quoted Symbols
===
''something
---
''something