mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.2 KiB
55 lines
1.2 KiB
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ICSharpCode.NRefactory.Ast |
|
{ |
|
public interface INode |
|
{ |
|
INode Parent { |
|
get; |
|
set; |
|
} |
|
|
|
List<INode> Children { |
|
get; |
|
} |
|
|
|
Location StartLocation { |
|
get; |
|
set; |
|
} |
|
|
|
Location EndLocation { |
|
get; |
|
set; |
|
} |
|
|
|
object UserData { |
|
get; |
|
set; |
|
} |
|
|
|
/// <summary> |
|
/// Visits all children |
|
/// </summary> |
|
/// <param name="visitor">The visitor to accept</param> |
|
/// <param name="data">Additional data for the visitor</param> |
|
/// <returns>The paremeter <paramref name="data"/></returns> |
|
object AcceptChildren(IAstVisitor visitor, object data); |
|
|
|
/// <summary> |
|
/// Accept the visitor |
|
/// </summary> |
|
/// <param name="visitor">The visitor to accept</param> |
|
/// <param name="data">Additional data for the visitor</param> |
|
/// <returns>The value the visitor returns after the visit</returns> |
|
object AcceptVisitor(IAstVisitor visitor, object data); |
|
} |
|
}
|
|
|