langtools/src/share/classes/com/sun/tools/javac/tree/TreeCopier.java
changeset 17807 36cff8c58cdf
parent 17578 46ac954e4a84
child 20243 21740b37e9aa
equal deleted inserted replaced
17806:b694bd72f635 17807:36cff8c58cdf
   338         return M.at(t.pos).Synchronized(lock, body);
   338         return M.at(t.pos).Synchronized(lock, body);
   339     }
   339     }
   340 
   340 
   341     public JCTree visitThrow(ThrowTree node, P p) {
   341     public JCTree visitThrow(ThrowTree node, P p) {
   342         JCThrow t = (JCThrow) node;
   342         JCThrow t = (JCThrow) node;
   343         JCTree expr = copy(t.expr, p);
   343         JCExpression expr = copy(t.expr, p);
   344         return M.at(t.pos).Throw(expr);
   344         return M.at(t.pos).Throw(expr);
   345     }
   345     }
   346 
   346 
   347     public JCTree visitCompilationUnit(CompilationUnitTree node, P p) {
   347     public JCTree visitCompilationUnit(CompilationUnitTree node, P p) {
   348         JCCompilationUnit t = (JCCompilationUnit) node;
   348         JCCompilationUnit t = (JCCompilationUnit) node;