Class BinaryExpressionSyntax
Represents a binary expression.
Inheritance
System.Object
BinaryExpressionSyntax
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Assembly: Loretta.CodeAnalysis.Lua.dll
Syntax
public sealed class BinaryExpressionSyntax : ExpressionSyntax
Properties
|
Improve this Doc
View Source
Left
The expression on the left side of the operator.
Declaration
public ExpressionSyntax Left { get; }
Property Value
|
Improve this Doc
View Source
OperatorToken
Declaration
public SyntaxToken OperatorToken { get; }
Property Value
|
Improve this Doc
View Source
Right
The expression on the right side of the operator.
Declaration
public ExpressionSyntax Right { get; }
Property Value
Methods
|
Improve this Doc
View Source
Accept(LuaSyntaxVisitor)
Declaration
public override void Accept(LuaSyntaxVisitor visitor)
Parameters
Overrides
|
Improve this Doc
View Source
Accept<TResult>(LuaSyntaxVisitor<TResult>)
Declaration
public override TResult Accept<TResult>(LuaSyntaxVisitor<TResult> visitor)
Parameters
Returns
Type Parameters
Overrides
Loretta.CodeAnalysis.Lua.LuaSyntaxNode.Accept<TResult>(Loretta.CodeAnalysis.Lua.LuaSyntaxVisitor<TResult>)
|
Improve this Doc
View Source
Update(ExpressionSyntax, SyntaxToken, ExpressionSyntax)
Declaration
public BinaryExpressionSyntax Update(ExpressionSyntax left, SyntaxToken operatorToken, ExpressionSyntax right)
Parameters
Returns
|
Improve this Doc
View Source
WithLeft(ExpressionSyntax)
Declaration
public BinaryExpressionSyntax WithLeft(ExpressionSyntax left)
Parameters
Returns
|
Improve this Doc
View Source
WithOperatorToken(SyntaxToken)
Declaration
public BinaryExpressionSyntax WithOperatorToken(SyntaxToken operatorToken)
Parameters
Returns
|
Improve this Doc
View Source
WithRight(ExpressionSyntax)
Declaration
public BinaryExpressionSyntax WithRight(ExpressionSyntax right)
Parameters
Returns
Implements
IFormattable
Extension Methods