Beispiel #1
0
 public BoundConversionExpression(TypeSymbol type, BoundExpression expression)
 {
     Type       = type;
     Expression = expression;
 }
Beispiel #2
0
 public BoundVariableDeclaration(VariableSymbol variable, BoundExpression initializer)
 {
     Variable    = variable;
     Initializer = initializer;
 }