Exemplo n.º 1
0
 private AnnotatedUnaryOperator(SyntaxKind syntaxKind, AnnotatedUnaryOperatorKind kind, Type operandType, Type resultType)
 {
     SyntaxKind  = syntaxKind;
     Kind        = kind;
     OperandType = operandType;
     ResultType  = resultType;
 }
Exemplo n.º 2
0
 private AnnotatedUnaryOperator(SyntaxKind syntaxKind, AnnotatedUnaryOperatorKind kind, Type operandType) : this(syntaxKind, kind, operandType, operandType)
 {
 }