Skip to content

Commit 1906813

Browse files
committed
Update string interpolation highlighting
Add scopes `meta.template.expression.scala` and `meta.embedded.line.scala` Eg. In `s"${val a = 4; foo(a)}"`, `${val a = 4; foo(a)}` will have `meta.template.expression.scala` while `val a = 4; foo(a)` will have `meta.embedded.line.scala`. Earlier `val a = 4; foo(a)` was under `punctuation.definition.template-expression`. This makes things without a scope like `; foo(a)` highlighted differently inside string interpolation (they will have the same highlighting as `${` and `}`) vs outside, which is not desireable.
1 parent 9553c6e commit 1906813

File tree

6 files changed

+78
-79
lines changed

6 files changed

+78
-79
lines changed

src/typescript/Scala.tmLanguage.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,7 @@ export const scalaTmLanguage: TmLanguage = {
327327
match: "\\$\\$"
328328
},
329329
{
330+
name: "meta.template.expression.scala",
330331
match: `(\\$)(${simpleInterpolatedVariable})`,
331332
captures: {
332333
"1": {
@@ -335,7 +336,7 @@ export const scalaTmLanguage: TmLanguage = {
335336
}
336337
},
337338
{
338-
name: "punctuation.definition.template-expression.scala",
339+
name: "meta.template.expression.scala",
339340
begin: "\\$\\{",
340341
beginCaptures: { "0": { name: "punctuation.definition.template-expression.begin.scala" } },
341342
end: "\\}",
@@ -344,7 +345,8 @@ export const scalaTmLanguage: TmLanguage = {
344345
{
345346
include: "#code"
346347
}
347-
]
348+
],
349+
contentName: "meta.embedded.line.scala"
348350
}
349351
]
350352
},

syntaxes/Scala.tmLanguage.json

+1-1
Large diffs are not rendered by default.

tests/snap/lexical.test.scala.snap

