Exemplo n.º 1
0
            static IEnumerable <Expr> FilterLiterals(IList <Expr> e)
            {
                foreach (var s in e)
                {
                    LiteralExpr le = s as LiteralExpr;
                    if (le != null)
                    {
                        yield return(le.Trim());

                        continue;
                    }

                    yield return(s);
                }
            }