Coder Social home page Coder Social logo

How to override print function about luvi HOT 12 CLOSED

luvit avatar luvit commented on July 16, 2024
How to override print function

from luvi.

Comments (12)

creationix avatar creationix commented on July 16, 2024

yes, you can set _G.print to override it. I do this in the luvit pretty-print package. https://github.com/luvit/luvit/blob/master/deps/pretty-print.lua#L295-L304

from luvi.

LoganDark avatar LoganDark commented on July 16, 2024

it seems that pcall(func) does not use _G. is that true?

from luvi.

LoganDark avatar LoganDark commented on July 16, 2024

if it is, how to I pcall a function while allowing access to _G?

from luvi.

LoganDark avatar LoganDark commented on July 16, 2024

@creationix

from luvi.

creationix avatar creationix commented on July 16, 2024

pcall should work. See also http://www.freelists.org/post/luajit/pcallxpcall-broken-in-v21-if-JITed

from luvi.

creationix avatar creationix commented on July 16, 2024

FWIW, I released a new luvi, lit, luvit, and friends yesterday that has the fix from luajit mentioned in that post. Try again after updating just in case that was the problem.

from luvi.

LoganDark avatar LoganDark commented on July 16, 2024

The issue is a function called with pcall can't access the functions I define before running it

from luvi.

creationix avatar creationix commented on July 16, 2024

How are you defining them?

from luvi.

LoganDark avatar LoganDark commented on July 16, 2024

Thru _g and normally

from luvi.

creationix avatar creationix commented on July 16, 2024

How exactly? There is no such global _g, the case matters.

In other words, share a snippet of code that reproduces the problem. Luvit obviously customizes print globally and it works great. So we know it's possible, but something is wrong with your code.

from luvi.

LoganDark avatar LoganDark commented on July 16, 2024

I meant _G

from luvi.

squeek502 avatar squeek502 commented on July 16, 2024

Perhaps unlikely, but make sure the function's environment is not being changed (by setfenv) before it gets pcall'd. For example, this would cause the problem you're talking about:

local oldprint = _G["print"]
_G["print"] = function(...) oldprint("New print called") end

local callee = function()
    print("This shouldn't print")
end

setfenv(callee, {print = oldprint})
pcall(callee)

running that would output:

> lua test.lua
This shouldn't print

from luvi.

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.