mirror of https://github.com/sveltejs/svelte
parent
75bb357e98
commit
f35edafad3
@ -1,3 +1,7 @@
|
||||
<script>
|
||||
import Widget from './Widget.html';
|
||||
</script>
|
||||
|
||||
<Widget scope="foo">
|
||||
<input autofocus>
|
||||
</Widget>
|
||||
|
@ -1,6 +1,6 @@
|
||||
[{
|
||||
"code": "missing-action",
|
||||
"message": "Missing action 'whatever'",
|
||||
"code": "missing-declaration",
|
||||
"message": "'whatever' is not defined",
|
||||
"pos": 5,
|
||||
"start": {
|
||||
"line": 1,
|
@ -1,6 +1,6 @@
|
||||
[{
|
||||
"code": "missing-animation",
|
||||
"message": "Missing animation 'foo'",
|
||||
"code": "missing-declaration",
|
||||
"message": "'foo' is not defined",
|
||||
"start": {
|
||||
"line": 2,
|
||||
"column": 6,
|
@ -1,6 +1,6 @@
|
||||
[{
|
||||
"code": "missing-component",
|
||||
"message": "Widget component is not defined",
|
||||
"code": "missing-declaration",
|
||||
"message": "'Widget' is not defined",
|
||||
"start": {
|
||||
"line": 2,
|
||||
"column": 1,
|
@ -1,6 +1,6 @@
|
||||
[{
|
||||
"code": "missing-transition",
|
||||
"message": "Missing transition 'foo'",
|
||||
"code": "missing-declaration",
|
||||
"message": "'foo' is not defined",
|
||||
"start": {
|
||||
"line": 1,
|
||||
"column": 5,
|
Loading…
Reference in new issue