summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rw-r--r--script/core/diagnostics/assign-type-mismatch.lua7
1 files changed, 1 insertions, 6 deletions
diff --git a/script/core/diagnostics/assign-type-mismatch.lua b/script/core/diagnostics/assign-type-mismatch.lua
index 0cccc7ee..2d5c3f98 100644
--- a/script/core/diagnostics/assign-type-mismatch.lua
+++ b/script/core/diagnostics/assign-type-mismatch.lua
@@ -99,12 +99,7 @@ return function (uri, callback)
end
-- local Cat = setmetatable({}, {__index = Animal}) 允许逆变
- if value.type == 'select'
- and value.sindex == 1
- and value.vararg
- and value.vararg.type == 'call'
- and value.vararg.node.special == 'setmetatable'
- and hasMarkClass(source) then
+ if hasMarkClass(source) then
if vm.canCastType(uri, valueNode:copy():remove 'table', varNode) then
return
end