diff options
Diffstat (limited to 'script/core/hover/init.lua')
-rw-r--r-- | script/core/hover/init.lua | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/script/core/hover/init.lua b/script/core/hover/init.lua index 9c08ad7e..81285ef2 100644 --- a/script/core/hover/init.lua +++ b/script/core/hover/init.lua @@ -21,9 +21,6 @@ local function eachFunctionAndOverload(value, callback) end local function getHoverAsValue(source) - local oop = source.type == 'method' - or source.type == 'getmethod' - or source.type == 'setmethod' local label = getLabel(source) local desc = getDesc(source) if not desc then @@ -49,9 +46,6 @@ local function getHoverAsFunction(source) local defs = 0 local protos = 0 local other = 0 - local oop = source.type == 'method' - or source.type == 'getmethod' - or source.type == 'setmethod' local mark = {} for _, def in ipairs(values) do def = guide.getObjectValue(def) or def |