mirror of https://github.com/sveltejs/svelte
deconflict conextual action variable (#5839)
parent
5949c4a594
commit
734257001d
@ -0,0 +1,18 @@
|
|||||||
|
import Component from '../../Component';
|
||||||
|
import TemplateScope from './TemplateScope';
|
||||||
|
import { is_reserved_keyword } from '../../utils/reserved_keywords';
|
||||||
|
|
||||||
|
export default function is_contextual(component: Component, scope: TemplateScope, name: string) {
|
||||||
|
if (is_reserved_keyword(name)) return true;
|
||||||
|
|
||||||
|
// if it's a name below root scope, it's contextual
|
||||||
|
if (!scope.is_top_level(name)) return true;
|
||||||
|
|
||||||
|
const variable = component.var_lookup.get(name);
|
||||||
|
|
||||||
|
// hoistables, module declarations, and imports are non-contextual
|
||||||
|
if (!variable || variable.hoistable) return false;
|
||||||
|
|
||||||
|
// assume contextual
|
||||||
|
return true;
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
let result;
|
||||||
|
|
||||||
|
export default {
|
||||||
|
before_test() {
|
||||||
|
result = [];
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
collect: (str) => result.push(str)
|
||||||
|
},
|
||||||
|
test({ assert }) {
|
||||||
|
assert.deepEqual(result, ['each_action', 'import_action']);
|
||||||
|
}
|
||||||
|
};
|
@ -0,0 +1,17 @@
|
|||||||
|
<script>
|
||||||
|
import action from './util.js';
|
||||||
|
export let collect;
|
||||||
|
|
||||||
|
function each_action(_, fn) {
|
||||||
|
fn('each_action');
|
||||||
|
}
|
||||||
|
const array = [each_action];
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div use:action={collect} />
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
{#each array as action}
|
||||||
|
<div use:action={collect} />
|
||||||
|
{/each}
|
||||||
|
</ul>
|
@ -0,0 +1,3 @@
|
|||||||
|
export default function (_, fn) {
|
||||||
|
fn('import_action');
|
||||||
|
}
|
Loading…
Reference in new issue