(final Expr expr, final Expr next, final CompileContext cc)
| 108 | } |
| 109 | |
| 110 | @Override |
| 111 | Expr merge(final Expr expr, final Expr next, final CompileContext cc) { |
| 112 | return expr.has(Flag.NDT) ? null : next.has(Flag.CTX) ? inline(expr, next, cc) : next; |
| 113 | } |
| 114 | |
| 115 | @Override |
| 116 | public Pipeline copy(final CompileContext cc, final IntObjectMap<Var> vm) { |