Minor tweaks
This commit is contained in:
parent
7beeb713c9
commit
ca49866c66
|
@ -14,16 +14,9 @@ namespace Ycicle
|
|||
{
|
||||
Console.Write("» ");
|
||||
var input = Console.ReadLine();
|
||||
switch (input)
|
||||
{
|
||||
case "exit":
|
||||
return;
|
||||
}
|
||||
if (input == "exit") return;
|
||||
|
||||
if (script == null)
|
||||
script = new Script(input);
|
||||
else
|
||||
script = Script.ContinueWith(script, input);
|
||||
script = script == null ? new Script(input) : Script.ContinueWith(script, input);
|
||||
|
||||
if (script.Diagnostics.Messages.Count > 0)
|
||||
{
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\UpsilonCompiler\UpsilonCompiler.csproj" />
|
||||
<ProjectReference Include="..\Upsilon\Upsilon.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
Loading…
Reference in New Issue