public Constructor(ILocation declaration, ILocation bodyStart, ILocation bodyEnd, IUnderlyingObject underlyingSyntaxNode)
     : base(declaration, bodyStart, bodyEnd, underlyingSyntaxNode)
 {
 }
Exemple #2
0
 protected SyntaxNodeDeclaration(ILocation declaration, IUnderlyingObject underlyingSyntaxNode)
 {
     Declaration          = declaration;
     UnderlyingSyntaxNode = underlyingSyntaxNode;
 }
Exemple #3
0
 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)
 {
 }
Exemple #6
0
 public PropertyDeclaration(ILocation declaration, IUnderlyingObject underlyingSyntaxNode)
     : base(declaration, underlyingSyntaxNode)
 {
 }