Example #1
0
 private BinaryBoundOperator(SyntaxKind syntaxkind, BinaryBoundOperatorKind boundkind, Type lefttype, Type righttype, Type resulttype)
 {
     SyntaxKind = syntaxkind;
     BoundKind  = boundkind;
     LeftType   = lefttype;
     RightType  = righttype;
     ResultType = resulttype;
 }
Example #2
0
 private BinaryBoundOperator(SyntaxKind syntaxKind, BinaryBoundOperatorKind kind, Type operandType, Type resultType)
     : this(syntaxKind, kind, operandType, operandType, resultType)
 {
 }
Example #3
0
 private BinaryBoundOperator(SyntaxKind syntaxKind, BinaryBoundOperatorKind kind, Type type) : this(syntaxKind, kind, type, type, type)
 {
 }