-
The documentation on ClrProxy was outdated but I was able to figure out how use it. The following is an example.
```
using YantraJS.Core;
using YantraJS.Core.Clr;
var synchronizationContext = …
-
The following code is resulting with the error: System.ArgumentOutOfRangeException: StartIndex cannot be less than zero. (Parameter 'startIndex')
```
var synchronizationContext = new Synchronizati…
-
Try following test on actual server,
```javascript
const pool = new sql.ConnectionPool({ /* config */ })
async doQuery(signal) {
const sql = await pool.connect();
const re…
-
Hello, Akash!
Most JS engines, when embedding .NET types and objects, uses a Pascal case to access its members. I know that this behavior can be changed using an `JSExportSameName` attribute, but t…
-
Hi
I have been working with YantraJS in an experimental .NET MAUI project. I have been using version [1.2.59](https://github.com/yantrajs/yantra/releases/tag/v1.2.59) and have had things working we…
-
I am trying to make some extensions and testing
When i try evaluate this code
```js
import clr from "clr";
var Random = clr.getClass("System.Random");
var r = new Random(); // this will creat…
-
YantraJS fails to parse https://cdn.jsdelivr.net/npm/linq@3.2.4/linq.js , most likely the RegExp parsing skips few tokens. Looks like token `expression` is mismatched against `argArray`.
-
Hello again
i am trying to implement "moduleBuilder" like jint
```csharp
_context.RegisterModule("test", builder =>
{
builder.ExportType()
.Exp…
-
Hi there,
I've found another issue with javascript compilation. The following code, that runs ok in Chrome, won't compile:
```js
(function foo(x) { return 0xffff & +x >>> 16; })(1234567)
```
…
-
I have an Expression which contains nested lambda with closure. It gives following error "The IL Generator cannot be used while there are unclosed exceptions" while saving the assembly.
It seems t…