1 type derived from SymbolDocumentInfo
System.Core (1)
Microsoft\Scripting\Ast\SymbolDocumentInfo.cs (1)
66internal sealed class SymbolDocumentWithGuids : SymbolDocumentInfo {
1 instantiation of SymbolDocumentInfo
System.Core (1)
Microsoft\Scripting\Ast\SymbolDocumentInfo.cs (1)
111return new SymbolDocumentInfo(fileName);
18 references to SymbolDocumentInfo
System.Core (18)
Microsoft\Scripting\Ast\DebugInfoExpression.cs (10)
40private readonly SymbolDocumentInfo _document; 42internal DebugInfoExpression(SymbolDocumentInfo document) { 91/// Gets the <see cref="SymbolDocumentInfo"/> that represents the source file. 93public SymbolDocumentInfo Document { 117internal SpanDebugInfoExpression(SymbolDocumentInfo document, int startLine, int startColumn, int endLine, int endColumn) 161internal ClearDebugInfoExpression(SymbolDocumentInfo document) 201/// <param name="document">The <see cref="SymbolDocumentInfo"/> that represents the source file.</param> 207public static DebugInfoExpression DebugInfo(SymbolDocumentInfo document, int startLine, int startColumn, int endLine, int endColumn) { 220/// <param name="document">The <see cref="SymbolDocumentInfo"/> that represents the source file.</param> 222public static DebugInfoExpression ClearDebugInfo(SymbolDocumentInfo document) {
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
120public SymbolDocumentInfo Document { get { return _node.Document; } }
Microsoft\Scripting\Ast\SymbolDocumentInfo.cs (4)
110public static SymbolDocumentInfo SymbolDocument(string fileName) { 121public static SymbolDocumentInfo SymbolDocument(string fileName, Guid language) { 134public static SymbolDocumentInfo SymbolDocument(string fileName, Guid language, Guid languageVendor) { 149public static SymbolDocumentInfo SymbolDocument(string fileName, Guid language, Guid languageVendor, Guid documentType) {
Microsoft\Scripting\Compiler\SymbolDocumentGenerator.cs (3)
43private Dictionary<SymbolDocumentInfo, ISymbolDocumentWriter> _symbolWriters; 45private ISymbolDocumentWriter GetSymbolWriter(MethodBuilder method, SymbolDocumentInfo document) { 48_symbolWriters = new Dictionary<SymbolDocumentInfo, ISymbolDocumentWriter>();