Rex Morgan

Results 18 comments of Rex Morgan

So it’s been a few years since we accepted the PR to add the view engine, and with the benefit of hindsight and experience, plan to remove the view engine...

Type inference is a tough problem once we start to tackle all the corner cases. It’s almost always more appropriate to use a purpose-built library to do that type of...

They are not. This has been on the roadmap for v2 for a few years and requires a refactoring at every layer in the compiler - no small amount of...

That would be the first step, each token would need to be reversible. In some cases during that stage some meaningless white space is thrown away so that would need...

I mention it because if your goal is reporting the row and column, it may be slightly off based on that.

It is possible using [AssemblyBuilder](https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.assemblybuilder?view=netframework-4.8) and [Expression.CompileToMethod(MethodBuilder)](https://docs.microsoft.com/en-us/dotnet/api/system.linq.expressions.lambdaexpression.compiletomethod?redirectedfrom=MSDN&view=netframework-4.8#System_Linq_Expressions_LambdaExpression_CompileToMethod_System_Reflection_Emit_MethodBuilder_). Below is a simple example for how to produce a `.dll` with a class inside of it that looks like this: ```c# public...

I see. It looks like we would need to do some more work on the internals to make the expression tree serializable. So this request is more involved than I...

This is a lot of conversation for what could’ve been a PR on the readme 😄

What happens with a HashTable element with a lowercase key?