src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/Label.java
changeset 49145 2854589fd853
parent 47216 71c04702a3d5
equal deleted inserted replaced
49144:71bc133f25ea 49145:2854589fd853
    99             final int pos = sp - 1 - n;
    99             final int pos = sp - 1 - n;
   100             return pos < 0 ? null : data[pos];
   100             return pos < 0 ? null : data[pos];
   101         }
   101         }
   102 
   102 
   103         /**
   103         /**
   104          * Retrieve the top <tt>count</tt> types on the stack without modifying it.
   104          * Retrieve the top <code>count</code> types on the stack without modifying it.
   105          *
   105          *
   106          * @param count number of types to return
   106          * @param count number of types to return
   107          * @return array of Types
   107          * @return array of Types
   108          */
   108          */
   109         Type[] getTopTypes(final int count) {
   109         Type[] getTopTypes(final int count) {