Lots of work on type binding

This commit is contained in:
2018-11-11 18:12:42 +01:00
parent 699377cdfc
commit 3561979ded
23 changed files with 530 additions and 142 deletions

View File

@@ -20,7 +20,7 @@ namespace Yc
return;
}
var parsed = new Script(input, variables);
var parsed = new Script(input);
if (parsed.Diagnostics.Messages.Count > 0)
{
Console.ForegroundColor = ConsoleColor.Red;
@@ -47,7 +47,7 @@ namespace Yc
else
{
Console.WriteLine(evaluate);
variables = parsed.Variables;
//variables = parsed.Variables;
}
}
}