471472473474475476477478479480481
ForClause forClause = (ForClause) b; int loopDepth = forClause.getLoopDepth(); if(loopDepth <= 1) { _protectHook = true; } forClause.visit(this, ctxt); _protectHook = false; } else { b.visit(this, ctxt); } }
470471472473474475476477478479480