Exemple #1
0
 public GotoExpression(GotoExpressionKind kind, LabelTarget target, TypeInfo?type, Expression?value)
 {
     Kind   = kind;
     Target = target.CheckNotNull(nameof(target));
     Type   = type;
     Value  = value;
 }
Exemple #2
0
 public LabelExpression(LabelTarget target, Expression?defaultValue)
 {
     Target       = target.CheckNotNull(nameof(target));
     DefaultValue = defaultValue;
 }