Esempio n. 1
0
 /// <summary>
 /// Gets the member defined at the specified location.
 /// Returns null if no member is defined at that location.
 /// </summary>
 public static IUnresolvedMember GetMember(this IUnresolvedFile file, int line, int column)
 {
     return(file.GetMember(new TextLocation(line, column)));
 }
Esempio n. 2
0
 public override IUnresolvedMember GetMember(TextLocation location)
 {
     return(parsedFile.GetMember(location));
 }