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