mirror of https://github.com/sveltejs/svelte
parent
4d186aa1b0
commit
5e8a25fe65
@ -0,0 +1,9 @@
|
|||||||
|
{{foo.bar.baz}}
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
onrender () {
|
||||||
|
console.log( 42 );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,7 @@
|
|||||||
|
export function test ( assert, code, map, smc, locator ) {
|
||||||
|
console.log( `code`, code )
|
||||||
|
console.log( `map`, map )
|
||||||
|
|
||||||
|
let loc = locator( 'foo.bar.baz' );
|
||||||
|
console.log( `loc`, loc )
|
||||||
|
}
|
Loading…
Reference in new issue