1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-17 05:23:52 +02:00

Breakpoint hotkeys, autocomplete fix

This commit is contained in:
Brian Fiete 2019-12-13 14:25:15 -08:00
parent d6a9f4c9ca
commit 1c6c06fa4d
20 changed files with 316 additions and 262 deletions

View file

@ -95,14 +95,6 @@ COptimizationLevel = "O2"
ConfigSelections = {mintest = {Config = "Debug"}}
[Configs.Test.Win64]
EmitDynamicCastCheck = false
EnableObjectDebugFlags = false
EmitObjectAccessCheck = false
EnableRealtimeLeakCheck = false
AllowHotSwapping = false
AllocStackTraceDepth = 0
COptimizationLevel = "O2"
ConfigSelections = {mintest = {Config = "Debug"}}
[Configs.Test.WinFart]
Toolset = "GNU"

View file

@ -1,33 +1,2 @@
using System;
/*class Zlobs : IDisposable
{
int IDisposable.Floo()
{
}
int Zag()
{
return 123;
}
}*/
class Fligs
{
class Bligs
{
class Snorf
{
}
}
class Zang
{
class Flang
{
}
}
}

View file

@ -211,7 +211,7 @@ struct Blurg
}
}
static int[] gArr = new .(1, 2, 3, 4, 5, );
//static int[] gArr = new .(1, 2, 3, 4, 5, );
[Checked]
public static int32 GetVal()
@ -305,12 +305,6 @@ struct Blurg
//int len = str.[Friend]GetLength();
}
static void Test(int a, int b, Span<int> iSpan)
{
}
public static mixin Florf(int a, int b)
{
@ -324,36 +318,30 @@ struct Blurg
}
}
public static int sA = 123;
/*public static void Test<T>(T val)
{
}*/
public static void Test<T, T2>(T val) where T : Span<T2>
{
}
public static int32 Hey()
{
for (int i < 100)
{
Yoofer.ColorizeCodeString("abc", .Callstack);
}
Span<uint8> valSpan = .();
StringView sv = "Hey";
Span<char8> span = sv;
Test(sv);
return (int32)123;
}
}
class Yoofer
{
public enum CodeKind
{
Callstack,
Method,
Field,
Type
}
public static void Zorg()
{
int a = 1;
}
public static void ColorizeCodeString(String label, CodeKind codeKind)
{
Zorg();
int a = 1;
}
}