Konstantin Preißer
Konstantin Preißer
Allow to set a custom TimeZoneInfo on the ScriptEngine, and avoid DateTime.MinValue as invalid date
Hi, it would be cool if Jurassic's `ScriptEngine` allows to set a custom `TimeZoneInfo` used to convert between UTC and local time. This is useful for example if you run...
Hi, some time ago I opened #42 to write a wiki page that shows how to apply a timeout to script execution. Just now I was looking at the emit...
Hi, the Wiki page [Supported types](https://github.com/paulbartrum/jurassic/wiki/Supported-types) shows which JS type maps to which .NET type. The table contains an entry for JS type `string` which maps to .NET type `System.String`....
:arrow_double_down::arrow_double_down: [**CLICK HERE TO SCROLL DOWN TO THE FINAL PROPOSAL**](https://github.com/dotnet/winforms/issues/1199#issuecomment-822142698) :arrow_double_down::arrow_double_down: ---- Hi, as requested by @RussKie in https://github.com/dotnet/winforms/issues/146#issuecomment-502493259, I've opened a new issue for this topic. **Note:** The listed...
Hi, consider the following C# program (.NET 6.0, using `Wasmtime 1.0.0`): ```cs using var engine = new Engine(); using var module1 = Module.FromText( engine, "hello", @" (module (memory $mem1 65536)...
Hi, consider the following C# program (.NET 6.0, using `Wasmtime 1.0.0`): ```cs using Wasmtime; using var engine = new Engine(); using var module = Module.FromText( engine, "hello", @" (module (func...
Hi, I noticed the an issue in `Function.InvokeCallback()` using `Wasmtime 1.0.0`. Consider the following C# program (.NET 6.0): ```cs using Wasmtime; using var engine = new Engine(); using var module...
Hi! Currently, callbacks defined with `Linker.DefineFunction()` and `Function.FromCallback()` are called using reflection, which has some overhead: https://github.com/bytecodealliance/wasmtime-dotnet/blob/f3a383a7b4391b8a653af521499de96f50b975ce/src/Function.cs#L2421-L2423 With this PR, [T4 text templates](https://learn.microsoft.com/en-us/visualstudio/modeling/walkthrough-generating-code-by-using-text-templates) are used to automatically generate generic `Linker.DefineFunction()`...
Hi, this PR adds new `Int64`-based APIs to `Memory` to allow to access memories with more than 32767 pages. Fixes #165 I added a new method `GetSpan(long address, int length)`...
Hi, this is a PR to fix the following issues when using `Function.FromCallback()` and `Linker.DefineFunction()`: - Instead of invoking `callback.Method` (that may have a different parameter count than the callback),...