Skip to content

Commit

Permalink
Update LKG.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRosenwasser committed Jun 27, 2023
1 parent 4d40502 commit d6e7eb6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/tsc.js
Expand Up @@ -62100,7 +62100,7 @@ function createTypeChecker(host) {
}
}
}
const filtered = contains(include, 0 /* False */) ? getUnionType(types.filter((_, i) => include[i])) : target;
const filtered = contains(include, 0 /* False */) ? getUnionType(types.filter((_, i) => include[i]), 0 /* None */) : target;
return filtered.flags & 131072 /* Never */ ? target : filtered;
}
function isWeakType(type) {
Expand Down
2 changes: 1 addition & 1 deletion lib/tsserver.js
Expand Up @@ -66776,7 +66776,7 @@ function createTypeChecker(host) {
}
}
}
const filtered = contains(include, 0 /* False */) ? getUnionType(types.filter((_, i) => include[i])) : target;
const filtered = contains(include, 0 /* False */) ? getUnionType(types.filter((_, i) => include[i]), 0 /* None */) : target;
return filtered.flags & 131072 /* Never */ ? target : filtered;
}
function isWeakType(type) {
Expand Down
2 changes: 1 addition & 1 deletion lib/tsserverlibrary.js
Expand Up @@ -64543,7 +64543,7 @@ ${lanes.join("\n")}
}
}
}
const filtered = contains(include, 0 /* False */) ? getUnionType(types.filter((_, i) => include[i])) : target;
const filtered = contains(include, 0 /* False */) ? getUnionType(types.filter((_, i) => include[i]), 0 /* None */) : target;
return filtered.flags & 131072 /* Never */ ? target : filtered;
}
function isWeakType(type) {
Expand Down
2 changes: 1 addition & 1 deletion lib/typescript.js
Expand Up @@ -64543,7 +64543,7 @@ ${lanes.join("\n")}
}
}
}
const filtered = contains(include, 0 /* False */) ? getUnionType(types.filter((_, i) => include[i])) : target;
const filtered = contains(include, 0 /* False */) ? getUnionType(types.filter((_, i) => include[i]), 0 /* None */) : target;
return filtered.flags & 131072 /* Never */ ? target : filtered;
}
function isWeakType(type) {
Expand Down

0 comments on commit d6e7eb6

Please sign in to comment.