-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
fix: improve partial evaluation #15781
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Rich-Harris
merged 26 commits into
sveltejs:main
from
Ocean-OS:fix-non-state-source-wackiness
Apr 18, 2025
Merged
Changes from 5 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
cbb08ad
init
Ocean-OS e6c9e34
remove console log
Ocean-OS 6bb9757
Update packages/svelte/src/compiler/phases/scope.js
Rich-Harris 3a9aa79
fix each indices
Rich-Harris db4538d
dedupe
Rich-Harris c63cf04
Update packages/svelte/src/compiler/phases/scope.js
Rich-Harris 6844bc4
always break
Rich-Harris bc997c1
fix formatting
Rich-Harris 9325dc1
Apply suggestions from code review
Rich-Harris e3f2642
compactify
Rich-Harris 79099ce
compactify
Rich-Harris ed6c208
reuse values
Rich-Harris ed7f90c
add more globals, template literals, try functions and (some) member …
Ocean-OS b238896
remove console logs
Ocean-OS 3d967b6
Merge branch 'main' into fix-non-state-source-wackiness
Ocean-OS 966f3cc
remove function handling, tweak failing test
Ocean-OS bba8242
changeset
Ocean-OS 4d920c6
try putting static stuff in the template
Ocean-OS 968045f
nevermind
Ocean-OS ec04063
unused
Rich-Harris fbf5512
simplify
Rich-Harris 8f6f077
Update packages/svelte/src/compiler/phases/3-transform/client/visitor…
Rich-Harris 47851ca
YAGNI
Rich-Harris 2aec7b7
simplify and fix (should use cooked, not raw)
Rich-Harris 040edc3
unused
Rich-Harris 0ef68b9
changeset
Rich-Harris File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
packages/svelte/tests/snapshot/samples/each-index-non-null/_config.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { test } from '../../test'; | ||
|
||
export default test({}); |
19 changes: 19 additions & 0 deletions
19
packages/svelte/tests/snapshot/samples/each-index-non-null/_expected/client/index.svelte.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import 'svelte/internal/disclose-version'; | ||
import 'svelte/internal/flags/legacy'; | ||
import * as $ from 'svelte/internal/client'; | ||
|
||
var root_1 = $.template(`<p></p>`); | ||
|
||
export default function Each_index_non_null($$anchor) { | ||
var fragment = $.comment(); | ||
var node = $.first_child(fragment); | ||
|
||
$.each(node, 0, () => Array(10), $.index, ($$anchor, $$item, i) => { | ||
var p = root_1(); | ||
|
||
p.textContent = `index: ${i}`; | ||
$.append($$anchor, p); | ||
}); | ||
|
||
$.append($$anchor, fragment); | ||
} |
13 changes: 13 additions & 0 deletions
13
packages/svelte/tests/snapshot/samples/each-index-non-null/_expected/server/index.svelte.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import * as $ from 'svelte/internal/server'; | ||
|
||
export default function Each_index_non_null($$payload) { | ||
const each_array = $.ensure_array_like(Array(10)); | ||
|
||
$$payload.out += `<!--[-->`; | ||
|
||
for (let i = 0, $$length = each_array.length; i < $$length; i++) { | ||
$$payload.out += `<p>index: ${$.escape(i)}</p>`; | ||
} | ||
|
||
$$payload.out += `<!--]-->`; | ||
} |
3 changes: 3 additions & 0 deletions
3
packages/svelte/tests/snapshot/samples/each-index-non-null/index.svelte
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{#each Array(10), i} | ||
<p>index: {i}</p> | ||
{/each} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.