public Constructor(ILocation declaration, ILocation bodyStart, ILocation bodyEnd, IUnderlyingObject underlyingSyntaxNode) : base(declaration, bodyStart, bodyEnd, underlyingSyntaxNode) { }
protected SyntaxNodeDeclaration(ILocation declaration, IUnderlyingObject underlyingSyntaxNode) { Declaration = declaration; UnderlyingSyntaxNode = underlyingSyntaxNode; }
protected SyntaxNode(ILocation declaration, ILocation bodyStart, ILocation bodyEnd, IUnderlyingObject underlyingSyntaxNode) : base(declaration, underlyingSyntaxNode) { BodyStart = bodyStart; BodyEnd = bodyEnd; }
public Property(ILocation declaration, ILocation bodyStart, ILocation bodyEnd, IUnderlyingObject underlyingSyntaxNode) : base(declaration, bodyStart, bodyEnd, underlyingSyntaxNode) { }
public MethodDeclaration(ILocation declaration, IUnderlyingObject underlyingSyntaxNode) : base(declaration, underlyingSyntaxNode) { }
public PropertyDeclaration(ILocation declaration, IUnderlyingObject underlyingSyntaxNode) : base(declaration, underlyingSyntaxNode) { }