Giter Site home page Giter Site logo

inspect.lua doesn't work about gopher-lua HOT 7 CLOSED

yuin avatar yuin commented on July 3, 2024
inspect.lua doesn't work

from gopher-lua.

Comments (7)

chobie avatar chobie commented on July 3, 2024

minimal reproduce code is here.

function inspect(options)
    a = options or {}
    print(type(a))
end

function inspect2(options)
    options = options or {}
    print(type(options))
end
inspect(nil)
inspect2(nil)
# glua
macbook% ../bin/glua spec.lua
table
nil

# lua
macbook% lua-5.1 spec.lua
table
table

from gopher-lua.

yuin avatar yuin commented on July 3, 2024

@chobie , Thank you for reporting this.
I've fixed the bug in commit ca03869.
Could you test it?

from gopher-lua.

chobie avatar chobie commented on July 3, 2024

Thanks. it seems good for above problem. but also I've found another issue related this.

function inspect(options)
    a = options or setmetatable({}, {__mode = "test"})
    print(type(a))
end

function inspect2(options)
    options = options or setmetatable({}, {__mode = "test"})
    print(type(options))
end

inspect(nil)
inspect2(nil)

######
macbook% lua-5.1 spec.lua
table
table

macbook% ../bin/glua spec.lua
table

spec.lua:7: attempt to call a non-function object
stack traceback:
    spec.lua:7: in inspect2
    spec.lua:12: in main chunk
    [G]: ?

from gopher-lua.

yuin avatar yuin commented on July 3, 2024

Hmm, I've fixed it again in fd7274c.
Could you test it again?

from gopher-lua.

chobie avatar chobie commented on July 3, 2024

Thanks, but more problems appeared.

  • [G]: error parsing regexp: trailing backslash at end of expression: ``
str = "hello"
str:gsub("\\", "\\\\")

I guess inspect.lua will work fine when this problem solved.

from gopher-lua.

yuin avatar yuin commented on July 3, 2024

Oh, I've fixed it in 67b4bef.
Could you test it once again?

from gopher-lua.

chobie avatar chobie commented on July 3, 2024

Thank you so much! It works fine :)

from gopher-lua.

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.