mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-09 23:43:16 +02:00
Improve code formatting
This commit is contained in:
@@ -39,6 +39,6 @@ public class CodeFlowTests
|
||||
public void CalculationsTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
YesNtAssert.IsLineEqual("10 * 10 !calc", (20).ToString());
|
||||
YesNtAssert.IsLineEqual("10 * 10 !calc", 20.ToString());
|
||||
}
|
||||
}
|
||||
@@ -28,7 +28,7 @@ internal static class YesNtAssert
|
||||
|
||||
if (er is null)
|
||||
{
|
||||
onDone.Set();
|
||||
_ = onDone.Set();
|
||||
}
|
||||
};
|
||||
|
||||
@@ -51,7 +51,7 @@ internal static class YesNtAssert
|
||||
yesNtInterpreter.OnLineExecuted += (er) =>
|
||||
{
|
||||
debugEventArgs = er ?? debugEventArgs;
|
||||
onDone.Set();
|
||||
_ = onDone.Set();
|
||||
};
|
||||
|
||||
yesNtInterpreter.Execute(lines, true);
|
||||
|
||||
Reference in New Issue
Block a user