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

Renamed System.Collections.Generic to System.Collections

This commit is contained in:
Brian Fiete 2020-04-29 06:40:03 -07:00
parent 4cb9791845
commit dbd9b32e3f
281 changed files with 368 additions and 341 deletions

View file

@ -48,7 +48,7 @@ OtherLinkFlags = ""
TargetDirectory = "$(WorkspaceDir)/dist"
TargetName = "BeefIDE_d2"
OtherLinkFlags = "$(LinkFlags) Comdlg32.lib kernel32.lib user32.lib advapi32.lib shell32.lib IDEHelper64_d.lib BeefySysLib64_d.lib wsock32.lib"
DebugCommandArguments = "-workspace=c:\\Beef\\IDE\\mintest"
DebugCommandArguments = "-workspace=c:\\beef\\ide\\mintest"
DebugWorkingDirectory = "$(ProjectDir)\\dist"
EnvironmentVars = ["_NO_DEBUG_HEAP=1"]

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System;
namespace Test

View file

@ -2,7 +2,7 @@
// of an open-sourcing initiative in 2014 of the C# core libraries.
// The original source was submitted to https://github.com/Microsoft/referencesource
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System
@ -22,7 +22,7 @@ namespace System
[Inline]
set
{
// We only allow reducing the length - consider using System.Collections.Generic.List<T> when dynamic sizing is required
// We only allow reducing the length - consider using System.Collections.List<T> when dynamic sizing is required
Runtime.Assert(value <= mLength);
mLength = (.)value;
}

View file

@ -16,7 +16,7 @@ namespace System.Collections
}
}
namespace System.Collections.Generic
namespace System.Collections
{
interface IEnumerator<T>
{

View file

@ -12,7 +12,7 @@ using System.Diagnostics.Contracts;
using System.Threading;
using System.Reflection;
namespace System.Collections.Generic
namespace System.Collections
{
interface IList
{

View file

@ -2,7 +2,7 @@
// of an open-sourcing initiative in 2014 of the C# core libraries.
// The original source was submitted to https://github.com/Microsoft/referencesource
namespace System.Collections.Generic
namespace System.Collections
{
struct Sorter<T, T2>
{

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Reflection;
namespace System

View file

@ -1,5 +1,5 @@
using System.Reflection;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System

View file

@ -1,6 +1,6 @@
using System;
using System.Reflection;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
namespace System.Reflection
{

View file

@ -1,5 +1,5 @@
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
namespace System
{

View file

@ -1,5 +1,5 @@
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
namespace System
{

View file

@ -1,6 +1,6 @@
using System;
using System.Reflection;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System

View file

@ -12,9 +12,9 @@
//using IDE;
using System;
//using System.Threading;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
using System.Collections;
using System.Threading;
@ -237,7 +237,8 @@ namespace Hey.Dude.Bro
public static int Main(String[] args)
{
Blurg.Hey();
for (int i < 10)
Blurg.Hey();
return 1;
}

View file

@ -1,17 +1,42 @@
// more text at the end of the first line. This is more text.
using System;
using System;
class Pooble
class Program
{
public void Test(int abcdefgh, int abcdefgh2, int abcdefgh3, int abcdefgh4, int abcdefgh5, int abcdefgh6, int abcdefgh7, int abcdefgh8)
{
}
private function bool on_send_recv_delegate(uint8* data, ref int length);
public static float sVal = 9;
struct plugin_header
{
public on_send_recv_delegate on_recv;
public on_send_recv_delegate on_send;
}
public static mixin Zorp(var z)
{
z * sVal
}
private static bool on_recv(uint8* data, ref int length)
{
//Console.WriteLine(scope String().AppendF("RECV\tID: {}", data[0]));
return true;
}
private static bool on_send(uint8* data, ref int length)
{
//Console.WriteLine(scope String().AppendF("SEND\tID: {}", data[0]));
return true;
}
[CLink]
[Export]
public static void Install(void* ptr)
{
plugin_header* plugin = (plugin_header*) ptr;
plugin.on_recv = => on_recv;
plugin.on_send = => on_send;
//Console.WriteLine("INSTALLED!!!");
}
}

View file

@ -3,41 +3,29 @@
using System;
using System.Diagnostics;
using System.Threading;
using System.Collections.Generic;
struct Smibbs
{
public int16 mX = 11;
public int16 mY = 22;
public int16 mZ = 33;
}
namespace PropertyStructCrash
{
struct B
{
public int c;
}
struct A
{
public B Prop { get; set; }
}
class Program
{
public static void Main()
{
var c = '¥';
}
}
}
using System.Collections;
struct Blurg
{
public static void Hey()
{
PropertyStructCrash.Program.Main();
}
}
struct StructA
{
public int mA = 99;
}
/*namespace System
{
extension String
{
public String SubText(String input, int position, int length)
{
return 0;
}
}
}*/

View file

@ -1,6 +1,6 @@
using IDE.Util;
using System;
using System.Collections.Generic;
using System.Collections;
using System.IO;
using Beefy.utils;

View file

@ -1,7 +1,7 @@
#if false
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using IDE.ui;

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System;
using IDE.Compiler;
using System.IO;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,7 +1,7 @@
#if false
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
namespace IDE
{

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using Beefy.widgets;
using Beefy.sys;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Threading;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.utils;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Threading;

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System;
using Beefy;
using System.IO;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.gfx;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;

View file

@ -2,7 +2,7 @@ using IDE.ui;
using System;
using System.IO;
using Beefy.utils;
using System.Collections.Generic;
using System.Collections;
using System.Security.Cryptography;
using IDE.util;

View file

@ -1,6 +1,6 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.IO;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using IDE.ui;

View file

@ -1,7 +1,7 @@
using System;
using System.Security.Cryptography;
using System.Text;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.IO;
using System.Reflection;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.IO;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
namespace IDE
{

View file

@ -1,7 +1,7 @@
#if false
using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text;
using Beefy.widgets;

View file

@ -1,6 +1,6 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading;
using System.Diagnostics;
@ -14,7 +14,7 @@ namespace IDE
{
public class Program
{
//System.Collections.Generic.List<System.String> list;
//System.Collections.List<System.String> list;
static int32 Main(String[] args)
{
#if SMALLTEST

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.IO;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Reflection;
using System.IO;
using System.Diagnostics;

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System;
using Beefy.gfx;
using Beefy.geom;

View file

@ -3,7 +3,7 @@
using System;
using Beefy;
using Beefy.utils;
using System.Collections.Generic;
using System.Collections;
using Beefy.widgets;
using System.Diagnostics;
using Beefy.res;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.IO;
using System.Text;
using System.Threading.Tasks;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.Threading;
using System.IO;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.IO;
using System.Text;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,6 +1,6 @@
using System;
using System.Threading;
using System.Collections.Generic;
using System.Collections;
using Beefy.events;
using Beefy.widgets;
using Beefy.theme.dark;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Globalization;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.IO;
using System.Text;
using System.Threading.Tasks;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using Beefy.widgets;
using Beefy.theme.dark;
using Beefy.theme;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -6,7 +6,7 @@ using Beefy.events;
using Beefy.utils;
using System.Diagnostics;
using IDE.Compiler;
using System.Collections.Generic;
using System.Collections;
using System.Threading;
namespace IDE.ui

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.gfx;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Diagnostics;
using System.Threading.Tasks;

View file

@ -1,7 +1,7 @@
using Beefy.widgets;
using Beefy.theme.dark;
using IDE.Compiler;
using System.Collections.Generic;
using System.Collections;
using System.Threading;
using System;
using Beefy.gfx;
@ -276,7 +276,10 @@ namespace IDE.ui
SetLabel(item, codeStr);
let descItem = item.GetSubItem(1);
SetLabel(descItem, scope String(32)..Append(error.mError));
String errStr = scope String(32)..Append(error.mError);
errStr.Replace('\n', ' ');
SetLabel(descItem, errStr);
let projectItem = item.GetSubItem(2);
SetLabel(projectItem, error.mProject);

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.IO;
using System.Text;
using System.Threading.Tasks;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.widgets;

View file

@ -2,7 +2,7 @@ using Beefy.theme.dark;
using Beefy.widgets;
using Beefy.gfx;
using System;
using System.Collections.Generic;
using System.Collections;
using IDE.Debugger;
namespace IDE.ui

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.gfx;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.widgets;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.widgets;

View file

@ -2,7 +2,7 @@ using Beefy.theme.dark;
using Beefy.widgets;
using Beefy.events;
using System;
using System.Collections.Generic;
using System.Collections;
using Beefy.gfx;
using IDE.Util;
using System.IO;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -3,7 +3,7 @@ using Beefy.gfx;
using Beefy.geom;
using Beefy.theme.dark;
using System;
using System.Collections.Generic;
using System.Collections;
namespace IDE.ui
{

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Globalization;

View file

@ -1,6 +1,6 @@
using Beefy.widgets;
using System;
using System.Collections.Generic;
using System.Collections;
using Beefy.theme.dark;
using Beefy.gfx;
using Beefy.events;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.events;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.gfx;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.IO;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.IO;
using System.Text;
using System.Threading;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.widgets;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.gfx;

View file

@ -3,7 +3,7 @@ using System;
using System.IO;
using System.Threading.Tasks;
using System.Threading;
using System.Collections.Generic;
using System.Collections;
namespace IDE.ui
{

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy.widgets;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using Beefy.widgets;
using Beefy.gfx;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.Reflection;
using System.Text;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Reflection;
using Beefy.gfx;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Threading.Tasks;
using Beefy;

View file

@ -1,7 +1,7 @@
using System;
using Beefy.theme.dark;
using Beefy.gfx;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using Beefy.geom;

Some files were not shown because too many files have changed in this diff Show more