Exemplo n.º 1
0
 public override ScalarValue VisitCompoundStringLiteralExpression(CompoundStringLiteralExpression node)
 {
     return(new ScalarConst
     {
         Value = node.LiteralValue // concatenation of the string literals
     });
 }
Exemplo n.º 2
0
 public override T VisitCompoundStringLiteralExpression(CompoundStringLiteralExpression node)
 {
     throw new NotImplementedException();
 }