3 writes to MappedPathOpt
Microsoft.CodeAnalysis (3)
Syntax\LineDirectiveMap.LineMappingEntry.cs (3)
84this.MappedPathOpt = null; 100this.MappedPathOpt = mappedPathOpt; 114this.MappedPathOpt = mappedPathOpt;
7 references to MappedPathOpt
Microsoft.CodeAnalysis (5)
Syntax\LineDirectiveMap.cs (5)
60string path = entry.MappedPathOpt ?? treeFilePath; 64return new FileLinePositionSpan(path, span, hasMappedPath: entry.MappedPathOpt != null); 183current.MappedPathOpt == null); 248string path = entry.MappedPathOpt ?? string.Empty; 249bool hasMappedPath = entry.MappedPathOpt != null;
Microsoft.CodeAnalysis.CSharp (2)
Syntax\CSharpLineDirectiveMap.cs (2)
46var mappedPathOpt = (previous.State == PositionState.RemappedSpan) ? null : previous.MappedPathOpt; 240Debug.Assert(this.Entries[0].MappedPathOpt == null);