+40-40
Original file line numberDiff line numberDiff line change
@@ -279,90 +279,90 @@
279279
#^^ source.scala
280280
# ^ source.scala keyword.interpolation.scala
281281
# ^ source.scala string.quoted.double.interpolated.scala punctuation.definition.string.begin.scala
282-
# ^ source.scala punctuation.definition.template-expression.begin.scala
283-
# ^ source.scala
282+
# ^ source.scala meta.template.expression.scala punctuation.definition.template-expression.begin.scala
283+
# ^ source.scala meta.template.expression.scala
284284
# ^ source.scala string.quoted.double.interpolated.scala
285285
# ^ source.scala string.quoted.double.interpolated.scala
286286
# ^ source.scala string.quoted.double.interpolated.scala
287287
# ^ source.scala string.quoted.double.interpolated.scala
288288
# ^ source.scala string.quoted.double.interpolated.scala
289289
# ^ source.scala string.quoted.double.interpolated.scala
290290
# ^ source.scala string.quoted.double.interpolated.scala
291-
# ^^ source.scala punctuation.definition.template-expression.scala punctuation.definition.template-expression.begin.scala
292-
# ^^^ source.scala punctuation.definition.template-expression.scala keyword.declaration.stable.scala
293-
# ^ source.scala punctuation.definition.template-expression.scala
294-
# ^ source.scala punctuation.definition.template-expression.scala variable.other.declaration.scala
295-
# ^ source.scala punctuation.definition.template-expression.scala
296-
# ^ source.scala punctuation.definition.template-expression.scala keyword.operator.comparison.scala
297-
# ^^ source.scala punctuation.definition.template-expression.scala
298-
# ^ source.scala punctuation.definition.template-expression.scala punctuation.definition.template-expression.end.scala
291+
# ^^ source.scala meta.template.expression.scala punctuation.definition.template-expression.begin.scala
292+
# ^^^ source.scala meta.template.expression.scala meta.embedded.line.scala keyword.declaration.stable.scala
293+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala
294+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala variable.other.declaration.scala
295+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala
296+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala keyword.operator.comparison.scala
297+
# ^^ source.scala meta.template.expression.scala meta.embedded.line.scala
298+
# ^ source.scala meta.template.expression.scala punctuation.definition.template-expression.end.scala
299299
# ^ source.scala string.quoted.double.interpolated.scala punctuation.definition.string.end.scala
300300
> custom"$x plain ${val x = y}"
301301
#^^ source.scala
302302
# ^^^^^^ source.scala keyword.interpolation.scala
303303
# ^ source.scala string.quoted.double.interpolated.scala punctuation.definition.string.begin.scala
304-
# ^ source.scala punctuation.definition.template-expression.begin.scala
305-
# ^ source.scala
304+
# ^ source.scala meta.template.expression.scala punctuation.definition.template-expression.begin.scala
305+
# ^ source.scala meta.template.expression.scala
306306
# ^ source.scala string.quoted.double.interpolated.scala
307307
# ^ source.scala string.quoted.double.interpolated.scala
308308
# ^ source.scala string.quoted.double.interpolated.scala
309309
# ^ source.scala string.quoted.double.interpolated.scala
310310
# ^ source.scala string.quoted.double.interpolated.scala
311311
# ^ source.scala string.quoted.double.interpolated.scala
312312
# ^ source.scala string.quoted.double.interpolated.scala
313-
# ^^ source.scala punctuation.definition.template-expression.scala punctuation.definition.template-expression.begin.scala
314-
# ^^^ source.scala punctuation.definition.template-expression.scala keyword.declaration.stable.scala
315-
# ^ source.scala punctuation.definition.template-expression.scala
316-
# ^ source.scala punctuation.definition.template-expression.scala variable.other.declaration.scala
317-
# ^ source.scala punctuation.definition.template-expression.scala
318-
# ^ source.scala punctuation.definition.template-expression.scala keyword.operator.comparison.scala
319-
# ^^ source.scala punctuation.definition.template-expression.scala
320-
# ^ source.scala punctuation.definition.template-expression.scala punctuation.definition.template-expression.end.scala
313+
# ^^ source.scala meta.template.expression.scala punctuation.definition.template-expression.begin.scala
314+
# ^^^ source.scala meta.template.expression.scala meta.embedded.line.scala keyword.declaration.stable.scala
315+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala
316+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala variable.other.declaration.scala
317+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala
318+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala keyword.operator.comparison.scala
319+
# ^^ source.scala meta.template.expression.scala meta.embedded.line.scala
320+
# ^ source.scala meta.template.expression.scala punctuation.definition.template-expression.end.scala
321321
# ^ source.scala string.quoted.double.interpolated.scala punctuation.definition.string.end.scala
322322
>
323323
> s"""$x plain ${val x = y}"""
324324
#^^ source.scala
325325
# ^ source.scala keyword.interpolation.scala
326326
# ^^^ source.scala string.quoted.triple.interpolated.scala punctuation.definition.string.begin.scala
327-
# ^ source.scala punctuation.definition.template-expression.begin.scala
328-
# ^ source.scala
327+
# ^ source.scala meta.template.expression.scala punctuation.definition.template-expression.begin.scala
328+
# ^ source.scala meta.template.expression.scala
329329
# ^ source.scala string.quoted.triple.interpolated.scala
330330
# ^ source.scala string.quoted.triple.interpolated.scala
331331
# ^ source.scala string.quoted.triple.interpolated.scala
332332
# ^ source.scala string.quoted.triple.interpolated.scala
333333
# ^ source.scala string.quoted.triple.interpolated.scala
334334
# ^ source.scala string.quoted.triple.interpolated.scala
335335
# ^ source.scala string.quoted.triple.interpolated.scala
336-
# ^^ source.scala punctuation.definition.template-expression.scala punctuation.definition.template-expression.begin.scala
337-
# ^^^ source.scala punctuation.definition.template-expression.scala keyword.declaration.stable.scala
338-
# ^ source.scala punctuation.definition.template-expression.scala
339-
# ^ source.scala punctuation.definition.template-expression.scala variable.other.declaration.scala
340-
# ^ source.scala punctuation.definition.template-expression.scala
341-
# ^ source.scala punctuation.definition.template-expression.scala keyword.operator.comparison.scala
342-
# ^^ source.scala punctuation.definition.template-expression.scala
343-
# ^ source.scala punctuation.definition.template-expression.scala punctuation.definition.template-expression.end.scala
336+
# ^^ source.scala meta.template.expression.scala punctuation.definition.template-expression.begin.scala
337+
# ^^^ source.scala meta.template.expression.scala meta.embedded.line.scala keyword.declaration.stable.scala
338+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala
339+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala variable.other.declaration.scala
340+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala
341+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala keyword.operator.comparison.scala
342+
# ^^ source.scala meta.template.expression.scala meta.embedded.line.scala
343+
# ^ source.scala meta.template.expression.scala punctuation.definition.template-expression.end.scala
344344
# ^^^ source.scala string.quoted.triple.interpolated.scala punctuation.definition.string.end.scala
345345
> custom"""$x plain ${val x = y}"""
346346
#^^ source.scala
347347
# ^^^^^^ source.scala keyword.interpolation.scala
348348
# ^^^ source.scala string.quoted.triple.interpolated.scala punctuation.definition.string.begin.scala
349-
# ^ source.scala punctuation.definition.template-expression.begin.scala
350-
# ^ source.scala
349+
# ^ source.scala meta.template.expression.scala punctuation.definition.template-expression.begin.scala
350+
# ^ source.scala meta.template.expression.scala
351351
# ^ source.scala string.quoted.triple.interpolated.scala
352352
# ^ source.scala string.quoted.triple.interpolated.scala
353353
# ^ source.scala string.quoted.triple.interpolated.scala
354354
# ^ source.scala string.quoted.triple.interpolated.scala
355355
# ^ source.scala string.quoted.triple.interpolated.scala
356356
# ^ source.scala string.quoted.triple.interpolated.scala
357357
# ^ source.scala string.quoted.triple.interpolated.scala
358-
# ^^ source.scala punctuation.definition.template-expression.scala punctuation.definition.template-expression.begin.scala
359-
# ^^^ source.scala punctuation.definition.template-expression.scala keyword.declaration.stable.scala
360-
# ^ source.scala punctuation.definition.template-expression.scala
361-
# ^ source.scala punctuation.definition.template-expression.scala variable.other.declaration.scala
362-
# ^ source.scala punctuation.definition.template-expression.scala
363-
# ^ source.scala punctuation.definition.template-expression.scala keyword.operator.comparison.scala
364-
# ^^ source.scala punctuation.definition.template-expression.scala
365-
# ^ source.scala punctuation.definition.template-expression.scala punctuation.definition.template-expression.end.scala
358+
# ^^ source.scala meta.template.expression.scala punctuation.definition.template-expression.begin.scala
359+
# ^^^ source.scala meta.template.expression.scala meta.embedded.line.scala keyword.declaration.stable.scala
360+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala
361+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala variable.other.declaration.scala
362+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala
363+
# ^ source.scala meta.template.expression.scala meta.embedded.line.scala keyword.operator.comparison.scala
364+
# ^^ source.scala meta.template.expression.scala meta.embedded.line.scala
365+
# ^ source.scala meta.template.expression.scala punctuation.definition.template-expression.end.scala
366366
# ^^^ source.scala string.quoted.triple.interpolated.scala punctuation.definition.string.end.scala
367367
>}
368368
#^ source.scala punctuation.section.block.end.scala

