src/jdk.compiler/share/classes/com/sun/tools/javac/tree/TreeScanner.java
changeset 55306 ea43db53de91
parent 51563 de411d537aae
child 59285 7799a51dbe30
equal deleted inserted replaced
55305:6e432194ee97 55306:ea43db53de91
     1 /*
     1 /*
     2  * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   217     public void visitExec(JCExpressionStatement tree) {
   217     public void visitExec(JCExpressionStatement tree) {
   218         scan(tree.expr);
   218         scan(tree.expr);
   219     }
   219     }
   220 
   220 
   221     public void visitBreak(JCBreak tree) {
   221     public void visitBreak(JCBreak tree) {
       
   222     }
       
   223 
       
   224     public void visitYield(JCYield tree) {
   222         scan(tree.value);
   225         scan(tree.value);
   223     }
   226     }
   224 
   227 
   225     public void visitContinue(JCContinue tree) {
   228     public void visitContinue(JCContinue tree) {
   226     }
   229     }