From 88538b7c2c68fe506d0a20a8f5b78e47c6c60299 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Fri, 9 Dec 2022 16:41:38 -0800 Subject: Deprecate very incomplete Solid.js JSX transform We don't have time to do a good job of this and Bun.plugin makes it possible to use Solid with Bun --- .../solid-dom-fixtures/textInterpolation/code.js | 72 ---------------------- 1 file changed, 72 deletions(-) delete mode 100644 test/bun.js/solid-dom-fixtures/textInterpolation/code.js (limited to 'test/bun.js/solid-dom-fixtures/textInterpolation/code.js') diff --git a/test/bun.js/solid-dom-fixtures/textInterpolation/code.js b/test/bun.js/solid-dom-fixtures/textInterpolation/code.js deleted file mode 100644 index 21698ea89..000000000 --- a/test/bun.js/solid-dom-fixtures/textInterpolation/code.js +++ /dev/null @@ -1,72 +0,0 @@ -const trailing = Hello ; -const leading = John; - -/* prettier-ignore */ -const extraSpaces = Hello John; - -const trailingExpr = Hello {name}; -const leadingExpr = {greeting} John; - -/* prettier-ignore */ -const multiExpr = {greeting} {name}; - -/* prettier-ignore */ -const multiExprSpaced = {greeting} {name} ; - -/* prettier-ignore */ -const multiExprTogether = {greeting}{name} ; - -/* prettier-ignore */ -const multiLine = - - Hello - - - -/* prettier-ignore */ -const multiLineTrailingSpace = - Hello - John - - -/* prettier-ignore */ -const multiLineNoTrailingSpace = - Hello - John - - -/* prettier-ignore */ -const escape = -  <Hi>  - - -/* prettier-ignore */ -const escape2 = -  <Hi>  - - -/* prettier-ignore */ -const escape3 = <> -  <Hi>  - - -const injection = Hi{""}; - -let value = "World"; -const evaluated = Hello {value + "!"}; - -let number = 4 + 5; -const evaluatedNonString = 4 + 5 = {number}; - -const newLineLiteral = ( -
- {s} - {"\n"}d -
-); - -const trailingSpace =
{expr}
; - -const trailingSpaceComp = {expr}; - -const trailingSpaceFrag = <>{expr}; -- cgit v1.2.3