10 references to MethodDeclaration
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
EmbeddedLanguages\StackFrame\StackFrameParserTests.Utilities.cs (2)
44Assert.Null(tree.Root.MethodDeclaration); 48StackFrameUtils.AssertEqual(methodDeclaration, tree.Root.MethodDeclaration);
Microsoft.CodeAnalysis.Features (6)
EmbeddedLanguages\StackFrame\StackFrameCompilationUnit.cs (2)
15/// Any leading "at " is considered trivia of <see cref="MethodDeclaration"/>, and " in " is put as trivia for the <see cref="FileInformationExpression"/>. 460 => MethodDeclaration,
StackTraceExplorer\StackTraceExplorerUtilities.cs (4)
28var typeExpression = compilationUnit.MethodDeclaration.MemberAccessExpression.Left; 40var methodNode = compilationUnit.MethodDeclaration.MemberAccessExpression.Right; 41var methodTypeArguments = compilationUnit.MethodDeclaration.TypeArguments; 42var methodArguments = compilationUnit.MethodDeclaration.ArgumentList;
Microsoft.VisualStudio.LanguageServices (2)
StackTraceExplorer\StackFrameViewModel.cs (1)
139var methodDeclaration = _frame.Root.MethodDeclaration;
StackTraceExplorer\StackTraceExplorerToolWindow.cs (1)
94var methodDeclaration = parsedFrame.Root.MethodDeclaration;