1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Autocomplete fixes, debugger fixes

Fixed autocomplete issue typing out base class name
Fixed autocomplete issue typing before a member access (ie: in 'val' for 'val.MethodA()')
Fixed invocation autocomplete with [Friend] access
This commit is contained in:
Brian Fiete 2019-09-04 04:44:00 -07:00
parent 2f01cc14dd
commit 1e04bb1b3e
8 changed files with 53 additions and 7 deletions

View file

@ -92,11 +92,20 @@ class Bloozer
int mA;
}
class Blurg
{
delegate void() mFuncA;
delegate void() mFuncB;
void TestIt(int a, int b, int c)
{
}
public static void Hey()
{
int a = 123;
@ -113,6 +122,9 @@ class Blurg
PrintF("YoB!\n");
};
blurg.TestIt(1, 2, 3);
blurg.[Friend]TestIt(1, 2, 3);
while (true)
{
blurg.mFuncA();
@ -129,4 +141,5 @@ class CustomAlloc
//return Internal.Malloc(size);
return null;
}
}
}