Class EdgeStatementSyntax
Inheritance
System.Object
EdgeStatementSyntax
Assembly: DotLang.dll
Syntax
public sealed class EdgeStatementSyntax : StatementSyntax, IEdgeVertexStatementSyntax
Constructors
|
Improve this Doc
View Source
EdgeStatementSyntax(IEdgeVertexStatementSyntax, EdgeKind, IEdgeVertexStatementSyntax, AttributeListSyntax)
Declaration
public EdgeStatementSyntax(IEdgeVertexStatementSyntax left, EdgeKind edgeKind, IEdgeVertexStatementSyntax right, AttributeListSyntax attributes = null)
Parameters
|
Improve this Doc
View Source
EdgeStatementSyntax(IEdgeVertexStatementSyntax, EdgeKind, String, AttributeListSyntax)
Declaration
public EdgeStatementSyntax(IEdgeVertexStatementSyntax left, EdgeKind edgeKind, string right, AttributeListSyntax attributes = null)
Parameters
|
Improve this Doc
View Source
EdgeStatementSyntax(String, EdgeKind, IEdgeVertexStatementSyntax, AttributeListSyntax)
Declaration
public EdgeStatementSyntax(string left, EdgeKind edgeKind, IEdgeVertexStatementSyntax right, AttributeListSyntax attributes = null)
Parameters
|
Improve this Doc
View Source
EdgeStatementSyntax(String, EdgeKind, String, AttributeListSyntax)
Declaration
public EdgeStatementSyntax(string left, EdgeKind edgeKind, string right, AttributeListSyntax attributes = null)
Parameters
Properties
|
Improve this Doc
View Source
Attributes
Declaration
public AttributeListSyntax Attributes { get; }
Property Value
|
Improve this Doc
View Source
EdgeOperatorToken
Declaration
public SyntaxToken EdgeOperatorToken { get; }
Property Value
|
Improve this Doc
View Source
Left
Declaration
public IEdgeVertexStatementSyntax Left { get; }
Property Value
|
Improve this Doc
View Source
Right
Declaration
public IEdgeVertexStatementSyntax Right { get; }
Property Value
Methods
|
Improve this Doc
View Source
Accept(SyntaxVisitor)
Declaration
public override void Accept(SyntaxVisitor visitor)
Parameters
Overrides
Implements