TypeScript/tests/baselines/reference/templateStringInSwitchAndCase.js
LowR cd0434aa76
fix(39744): make template literals more spec compliant (#45304)
* fix(39744): make template literals more spec compliant

* Add evaluation test for template literals

* Add test for template literals with source map
2021-10-13 12:03:31 -07:00

16 lines
327 B
TypeScript

//// [templateStringInSwitchAndCase.ts]
switch (`abc${0}abc`) {
case `abc`:
case `123`:
case `abc${0}abc`:
`def${1}def`;
}
//// [templateStringInSwitchAndCase.js]
switch ("abc".concat(0, "abc")) {
case "abc":
case "123":
case "abc".concat(0, "abc"):
"def".concat(1, "def");
}