Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3601,7 +3601,7 @@ internal void GenerateNewInstanceId()
/// </summary>
/// <returns>A steppable pipeline object</returns>
/// <exception cref="InvalidOperationException">An attempt was made to use the scriptblock outside of the engine.</exception>
internal SteppablePipeline GetSteppablePipeline()
public SteppablePipeline GetSteppablePipeline()
{
ExecutionContext context = GetContextFromTLS();
SteppablePipeline spl = GetSteppablePipeline(context, CommandOrigin.Internal);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ dir -Recurse `
It "Test member completion of a static method invocation" {
$inputStr = '[powershell]::Create().'
$res = TabExpansion2 -inputScript $inputStr -cursorColumn $inputStr.Length
$res.CompletionMatches | Should -HaveCount 31
$res.CompletionMatches | Should -HaveCount 32
$res.CompletionMatches[0].CompletionText | Should -BeExactly "Commands"
}
}
Expand Down