mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
6983239: TreeScanner does not scan default value for method
Reviewed-by: mcimadamore
This commit is contained in:
parent
a5aa8a0943
commit
949983f6b0
5 changed files with 345 additions and 123 deletions
|
@ -141,6 +141,7 @@ public class TreeScanner<R,P> implements TreeVisitor<R,P> {
|
|||
r = scanAndReduce(node.getReceiverAnnotations(), p, r);
|
||||
r = scanAndReduce(node.getThrows(), p, r);
|
||||
r = scanAndReduce(node.getBody(), p, r);
|
||||
r = scanAndReduce(node.getDefaultValue(), p, r);
|
||||
return r;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue