Igor Pissolati

Results 12 issues of Igor Pissolati

1. For some reason it shows an error of ambiguous reference 2. The previous error disappears from the IDE if you edit something in the code, and appears again if...

It would be very useful to have some way to "redefine" a parameter in one line, in beef you can't redefine parameters because everything is passed as an `in` parameter,...

Currently, Reflection is lacking methods to get properties. _Even though there's a `mPropertyDataCount` & `mPropertyDataPtr` in `Type.bf`, but there's no method that uses these fields._ Example: https://docs.microsoft.com/en-us/dotnet/api/system.type.getproperty?view=net-5.0 **Edit**: Beef is...

This bug(?) makes possible unwanted implicitly access to the class with the same name of the namespace, for example, If this code is in a dependency of a project: ```...

I have encountered some problems while using extension methods, summarizing: 1. **FIXED** ~~`for` doesn't work even though `TList` has `IEnumerable` constraint.~~ 2. Extension methods declared as mixin doesn't work at...

The code below shows a `ambigous reference` error in Beef, but for comparison, in C# it works fine. ``` namespace System { struct Abc{} namespace IO { struct Abc {...

Please add support for using aliases, they are quite handy for resolving name conflicts because the type will not be in the global scope. Example: https://www.dotnetperls.com/using-alias I think another option...

Currently there's no way to allocate a tuple pointer by normal means ![image](https://user-images.githubusercontent.com/14041768/103707730-f5567880-4f8d-11eb-9e9f-f8bbeeb108eb.png)

When you use FixIt to generate the code for an interface that has a method that uses a typealias, the typealias gets resolved in the output of the FixIt. ```...

Fixes #1812 Fixes #1501 Hello! This is my first attempt to contribute to this project, so I apologize in advance for any mistakes. This PR should add a basic support...