(Iterable<? extends Expr> exprs,
ExprSubstitutionMap smap, Analyzer analyzer, boolean preserveRootTypes)
| 1186 | } |
| 1187 | |
| 1188 | public static List<Expr> trySubstituteList(Iterable<? extends Expr> exprs, |
| 1189 | ExprSubstitutionMap smap, Analyzer analyzer, boolean preserveRootTypes) |
| 1190 | throws AnalysisException { |
| 1191 | if (exprs == null) return null; |
| 1192 | List<Expr> result = new ArrayList<>(); |
| 1193 | for (Expr e: exprs) { |
| 1194 | result.add(e.trySubstitute(smap, analyzer, preserveRootTypes)); |
| 1195 | } |
| 1196 | return result; |
| 1197 | } |
| 1198 | |
| 1199 | public static List<Expr> substituteList(Iterable<? extends Expr> exprs, |
| 1200 | ExprSubstitutionMap smap, Analyzer analyzer, boolean preserveRootTypes) { |
no test coverage detected