Beef icon indicating copy to clipboard operation
Beef copied to clipboard

Beef Programming Language

Results 279 Beef issues
Sort by recently updated
recently updated
newest added

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...

If you open something like Event.bf in corlib (with the project locked) and then close the IDE and reopen it, the file will still be in the document pane and...

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...

I've had this happen a few times randomly. ![image](https://user-images.githubusercontent.com/6292318/105371455-a2f29a00-5bd2-11eb-9971-c7db60a91915.png) ![image](https://user-images.githubusercontent.com/6292318/105371565-ba318780-5bd2-11eb-967d-8552ba74ad39.png)

The following code can't determine `TElem` when these methods are used inside. ``` public static bool All(this TCollection items, TPredicate predicate) where TCollection: concrete, IEnumerable where TPredicate: delegate bool(TElem) {...

d38f19a Failing to select the proper Aggregate extension.

``` public class Test1 { public static T Call() where T: new, Test2 { return new T(this); //should have squigglies on this due to using this in a static method?...

If you have a lot of ShouldFail tests, it can be hard to actually debug tests since they all will trigger and error that takes a few f5s to get...

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 {...