Adriano Carlos Verona
Adriano Carlos Verona
the only goal of this task is to allow me to not bother adding a task for each minor feature/fix in SRM during this heavy development stage.
- [ ] Newlines - [ ] Indentation - [ ] Variable names (prefix, consistency, etc)
The following snippet: ```C# partial class PartialClass { public int Foo() => 42; } partial class PartialClass { public string Name { get; } } ``` results in a runtime...
We should also test at least base types: - [ ] List (generic external type) - [ ] Generic types with .ctors ```C# class Bar {} class Foo : Bar...
When processing events defined in **generic types** it seems we are ignoring the fact that the declaring type is generic when registering the add/remove_Event() methods and use the `non generic`...
`StatementExpression`s containing `non-void` method invocations generates code missing a `Pop` instruction. For example, running the generated assembly from the cecilified code for the following snippet ```C# M("X"); void M(string s)...