14 references to VBImportScopeKind
Microsoft.CodeAnalysis (8)
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (8)
678
public static bool TryParseVisualBasicImportString(string import, out string? alias, out string? target, out ImportTargetKind kind, out
VBImportScopeKind
scope)
696
scope =
VBImportScopeKind
.Unspecified;
712
scope =
VBImportScopeKind
.Unspecified;
720
scope =
VBImportScopeKind
.Unspecified;
730
scope =
VBImportScopeKind
.Unspecified;
734
scope =
VBImportScopeKind
.File;
738
scope =
VBImportScopeKind
.Project;
820
scope =
VBImportScopeKind
.Unspecified;
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (6)
PDB\MethodDebugInfo.Native.cs (6)
550
if (!CustomDebugInfoReader.TryParseVisualBasicImportString(importString, out alias, out target, out var kind, out
var
scope))
573
VBImportScopeKind
scope = 0;
577
if (scope ==
VBImportScopeKind
.Project)
583
Debug.Assert(scope ==
VBImportScopeKind
.File || scope ==
VBImportScopeKind
.Unspecified);
601
private static bool TryCreateImportRecordFromVisualBasicImportString(string importString, out ImportRecord record, out
VBImportScopeKind
scope)