Skip to content

Commit 3f96f56

Browse files
committed
Avoid unused parser call
1 parent 4e44a11 commit 3f96f56

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/PowerShellEditorServices/Services/PowerShell/Console/LegacyReadLine.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -330,12 +330,10 @@ public override string ReadLine(CancellationToken cancellationToken)
330330
// // TODO: Start a new line!
331331
// continue;
332332
//}
333-
334-
Parser.ParseInput(
335-
completedInput,
336-
out Token[] tokens,
337-
out ParseError[] parseErrors);
338-
333+
//Parser.ParseInput(
334+
// completedInput,
335+
// out Token[] tokens,
336+
// out ParseError[] parseErrors);
339337
//if (parseErrors.Any(e => e.IncompleteInput))
340338
//{
341339
// // TODO: Start a new line!

0 commit comments

Comments
 (0)