@effect/language-service 0.58.0 → 0.58.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +4 -0
- package/cli.js.map +1 -1
- package/effect-lsp-patch-utils.js +4 -0
- package/effect-lsp-patch-utils.js.map +1 -1
- package/index.js +4 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +4 -0
- package/transform.js.map +1 -1
|
@@ -3695,6 +3695,10 @@ var anyUnknownInErrorContext = createDiagnostic({
|
|
|
3695
3695
|
}
|
|
3696
3696
|
ts.forEachChild(node, appendNodeToVisit);
|
|
3697
3697
|
if (!ts.isExpression(node)) continue;
|
|
3698
|
+
if (node.parent && ts.isJsxSelfClosingElement(node.parent) && node.parent.tagName === node) continue;
|
|
3699
|
+
if (node.parent && ts.isJsxOpeningElement(node.parent) && node.parent.tagName === node) continue;
|
|
3700
|
+
if (node.parent && ts.isJsxClosingElement(node.parent) && node.parent.tagName === node) continue;
|
|
3701
|
+
if (node.parent && ts.isJsxAttribute(node.parent) && node.parent.name === node) continue;
|
|
3698
3702
|
let type = typeChecker.getTypeAtLocation(node);
|
|
3699
3703
|
if (ts.isCallExpression(node)) {
|
|
3700
3704
|
const resolvedSignature = typeChecker.getResolvedSignature(node);
|