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