src/share/classes/com/sun/tools/javac/tree/TreeCopier.java

changeset 1782
b391ecea538e
parent 1755
ddb4a2bfcd82
child 2041
9a75bdb249a2
equal deleted inserted replaced
1781:0f8e9a0e5d9a 1782:b391ecea538e
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;

mercurial