1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Add parser test for indented strings

So that in the next commit we can see what changes about this test
This commit is contained in:
Silvan Mosberger 2024-07-17 02:42:18 +02:00
parent 9300f855fc
commit 9fae50ed4b
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1 @@
(let string = "str"; in [ (/some/path) ((/some/path)) (("" + /some/path)) ((/some/path + "\n end")) (string) ((string)) (("" + string)) ((string + "\n end")) ("") ("") ("end") ])

View file

@ -0,0 +1,31 @@
let
string = "str";
in [
/some/path
''${/some/path}''
''
${/some/path}''
''${/some/path}
end''
string
''${string}''
''
${string}''
''${string}
end''
''''
''
''
''
end''
]