20 lines
657 B
C#
20 lines
657 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using Microsoft.PowerShell.EditorServices.Services.TextDocument;
|
|
|
|
namespace Microsoft.PowerShell.EditorServices.Test.Shared.Definition
|
|
{
|
|
public static class FindsFunctionDefinitionInWorkspaceData
|
|
{
|
|
public static readonly ScriptRegion SourceDetails = new(
|
|
file: TestUtilities.NormalizePath("References/FileWithReferences.ps1"),
|
|
text: string.Empty,
|
|
startLineNumber: 3,
|
|
startColumnNumber: 6,
|
|
startOffset: 0,
|
|
endLineNumber: 0,
|
|
endColumnNumber: 0,
|
|
endOffset: 0);
|
|
}
|
|
}
|