From 99d61877d6f411f33e0db578f04b333fb2110ddd Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Fri, 20 May 2022 00:45:51 -0700 Subject: [solid] more progress, no fragments, but still not right --- .../solid-dom-fixtures/eventExpressions/code.js | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 integration/bunjs-only-snippets/solid-dom-fixtures/eventExpressions/code.js (limited to 'integration/bunjs-only-snippets/solid-dom-fixtures/eventExpressions/code.js') diff --git a/integration/bunjs-only-snippets/solid-dom-fixtures/eventExpressions/code.js b/integration/bunjs-only-snippets/solid-dom-fixtures/eventExpressions/code.js new file mode 100644 index 000000000..78bc5e199 --- /dev/null +++ b/integration/bunjs-only-snippets/solid-dom-fixtures/eventExpressions/code.js @@ -0,0 +1,32 @@ +function hoisted1() { + console.log("hoisted"); +} +const hoisted2 = () => console.log("hoisted delegated"); + +const template = ( +
+ + + + + + + + + + + + +
+); -- cgit v1.2.3