Beef
Beef copied to clipboard
Beef Programming Language
Please add a light theme to the IDE. I read it is not even possible at the moment to change the background color for some reason? Just an introduction screen,...
See diff screenshot: SourceEditWidgetContent.bf 0.43.0 138 KB initially, after FoS it's 120 KB. In addition to this it also remove "delete:myAllocator" the :myAllocator part was gone after Format on Save....
Maybe some sort of corruption in memory, only Debug build seems affected, particularly when stepping through the code. I previously saw this issue because I was step by step comparing...
It would be nice to have a filetype that could be opened by the ide to display a workspace, instead of always having to start by opening the ide and...
When I add a new class to a project, the compiler currently inserts some boilerplate code in the new file: ```c# namespace $(ProjectName) { class $(ClassName) { } } ```...
When hovering mouse over GetSizedHelper below in Process.bf ... public static Result GetProcesses(List processes) { let result = Platform.GetSizedHelper(scope (outPtr, outSize, outResult) => ... the autocomplete tooltip shows: System.Result.ReturnValueDiscarded(); What...
A "DeallocStackTrace" could be quite useful while debugging double deletes or attempts to access deleted objects. Currently, it's possible to get it if you use the code below and look...
By default case sensitivity is disabled and persists between actions as long as the IDE didn't restart (it is stored in a static variable). I wasn't sure how to handle...
- IsPublic, IsPrivate, etc... Actually, this can be done by accessing directly the `MethodFlags`, but this results in an error during Comptime. - IsStatic, IsVirtual, IsAbstract, etc... As above, this...
Example: ``` (String self) => { return self; } ``` Otherwise, it's impossible to make this compile without the casts: ``` [Comptime] public static void EmitCode() where F : var...