mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 15:24:10 +02:00
Early code generation support
This commit is contained in:
parent
0b48a60592
commit
71d4dd0e90
26 changed files with 2422 additions and 1576 deletions
|
@ -211,9 +211,26 @@ namespace Tests
|
|||
MethodA(list);
|
||||
}
|
||||
|
||||
public static void MethodC()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static void MethodD(delegate void() dlg)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public static void MethodD<T1>(delegate void(T1) dlg)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
[Test]
|
||||
public static void TestBasics()
|
||||
{
|
||||
MethodD(scope => MethodC);
|
||||
|
||||
List<Entry> list = scope .();
|
||||
list.Sort();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue