2018-11-10 12:11:36 +00:00
|
|
|
|
using System;
|
2018-11-10 16:00:39 +00:00
|
|
|
|
using System.Collections.Generic;
|
2018-11-11 09:26:52 +00:00
|
|
|
|
using Upsilon;
|
2018-11-14 12:09:01 +00:00
|
|
|
|
using Upsilon.BaseTypes;
|
2018-11-11 20:03:50 +00:00
|
|
|
|
using Upsilon.Binder;
|
2018-11-10 12:11:36 +00:00
|
|
|
|
using Upsilon.Evaluator;
|
2018-11-13 16:11:20 +00:00
|
|
|
|
using UpsilonCompiler;
|
2018-11-10 12:11:36 +00:00
|
|
|
|
|
2018-11-14 12:09:01 +00:00
|
|
|
|
namespace Ycicle
|
2018-11-10 12:11:36 +00:00
|
|
|
|
{
|
2018-11-14 12:09:01 +00:00
|
|
|
|
internal static class Program
|
2018-11-10 12:11:36 +00:00
|
|
|
|
{
|
2018-11-14 12:09:01 +00:00
|
|
|
|
private static void Main()
|
2018-11-10 12:11:36 +00:00
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Upsilon REPL");
|
2018-11-14 12:09:01 +00:00
|
|
|
|
var variables = new Dictionary<VariableSymbol, LuaType>();
|
|
|
|
|
var showTranspiledOutput = false;
|
2018-11-10 12:11:36 +00:00
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
Console.Write("» ");
|
|
|
|
|
var input = Console.ReadLine();
|
2018-11-14 12:09:01 +00:00
|
|
|
|
switch (input)
|
2018-11-10 12:11:36 +00:00
|
|
|
|
{
|
2018-11-14 12:09:01 +00:00
|
|
|
|
case "exit":
|
|
|
|
|
return;
|
|
|
|
|
case "compiled":
|
|
|
|
|
showTranspiledOutput = !showTranspiledOutput;
|
|
|
|
|
break;
|
2018-11-10 12:11:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-11 20:03:50 +00:00
|
|
|
|
var parsed = new Script(input, variables);
|
2018-11-11 09:26:52 +00:00
|
|
|
|
if (parsed.Diagnostics.Messages.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
|
|
|
|
Console.WriteLine("Errors were found during parsing");
|
|
|
|
|
foreach (var diagnosticsMessage in parsed.Diagnostics.Messages)
|
|
|
|
|
{
|
|
|
|
|
LogError(diagnosticsMessage);
|
|
|
|
|
}
|
|
|
|
|
Console.ResetColor();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 12:09:01 +00:00
|
|
|
|
if (showTranspiledOutput)
|
2018-11-11 09:26:52 +00:00
|
|
|
|
{
|
2018-11-14 12:09:01 +00:00
|
|
|
|
var transpiler = new Transpiler();
|
|
|
|
|
var transpiled = transpiler.TranspilerToCSharp(parsed.Bind());
|
|
|
|
|
Console.WriteLine(transpiled);
|
2018-11-11 09:26:52 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-11-14 12:09:01 +00:00
|
|
|
|
var evaluate = parsed.Evaluate();
|
|
|
|
|
if (parsed.Diagnostics.Messages.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
|
|
|
|
Console.WriteLine("Errors were found during evaluating");
|
|
|
|
|
foreach (var diagnosticsMessage in parsed.Diagnostics.Messages)
|
|
|
|
|
{
|
|
|
|
|
LogError(diagnosticsMessage);
|
|
|
|
|
}
|
|
|
|
|
Console.ResetColor();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Cyan;
|
|
|
|
|
Console.WriteLine(evaluate);
|
|
|
|
|
Console.ResetColor();
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-10 12:11:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-11 09:26:52 +00:00
|
|
|
|
|
2018-11-14 12:09:01 +00:00
|
|
|
|
private static void LogError(DiagnosticsMessage message)
|
2018-11-11 09:26:52 +00:00
|
|
|
|
{
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
|
|
|
|
Console.WriteLine(message.Message);
|
|
|
|
|
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Gray;
|
|
|
|
|
Console.Write(message.BeforeError());
|
|
|
|
|
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
|
|
|
|
Console.Write(message.AtError());
|
|
|
|
|
|
|
|
|
|
Console.ForegroundColor = ConsoleColor.Gray;
|
|
|
|
|
Console.Write(message.AfterError());
|
|
|
|
|
Console.WriteLine();
|
|
|
|
|
}
|
2018-11-10 12:11:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|