diff options
author | 2021-11-04 15:27:29 -0700 | |
---|---|---|
committer | 2021-11-04 15:27:29 -0700 | |
commit | fd57e2d9a630a2ba0d229419e11f39abd97f88bf (patch) | |
tree | e090f0cc333175e3852487bf2e360a44a1ceabfa /integration/snapshots/string-escapes.hmr.debug.js | |
parent | 303a5ea898cd1df71a00caabd326c74940b379fc (diff) | |
download | bun-fd57e2d9a630a2ba0d229419e11f39abd97f88bf.tar.gz bun-fd57e2d9a630a2ba0d229419e11f39abd97f88bf.tar.zst bun-fd57e2d9a630a2ba0d229419e11f39abd97f88bf.zip |
[JSX] Match esbuild behavior for multiline JSX string literals
Diffstat (limited to 'integration/snapshots/string-escapes.hmr.debug.js')
-rw-r--r-- | integration/snapshots/string-escapes.hmr.debug.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/integration/snapshots/string-escapes.hmr.debug.js b/integration/snapshots/string-escapes.hmr.debug.js index 7a2d88ad1..19045846a 100644 --- a/integration/snapshots/string-escapes.hmr.debug.js +++ b/integration/snapshots/string-escapes.hmr.debug.js @@ -346,10 +346,10 @@ var hmr = new HMR(2482749838, "string-escapes.js"), exports = hmr.exports; data: "\v" }, undefined, false, undefined, this), jsx("div", { - data: "\u2028" + data: "\\u2028" }, undefined, false, undefined, this), jsx("div", { - data: "\u2029" + data: "\\u2029" }, undefined, false, undefined, this), jsx("div", { data: "😊" @@ -401,11 +401,11 @@ var hmr = new HMR(2482749838, "string-escapes.js"), exports = hmr.exports; jsx("div", { children: "\v" }, undefined, false, undefined, this), - jsx("div", {}, "\u2028", false, undefined, this), + jsx("div", {}, "\\u2028", false, undefined, this), jsx("div", { children: "\u2028" }, undefined, false, undefined, this), - jsx("div", {}, "\u2029", false, undefined, this), + jsx("div", {}, "\\u2029", false, undefined, this), jsx("div", { children: "\u2029" }, undefined, false, undefined, this), |