()
| 503 | public void setIsAuxExpr() { isAuxExpr_ = true; } |
| 504 | public Function getFn() { return fn_; } |
| 505 | public void disableCodegen() { |
| 506 | isCodegenDisabled_ = true; |
| 507 | for (Expr child : children_) { |
| 508 | child.disableCodegen(); |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | /** |
| 513 | * Perform semantic analysis of node and all of its children. |