How can I find what line number in the source file the declaration was found on?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Disclaimer: I work for Microsoft on the Roslyn team.

You can use the ISyntaxTree.GetLineSpan() method to convert to a line number. For example, given an ISymbol "symbol", you can get the start location of the first definition with:

var loc = symbol.Locations.First();
var lineSpan = loc.SourceTree.GetLineSpan(loc.SourceSpan, 
    usePreprocessorDirectives: false);
var line = lineSpan.StartLinePosition.Line;
var character = lineSpan.StartLinePosition.Character;

From the title, it looks like you're starting with a SyntaxNode, so you can just use the Span property directly.

link|improve this answer
I know it's a long-tail project, but is there a link to the documentation online? – casperOne Oct 26 '11 at 20:04
We don't have the documentation in the MSDN format yet. The closest we have at the moment are the various documents up at msdn.com/roslyn – Kevin Pilch-Bisson Oct 26 '11 at 20:13
I don't see the StartLinePosition here public class MyVisitor : SyntaxRewriter { protected override SyntaxNode VisitClassDeclaration(ClassDeclarationSyntax node) { Console.WriteLine(node.Identifier.ValueText); return null; } } – Doug Finke Oct 26 '11 at 20:46
Excellent, it worked tree.GetLineSpan(node.Identifier.Span, false).StartLinePosition.Line – Doug Finke Oct 27 '11 at 0:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.