tests/unit/#71.test.scala

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
s"1 + 2 = ${ 1 + { val x = 2; x } }."
44
// ^ keyword.interpolation.scala
5+
// ^^^^^^^^^^^^^^^^^^^^^^^^^ meta.template.expression.scala
56
// ^ punctuation.definition.string.begin.scala
67
// ^^^^^^^^ string.quoted.double.interpolated.scala
78
// ^^ punctuation.definition.template-expression.begin.scala
89
// ^ punctuation.section.block.begin.scala
910
// ^ punctuation.section.block.end.scala
10-
// ^^^^^^^^^^^^^^^^^^^^^^ punctuation.definition.template-expression.scala
11+
// ^^^^^^^^^^^^^^^^^^^^^^ meta.embedded.line.scala
1112
// ^ punctuation.definition.template-expression.end.scala
1213
// ^ string.quoted.double.interpolated.scala
1314
// ^ punctuation.definition.string.end.scala
@@ -16,18 +17,17 @@
1617
// ^ keyword.interpolation.scala
1718
// ^^^ punctuation.definition.string.begin.scala
1819
// ^^^^^^^^ string.quoted.triple.interpolated.scala
19-
// ^^ punctuation.definition.template-expression.begin.scala
20+
// ^^ meta.template.expression.scala punctuation.definition.template-expression.begin.scala
2021
def add(x: Int, y: Int) = {
21-
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^ punctuation.definition.template-expression.scala
22+
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.template.expression.scala meta.embedded.line.scala
2223
// ^ punctuation.section.block.begin.scala
2324
x + y
24-
// ^^^^^ punctuation.definition.template-expression.scala
25+
// ^^^^^ meta.template.expression.scala meta.embedded.line.scala
2526
}
26-
// ^ punctuation.section.block.end.scala
27-
// ^ punctuation.definition.template-expression.scala
27+
// ^ meta.template.expression.scala meta.embedded.line.scala punctuation.section.block.end.scala
2828
add(1, 2)
29-
// ^^^^^^^^^ punctuation.definition.template-expression.scala
29+
// ^^^^^^^^^ meta.template.expression.scala meta.embedded.line.scala
3030
}."""
31-
// ^ punctuation.definition.template-expression.end.scala
31+
// ^ meta.template.expression.scala punctuation.definition.template-expression.end.scala
3232
// ^ string.quoted.triple.interpolated.scala
3333
// ^^^ punctuation.definition.string.end.scala

tests/unit/#72.test.scala

+19-2
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,42 @@
22

33
s"$first$second"
44
// ^ keyword.interpolation.scala
5+
// ^^^^^^^^^^^^^ meta.template.expression.scala
56
// ^ punctuation.definition.string.begin.scala
67
// ^ punctuation.definition.template-expression.begin.scala
78
// ^ punctuation.definition.template-expression.begin.scala
89
// ^ punctuation.definition.string.end.scala
910

1011
s"$safeTagMarker${mtch.matched}$safeTagMarker"
1112
// ^ keyword.interpolation.scala
13+
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.template.expression.scala
1214
// ^ punctuation.definition.string.begin.scala
1315
// ^ punctuation.definition.template-expression.begin.scala
1416
// ^^ punctuation.definition.template-expression.begin.scala
15-
// ^^^^^^^^^^^^ punctuation.definition.template-expression.scala
17+
// ^^^^^^^^^^^^ meta.embedded.line.scala
1618
// ^ punctuation.definition.template-expression.end.scala
1719
// ^ punctuation.definition.template-expression.begin.scala
1820
// ^ punctuation.definition.string.end.scala
1921

2022
s"${x$}"
2123
// ^ keyword.interpolation.scala
24+
// ^^^^^ meta.template.expression.scala
2225
// ^ punctuation.definition.string.begin.scala
2326
// ^^ punctuation.definition.template-expression.begin.scala
24-
// ^^ punctuation.definition.template-expression.scala
27+
// ^^ meta.embedded.line.scala
2528
// ^ punctuation.definition.template-expression.end.scala
2629
// ^ punctuation.definition.string.end.scala
30+
31+
val a = 4; foo(a)
32+
// ^^^ keyword.declaration.stable.scala
33+
// ^ variable.other.declaration.scala
34+
// ^ keyword.operator.comparison.scala
35+
// ^ constant.numeric.scala
36+
s"$safeTagMarker${val a = 4; foo(a)}$safeTagMarker"
37+
// ^^^^^^^^^^^^^^^^^^^^ meta.template.expression.scala
38+
// ^^^^^^^^^^^^^^^^^ meta.embedded.line.scala
39+
// ^^^^^^^^^^^^^^^^^ - punctuation.definition.template-expression
40+
// ^^^ keyword.declaration.stable.scala
41+
// ^ variable.other.declaration.scala
42+
// ^ keyword.operator.comparison.scala
43+
// ^ constant.numeric.scala

0 commit comments

Comments
 (0)