Skip to content

Commit a394c03

Browse files
authored
test: update fixtures (#731)
1 parent c2f6e66 commit a394c03

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

explorer-v2/src/lib/ESLintEditor.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import MonacoEditor from './MonacoEditor.svelte';
44
import { loadMonacoEditor } from './scripts/monaco-loader';
55
import { createEventDispatcher, onMount } from 'svelte';
6+
import { SvelteMap } from 'svelte/reactivity';
67
78
const dispatch = createEventDispatcher();
89
@@ -16,7 +17,7 @@
1617
let leftMarkers = [];
1718
let rightMarkers = [];
1819
19-
let messageMap = new Map();
20+
let messageMap = new SvelteMap();
2021
2122
$: showApplyFix = fix && fixedValue !== code;
2223
$: {

tests/fixtures/parser/ast/svelte5/docs/runes/11-2-$inspect-ts-output.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1188,7 +1188,7 @@
11881188
}
11891189
},
11901190
{
1191-
"type": "Keyword",
1191+
"type": "Identifier",
11921192
"value": "with",
11931193
"range": [
11941194
63,

tests/fixtures/parser/ast/svelte5/docs/runes/11-3-$inspect-ts-output.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@
811811
}
812812
},
813813
{
814-
"type": "Keyword",
814+
"type": "Identifier",
815815
"value": "with",
816816
"range": [
817817
63,

tests/fixtures/parser/ast/ts-await-non-promise01-output.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@
13471347
}
13481348
},
13491349
{
1350-
"type": "Keyword",
1350+
"type": "Identifier",
13511351
"value": "const",
13521352
"range": [
13531353
41,

tests/fixtures/parser/ast/ts-issue226-output.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2909,7 +2909,7 @@
29092909
}
29102910
},
29112911
{
2912-
"type": "Keyword",
2912+
"type": "Identifier",
29132913
"value": "catch",
29142914
"range": [
29152915
210,

0 commit comments

Comments
 (0)