Implement auto-indenting for CSConsole, some cleanups

This commit is contained in:
Sinai
2021-05-12 20:48:56 +10:00
parent fedecb80a0
commit ada239c828
21 changed files with 681 additions and 3702 deletions

View File

@ -6,7 +6,7 @@ using System.Collections.Generic;
using System.Linq;
using UnityExplorer.Core.Runtime;
namespace UnityExplorer.UI.CSharpConsole
namespace UnityExplorer.UI.CSConsole
{
public class ScriptInteraction : InteractiveBase
{
@ -22,17 +22,17 @@ namespace UnityExplorer.UI.CSharpConsole
public static void AddUsing(string directive)
{
CSConsole.AddUsing(directive);
ConsoleController.AddUsing(directive);
}
public static void GetUsing()
{
ExplorerCore.Log(CSConsole.Evaluator.GetUsing());
ExplorerCore.Log(ConsoleController.Evaluator.GetUsing());
}
public static void Reset()
{
CSConsole.ResetConsole();
ConsoleController.ResetConsole();
}
public static object CurrentTarget()