Giter VIP home page Giter VIP logo

Comments (2)

Rathoz avatar Rathoz commented on August 14, 2024 1

Interesting workaround 🤔

from lua-language-server.

tomlau10 avatar tomlau10 commented on August 14, 2024

Just did some testings, seems need to add a ? when declaration a function param to be of nil type 😕
Then LuaLS can type narrow the function signature correctly:

---@param baz string|number
---@param qux string|number
---@return string
---@overload fun(text: string|number, title?: nil):nil ### add `?` to `title`
---@overload fun(text?: nil, title: string|number):nil ### add `?` to `text`
---@overload fun(text?: nil, title?: nil):nil ### add `?` to both `text` and `title`
function Foo.Bar(baz, qux)
    if not baz or not qux then
        return nil
    end
    return 'SomeString'
end

local a = Foo.Bar('Baz', 'Qux') -- **string** => it's corrects now
local a = Foo.Bar('Baz', nil) -- nil
local a = Foo.Bar('Baz') -- nil
local a = Foo.Bar(nil, 'Qux') -- nil
local a = Foo.Bar(nil, nil) -- nil
local a = Foo.Bar() -- nil

from lua-language-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.