mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 15:26:00 +02:00
Unspec variation base fix, debugger default params, debug enum type
This commit is contained in:
parent
c076c7d3a6
commit
cee266d6e6
9 changed files with 116 additions and 30 deletions
|
@ -12,6 +12,7 @@ AssertEvalEquals("ClassA.TEST_StaticMethodA()", "100")
|
|||
AssertEvalContains("ClassA.TEST_StaticMethodB()", "Unable to find address for method")
|
||||
AssertAutocompleteEquals("ClassA.TEST_", "TEST_StaticMethodA\nTEST_StaticMethodB")
|
||||
AssertAutocompleteEquals("ca.TEST_", "TEST_MethodA\nTEST_MethodB")
|
||||
AssertEvalEquals("Test0(EnumA.C, 200)", "1202")
|
||||
NavigateBackwards()
|
||||
|
||||
ToggleCommentAt("ClassA_MethodC")
|
||||
|
|
|
@ -50,6 +50,20 @@ namespace IDETest
|
|||
*/
|
||||
}
|
||||
|
||||
enum EnumA
|
||||
{
|
||||
case A;
|
||||
case B;
|
||||
case C;
|
||||
|
||||
public const EnumA D = (EnumA)4;
|
||||
}
|
||||
|
||||
static int Test0(EnumA a, int b, int c = 1000)
|
||||
{
|
||||
return (int)a + (int)b + (int)c;
|
||||
}
|
||||
|
||||
public static void Test()
|
||||
{
|
||||
//Test_Start
|
||||
|
@ -57,6 +71,7 @@ namespace IDETest
|
|||
ca.TEST_MethodA();
|
||||
ClassA.TEST_StaticMethodA();
|
||||
DoTest();
|
||||
Test0(.A, 1, 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue