1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
---input---
"hello world"
"hello ${ { a = "world"; }.a }"
"1 2 ${toString 3}"
"${pkgs.bash}/bin/sh"
true, false, null, 123, 3.141
-1
/etc
./foo.png
~/.config
<nixpkgs>
''
multi
line
string
''
''
multi
${value}
string
''
---tokens---
'"' Literal.String.Double
'hello world' Literal.String.Double
'"' Literal.String.Double
'\n\n' Text
'"' Literal.String.Double
'hello ' Literal.String.Double
'${' Literal.String.Interpol
' ' Text
'{' Punctuation
' ' Text
'a' Literal.String.Symbol
' ' Text
'=' Operator
' ' Text
'"' Literal.String.Double
'world' Literal.String.Double
'"' Literal.String.Double
';' Punctuation
' ' Text
'}' Punctuation
'.' Operator
'a' Text
' ' Text
'}' Literal.String.Interpol
'"' Literal.String.Double
'\n\n' Text
'"' Literal.String.Double
'1 2 ' Literal.String.Double
'${' Literal.String.Interpol
'toString' Name.Builtin
' ' Text
'3' Literal.Number.Integer
'}' Literal.String.Interpol
'"' Literal.String.Double
'\n\n' Text
'"' Literal.String.Double
'${' Literal.String.Interpol
'pkgs' Text
'.' Operator
'bash' Text
'}' Literal.String.Interpol
'/bin/sh' Literal.String.Double
'"' Literal.String.Double
'\n\n' Text
'true' Name.Constant
',' Punctuation
' ' Text
'false' Name.Constant
',' Punctuation
' ' Text
'null' Name.Constant
',' Punctuation
' ' Text
'123' Literal.Number.Integer
',' Punctuation
' ' Text
'3.141' Literal.Number.Float
'\n\n' Text
'-1' Literal.Number.Integer
'\n\n' Text
'/etc' Literal
'\n' Text
'./foo.png' Literal
'\n' Text
'~/.config' Literal
'\n\n' Text
'<nixpkgs>' Literal
'\n\n' Text
"''" Literal.String.Multiline
'\n multi\n line\n string\n' Literal.String.Multiline
"''" Literal.String.Multiline
'\n\n' Text
"''" Literal.String.Multiline
'\n multi\n ' Literal.String.Multiline
'${' Literal.String.Interpol
'value' Text
'}' Literal.String.Interpol
'\n string\n' Literal.String.Multiline
"''" Literal.String.Multiline
'\n' Text
|