Skip to content

Commit 8030afc

Browse files
committed
update
1 parent d54e667 commit 8030afc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/language/src/module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ export function createZModelLanguageServices(
100100
for (const doc of documents) {
101101
if (doc.parseResult.lexerErrors.length > 0 || doc.parseResult.parserErrors.length > 0) {
102102
// balk if there are lexer or parser errors
103-
return;
103+
continue;
104104
}
105105

106106
if (doc.uri.scheme !== 'file') {
107-
return;
107+
continue;
108108
}
109109

110110
const schemaPath = fileURLToPath(doc.uri.toString());

0 commit comments

Comments
 (0)