Beef
Beef copied to clipboard
Beef Programming Language
The code below causes the assert failure mentioned in the issue title when compiled using the IDE debug build. ```cs namespace System.Collections { public interface IVariantEnumerable { public VariantEnumeratorWrapper GetVariantEnumerator();...
After the recent changes, `Enum.Parse` compilation fails when enum members contain keyword with `@` prefix. The code generation ends up outputting `.public`, which is seen as a keyword. I was...
Version: Release 0.43.4 On Windows, when debugging any C program (win64) that creates a window, the console output window is raised to the top automatically, over my window. I've tested...
[typealias Crash.dmp](https://github.com/beefytech/Beef/files/14215963/typealias.Crash.dmp) 
IDE crashes
Here are some IDE crash dumps. Hopefully they can help to fix some errors. 1 occurs when starting to debug the program. The other 2 occurs when trying to navigate...
```cs public struct MyStruct where T : const int { ... } MyStruct a; //error MyStruct b; //ok MyStryct c; //ok ```
Hello, I have a static link library generated by vs, He runs well in the vs c++console program How to run normally in beef?   thank!
This was already known so its more to help if others have the same issue. If you call a function via a function binding and pass in a struct that...
 Notice there is no semicolon after: ```public override StringView Name => "Audio"``` This doesn't cause a compile time error, but causes bad formatting of code.
Hi there, Code like `typeof(Program).[Friend]mTypeCode` causes IDE to crash, if that is used in comptime. Declaring a variable that will hold the `Type` first, does not trigger a crash. It...