src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/Block.java
changeset 49145 2854589fd853
parent 47216 71c04702a3d5
equal deleted inserted replaced
49144:71bc133f25ea 49145:2854589fd853
   255     public Symbol getExistingSymbol(final String name) {
   255     public Symbol getExistingSymbol(final String name) {
   256         return symbols.get(name);
   256         return symbols.get(name);
   257     }
   257     }
   258 
   258 
   259     /**
   259     /**
   260      * Test if this block represents a <tt>catch</tt> block in a <tt>try</tt> statement.
   260      * Test if this block represents a <code>catch</code> block in a <code>try</code> statement.
   261      * This is used by the Splitter as catch blocks are not be subject to splitting.
   261      * This is used by the Splitter as catch blocks are not be subject to splitting.
   262      *
   262      *
   263      * @return true if this block represents a catch block in a try statement.
   263      * @return true if this block represents a catch block in a try statement.
   264      */
   264      */
   265     public boolean isCatchBlock() {
   265     public boolean isCatchBlock() {