Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Sep 25, 2024
1 parent 0c5d009 commit 1ad1e40
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"range": {
"end": {
"character": 20,
"line": 25
"line": 26
},
"start": {
"character": 7,
"line": 25
"line": 26
}
},
"severity": 1,
Expand All @@ -22,11 +22,11 @@
"range": {
"end": {
"character": 21,
"line": 26
"line": 27
},
"start": {
"character": 12,
"line": 26
"line": 27
}
},
"severity": 1,
Expand All @@ -39,11 +39,11 @@
"range": {
"end": {
"character": 21,
"line": 26
"line": 27
},
"start": {
"character": 7,
"line": 26
"line": 27
}
},
"severity": 1,
Expand All @@ -56,11 +56,11 @@
"range": {
"end": {
"character": 17,
"line": 27
"line": 28
},
"start": {
"character": 8,
"line": 27
"line": 28
}
},
"severity": 1,
Expand All @@ -73,11 +73,11 @@
"range": {
"end": {
"character": 27,
"line": 29
"line": 30
},
"start": {
"character": 14,
"line": 29
"line": 30
}
},
"severity": 1,
Expand All @@ -90,11 +90,11 @@
"range": {
"end": {
"character": 28,
"line": 30
"line": 31
},
"start": {
"character": 19,
"line": 30
"line": 31
}
},
"severity": 1,
Expand All @@ -107,11 +107,11 @@
"range": {
"end": {
"character": 28,
"line": 30
"line": 31
},
"start": {
"character": 14,
"line": 30
"line": 31
}
},
"severity": 1,
Expand All @@ -124,11 +124,11 @@
"range": {
"end": {
"character": 24,
"line": 31
"line": 32
},
"start": {
"character": 15,
"line": 31
"line": 32
}
},
"severity": 1,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
[
{
"code": 2344,
"message": "Type 'typeof Runes__SvelteComponent_' does not satisfy the constraint '(...args: any) => any'.\n Type 'typeof Runes__SvelteComponent_' provides no match for the signature '(...args: any): any'.",
"range": {
"end": {
"character": 41,
"line": 12
},
"start": {
"character": 29,
"line": 12
}
},
"severity": 1,
"source": "ts",
"tags": []
},
{
"code": 2353,
"message": "Object literal may only specify known properties, and 'can_bind' does not exist in type '{ only_bind?: (() => boolean) | undefined; }'.",
"range": {
"end": {
"character": 20,
"line": 20
"line": 21
},
"start": {
"character": 12,
"line": 20
"line": 21
}
},
"severity": 1,
Expand All @@ -22,11 +39,11 @@
"range": {
"end": {
"character": 16,
"line": 21
"line": 22
},
"start": {
"character": 8,
"line": 21
"line": 22
}
},
"severity": 1,
Expand All @@ -39,11 +56,11 @@
"range": {
"end": {
"character": 16,
"line": 22
"line": 23
},
"start": {
"character": 8,
"line": 22
"line": 23
}
},
"severity": 1,
Expand All @@ -56,11 +73,28 @@
"range": {
"end": {
"character": 20,
"line": 25
"line": 26
},
"start": {
"character": 12,
"line": 25
"line": 26
}
},
"severity": 1,
"source": "ts",
"tags": []
},
{
"code": 2353,
"message": "Object literal may only specify known properties, and 'readonly' does not exist in type '{ only_bind?: (() => boolean) | undefined; }'.",
"range": {
"end": {
"character": 27,
"line": 30
},
"start": {
"character": 19,
"line": 30
}
},
"severity": 1,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<script lang="ts">
import Legacy from './Legacy.svelte';
import Runes from './Runes.svelte';
import RunesGeneric from './RunesGeneric.svelte';
let bind_and_prop: () => boolean;
let value = '';
Expand Down

0 comments on commit 1ad1e40

Please sign in to comment.