|
7 | 7 | using Unknown6656.Controls.Console;
|
8 | 8 | using Unknown6656.Imaging;
|
9 | 9 | using System.Windows.Forms;
|
| 10 | +using Unknown6656.AutoIt3.Parser.ExpressionParser; |
10 | 11 |
|
11 | 12 | namespace Unknown6656.AutoIt3.CLI
|
12 | 13 | {
|
@@ -77,11 +78,14 @@ private set
|
77 | 78 |
|
78 | 79 | public AU3Thread Thread { get; }
|
79 | 80 |
|
| 81 | + public AU3CallFrame CallFrame { get; } |
| 82 | + |
80 | 83 |
|
81 | 84 | public InteractiveShell(Interpreter interpreter)
|
82 | 85 | {
|
83 | 86 | Interpreter = interpreter;
|
84 | 87 | Thread = interpreter.CreateNewThread();
|
| 88 | + CallFrame = Thread.PushAnonymousCallFrame(); |
85 | 89 | }
|
86 | 90 |
|
87 | 91 | ~InteractiveShell() => Dispose(disposing: false);
|
@@ -502,9 +506,18 @@ private void ProcessInput()
|
502 | 506 | else
|
503 | 507 | try
|
504 | 508 | {
|
505 |
| - // TODO : actual processing |
| 509 | + CallFrame.InsertReplaceSourceCode(CallFrame.CurrentInstructionPointer, input); |
| 510 | + |
| 511 | + InterpreterResult? result = CallFrame.ParseCurrentLine(); |
506 | 512 |
|
507 |
| - _ = Thread; |
| 513 | + if (result?.OptionalError is { Message: string error }) |
| 514 | + History.Add((new[] { new ScriptToken(0, 0, error.Length, error, TokenType.UNKNOWN) }, InteractiveShellStreamDirection.Error)); |
| 515 | + else if (CallFrame.VariableResolver.TryGetVariable(AST.VARIABLE.Discard, VariableSearchScope.Global, out Variable? variable)) |
| 516 | + { |
| 517 | + string text = variable.Value.ToDebugString(Interpreter); |
| 518 | + |
| 519 | + History.Add((new[] { new ScriptToken(0, 0, text.Length, text, TokenType.Comment) }, InteractiveShellStreamDirection.Output)); |
| 520 | + } |
508 | 521 | }
|
509 | 522 | catch
|
510 | 523 | {
|
@@ -554,7 +567,8 @@ public void UpdateSuggestions()
|
554 | 567 | filter = null;
|
555 | 568 |
|
556 | 569 | Suggestions.AddRange(from s in suggestions.Distinct()
|
557 |
| - let text = s + ' ' |
| 570 | + let text = s.Trim() + ' ' |
| 571 | + where text.Length > 1 |
558 | 572 | let tokens = ScriptVisualizer.TokenizeScript(text)[..^1]
|
559 | 573 | let first = tokens[0]
|
560 | 574 | where filter is null || first.Content.StartsWith(filter, StringComparison.InvariantCultureIgnoreCase)
|
|
0 commit comments