Rohan Singh
Rohan Singh
Mond is my scripting language for .NET software. It's dynamicallly typed, uses a Pratt parser, and compiles for it's own bytecode VM. The VM supports debugging and there's a remote...
dnlib is a library like Mono.Cecil but handles the more obscure cases that cause Cecil to fail so it can be used on obfuscated code. dnSpy is a useful tool...
Maybe slightly controversial but prototypes and the baggage that comes with it adds a lot of overhead. Do we really need it? We can embrace a more functional style instead...
Binding works nicely as-is but kind of sucks for performance now. Both of the current methods (reflection and reflection emit) cannot take advantage of performance oriented features in the latest...
``` var arr = []; printLn(arr.foo); ``` Should this evaluate to `undefined` or throw an exception? The same applies to other types. It's a bit trickier for objects because it...
Array indexing allows negative indices, the array methods do not.