14 references to VBImportScopeKind
Microsoft.CodeAnalysis (8)
CustomDebugInfoReader.cs (8)
676
public static bool TryParseVisualBasicImportString(string import, out string alias, out string target, out ImportTargetKind kind, out
VBImportScopeKind
scope)
694
scope =
VBImportScopeKind
.Unspecified;
710
scope =
VBImportScopeKind
.Unspecified;
718
scope =
VBImportScopeKind
.Unspecified;
728
scope =
VBImportScopeKind
.Unspecified;
732
scope =
VBImportScopeKind
.File;
736
scope =
VBImportScopeKind
.Project;
818
scope =
VBImportScopeKind
.Unspecified;
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (6)
PDB\MethodDebugInfo.Native.cs (6)
549
if (!CustomDebugInfoReader.TryParseVisualBasicImportString(importString, out alias, out target, out var kind, out
var
scope))
572
VBImportScopeKind
scope = 0;
576
if (scope ==
VBImportScopeKind
.Project)
582
Debug.Assert(scope ==
VBImportScopeKind
.File || scope ==
VBImportScopeKind
.Unspecified);
600
private static bool TryCreateImportRecordFromVisualBasicImportString(string importString, out ImportRecord record, out
VBImportScopeKind
scope)