-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proper prototype handling #60
Comments
Sounds hard to implement, but useful. What will ConstructorInfo contain? Can you distinguish between the C# class instance (maps to the JavaScript object) and the C# method definitions (maps to the JavaScript object's prototype)? |
With |
I will break it into small self-contained tasks:
This hopefully keeps the individual PRs reviewable and small(er) |
This allows to register a function (delegate in .NET) as constructor function in JavaScript. In order to support this a new method `SetConstructor` was introduced which allows to register a constructor function for a specific type under a name. This fuction is then available to the executed JavaScript code and invoking `new` with this function results in the objects being registered as `instanceof` the registered function. Additionally, objects which are created in .NET code are also converted to V8 while preserving the `instanceof` relation if the type is registered. Part of JavascriptNet#60
It was simpler than anticipated before. The linked PR (#71) should fix/add this. The only thing which might need more work is inheritance on .NET side... However, I guess that could be handled as a separate issue (not sure whether we need it at the moment)? |
Also we just realized that overloaded constructors would need additional support |
This allows to register a function (delegate in .NET) as constructor function in JavaScript. In order to support this a new method `SetConstructor` was introduced which allows to register a constructor function for a specific type under a name. This fuction is then available to the executed JavaScript code and invoking `new` with this function results in the objects being registered as `instanceof` the registered function. Additionally, objects which are created in .NET code are also converted to V8 while preserving the `instanceof` relation if the type is registered. Part of JavascriptNet#60
This allows to register a function (delegate in .NET) as constructor function in JavaScript. In order to support this a new method `SetConstructor` was introduced which allows to register a constructor function for a specific type under a name. This fuction is then available to the executed JavaScript code and invoking `new` with this function results in the objects being registered as `instanceof` the registered function. Additionally, objects which are created in .NET code are also converted to V8 while preserving the `instanceof` relation if the type is registered. Part of JavascriptNet#60
This allows to register a function (delegate in .NET) as constructor function in JavaScript. In order to support this a new method `SetConstructor` was introduced which allows to register a constructor function for a specific type under a name. This fuction is then available to the executed JavaScript code and invoking `new` with this function results in the objects being registered as `instanceof` the registered function. Additionally, objects which are created in .NET code are also converted to V8 while preserving the `instanceof` relation if the type is registered. Part of JavascriptNet#60
This allows to register a function (delegate in .NET) as constructor function in JavaScript. In order to support this a new method `SetConstructor` was introduced which allows to register a constructor function for a specific type under a name. This fuction is then available to the executed JavaScript code and invoking `new` with this function results in the objects being registered as `instanceof` the registered function. Additionally, objects which are created in .NET code are also converted to V8 while preserving the `instanceof` relation if the type is registered. Part of JavascriptNet#60
This allows to register a function (delegate in .NET) as constructor function in JavaScript. In order to support this a new method `SetConstructor` was introduced which allows to register a constructor function for a specific type under a name. This fuction is then available to the executed JavaScript code and invoking `new` with this function results in the objects being registered as `instanceof` the registered function. Additionally, objects which are created in .NET code are also converted to V8 while preserving the `instanceof` relation if the type is registered. Part of #60
Problem
Currently JavaScript.Net does not fully support prototype related use cases:
While it is possible to register a function which creates a new object like this:
problems with this approach:
instanceOf
checks are not working.c instanceof TestClass
is falseTestClass.prototype.newMethod = function() {...}
)Things to consider for the solution
Solution proposal
SetConstructor(ConstructorInfo constructor)
to the context which generates a prototype and registers under the nameSide notes
This could also improve performance of wrapping objects since the analysis of type is only required once, repetitive passing could become a lot faster.
/cc @spahnke
@oliverbock do you think the proposal above is sane? Then I would start to implement it.
The text was updated successfully, but these errors were encountered: