Change namespace of some files

This commit is contained in:
Stone_Red
2022-03-31 13:23:19 +02:00
parent 10017cf01d
commit 1dfa39492f
10 changed files with 17 additions and 6 deletions
+6
View File
@@ -12,6 +12,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.editorconfig = .editorconfig
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YesNt.Interpreter.Tests", "YesNt.Interpreter.Tests\YesNt.Interpreter.Tests.csproj", "{2F95DCA7-3E43-4F2E-8FB2-067F0EC962B1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -26,6 +28,10 @@ Global
{E40573DB-912A-4871-BB65-3EE6E7D72E79}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E40573DB-912A-4871-BB65-3EE6E7D72E79}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E40573DB-912A-4871-BB65-3EE6E7D72E79}.Release|Any CPU.Build.0 = Release|Any CPU
{2F95DCA7-3E43-4F2E-8FB2-067F0EC962B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2F95DCA7-3E43-4F2E-8FB2-067F0EC962B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2F95DCA7-3E43-4F2E-8FB2-067F0EC962B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2F95DCA7-3E43-4F2E-8FB2-067F0EC962B1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
+1 -1
View File
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.IO;
using YesNt.Interpreter;
using YesNt.Interpreter.Runtime;
namespace YesNt.CodeEditor
{
+2
View File
@@ -1,5 +1,7 @@
using System;
using YesNt.Interpreter.Runtime;
namespace YesNt.Interpreter
{
internal static class Program
@@ -2,10 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using YesNt.Interpreter.Runtime;
using YesNt.Interpreter.Utilities;
namespace YesNt.Interpreter
namespace YesNt.Interpreter.Runtime
{
internal class RuntimeInformation
{
@@ -1,4 +1,4 @@
namespace YesNt.Interpreter
namespace YesNt.Interpreter.Runtime
{
internal abstract class StatementRuntimeInformation
{
@@ -7,10 +7,9 @@ using System.Reflection;
using YesNt.Interpreter.Attributes;
using YesNt.Interpreter.Enums;
using YesNt.Interpreter.Runtime;
using YesNt.Interpreter.Utilities;
namespace YesNt.Interpreter
namespace YesNt.Interpreter.Runtime
{
public class YesNtInterpreter
{
@@ -3,6 +3,7 @@ using System.Diagnostics.CodeAnalysis;
using YesNt.Interpreter.Attributes;
using YesNt.Interpreter.Enums;
using YesNt.Interpreter.Runtime;
using YesNt.Interpreter.Utilities;
namespace YesNt.Interpreter.Statements
@@ -2,6 +2,7 @@
using YesNt.Interpreter.Attributes;
using YesNt.Interpreter.Enums;
using YesNt.Interpreter.Runtime;
using YesNt.Interpreter.Utilities;
namespace YesNt.Interpreter.Statements
@@ -3,6 +3,7 @@ using System.Text.RegularExpressions;
using YesNt.Interpreter.Attributes;
using YesNt.Interpreter.Enums;
using YesNt.Interpreter.Runtime;
namespace YesNt.Interpreter.Statements
{
@@ -2,6 +2,8 @@
using System.Diagnostics;
using System.Threading;
using YesNt.Interpreter.Runtime;
namespace YesNt.Interpreter.Utilities
{
internal static class ConsoleExtentions