5 references to NormalizeDebugDocumentPath
Microsoft.CodeAnalysis (4)
Compilation\Compilation.cs (2)
2517string normalizedPath = documentsBuilder.NormalizeDebugDocumentPath(text.FilePath, basePath: null); 2538string normalizedPath = documentsBuilder.NormalizeDebugDocumentPath(tree.FilePath, basePath: null);
Emit\DebugDocumentsBuilder.cs (2)
48return TryGetDebugDocumentForNormalizedPath(NormalizeDebugDocumentPath(path, basePath)); 60return _debugDocuments.GetOrAdd(NormalizeDebugDocumentPath(path, basePath), factory);
Microsoft.CodeAnalysis.CSharp (1)
Compilation\CSharpCompilation.cs (1)
3908var normalizedPath = documentsBuilder.NormalizeDebugDocumentPath(path, basePath: tree.FilePath);