Chris Midgley

Results 22 comments of Chris Midgley

The cause of this is that `routingProxy` sometimes raises an `ECONNRESET`. Because there are no listeners -- e.g.: ``` routingProxy.on('error', (e) => { ... }) ``` this error propagates and...

I don't think someone can be relying on `*.ts` files -- you get the types from `.d.ts`, and I don't think you can import a `.ts` file inside a `.ts`...

On the node side, when I do an `npm install` I get everything in `node_modules`, together with all the dependencies those libraries have. If I `npm install` a library that...

Certainly, I don't expect removing files in just this package to be noticeable -- but if all my dependencies are packaging 180kB they don't need to, that quickly adds up....

`recursive` came in in `10.12.0`, but if you're okay with upping the engines requirement (in `package.json`) to that I think it's a nice solution :)

When running hot reload with lazy loading (and nullable reference types, if that's relevant), I sometimes get the error: ``` System.NotImplementedException: This is a DynamicProxy2 error: The interceptor attempted to...

> That said, if get_property is expected to appear in every file as per your search query It's not, but I was hoping that would be enough alone. How do...

`void` is valid in AGS script. All runnable ASH files should have a `void main` function (except those that just run everything at base level), but that's also valid in...

Yeah, "void main item" gives 64 uniques (including some that only show up in smola's language-dataset), so nowhere near enough.

Thanks, it works well with: ```cs evaluator.EvaluateParameterCast += Evaluator_EvaluateParameterCast; [...] private static void Evaluator_EvaluateParameterCast(object? sender, ParameterCastEvaluationEventArg e) { if (e.MethodInfo.DeclaringType == typeof(Math) && e.MethodInfo.Name == "Round" && e.ParameterType == typeof(int)...