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 --- test/bun.js/solid-dom-fixtures/components/code.js | 161 ---------------------- 1 file changed, 161 deletions(-) delete mode 100644 test/bun.js/solid-dom-fixtures/components/code.js (limited to 'test/bun.js/solid-dom-fixtures/components/code.js') diff --git a/test/bun.js/solid-dom-fixtures/components/code.js b/test/bun.js/solid-dom-fixtures/components/code.js deleted file mode 100644 index f3bd159d6..000000000 --- a/test/bun.js/solid-dom-fixtures/components/code.js +++ /dev/null @@ -1,161 +0,0 @@ -import { Show } from "somewhere"; - -const Child = (props) => { - const [s, set] = createSignal(); - return ( - <> -
Hello {props.name}
-
{props.children}
- - ); -}; - -const template = (props) => { - let childRef; - const { content } = props; - return ( -
- -
From Parent
-
- - {/* Comment Node */} -
{content}
-
- - {(context) => context} - -
- ); -}; - -const template2 = ( - (e = el)} - /> -); - -const template3 = ( - -
-
-
- After - -); - -const [s, set] = createSignal(); -const template4 = {
}; - -const template5 = {state.dynamic}; - -// builtIns -const template6 = ( - }> - {(item) => {item}} - -); - -const template7 = ( - -
- {state.dynamic} - -); - -const template8 = ( - - {(item) => item} - {(item) => item} - -); - -const template9 = <_garbage>Hi; - -const template10 = ( -
- new - {" | "} - comments - {" | "} - show - {" | "} - ask - {" | "} - jobs - {" | "} - submit -
-); - -const template11 = ( -
- new - {" | "} - comments - show - {" | "} - ask - jobs - {" | "} - submit -
-); - -const template12 = ( -
- {" | "} - comments - {" | "} - {" | "} - {" | "} - show - {" | "} -
-); - -class Template13 { - render() { - this.shouldStay}> - {this.content} - ; - } -} - -const Template14 = {data()}; - -const Template15 = ; - -const Template16 = ; - -const Template17 = ( -
-    1 2 3
-  
-); -const Template18 = ( -
-    1
-    2
-    3
-  
-); - -const Template19 = ; - -const Template20 = ; - -const template21 = ( - -); -- cgit v1.2.3