Giter Club home page Giter Club logo

Comments (7)

mockey avatar mockey commented on June 25, 2024

Well, the error_handler has a pretty complicated signature and I'm not sure what this errcontext really is and also it can return a string or an array but basically it would be something like this:

@:phpGlobal
extern ErrorHandling {
  static function set_error_handler(handler:Int->String->?String->?Int->?NativeArray->Bool, types:Int):String;
}

The problem is that you can't pass in a function directly here, I think only a closure would work. Maybe a Callable<T> abstract over Function would be a good idea, that converts static and instance functions to arrays? Do you handle function passing already in the generator?

from haxe.

RealyUniqueName avatar RealyUniqueName commented on June 25, 2024

I don't see any problem here.
set_errror_handler can accept any closure. And closures should be generated correctly (not yet, but it's in the roadmap).

from haxe.

mockey avatar mockey commented on June 25, 2024

Yeah, but you can't pass obj->func or Class::func directly, can you?

from haxe.

RealyUniqueName avatar RealyUniqueName commented on June 25, 2024

I think those will be wrapped in anonymous functions :

var q = MyClass.method;
$q = function () {return MyClass::method()};

from haxe.

mockey avatar mockey commented on June 25, 2024

I had this idea as well, but there was a problem, but I don't remember (of course).
What about obj->func?

from haxe.

RealyUniqueName avatar RealyUniqueName commented on June 25, 2024
$q = function () use ($obj) { return $obj->func(); }

from haxe.

RealyUniqueName avatar RealyUniqueName commented on June 25, 2024

Implemented in e21a2e0

from haxe.

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.