Returns the index of the type argument that the given step is stepping into. This method should only be used for steps whose value is #TYPE_ARGUMENT. @param index an index between 0 and #getLength(), exclusive. @return the index of the type argument that the given step is stepping i
(final int index)
| 104 | * @return the index of the type argument that the given step is stepping into. |
| 105 | */ |
| 106 | public int getStepArgument(final int index) { |
| 107 | // Returns the type_argument_index of the path element of the given index. |
| 108 | return typePathContainer[typePathOffset + 2 * index + 2]; |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Converts a type path in string form, in the format used by {@link #toString()}, into a TypePath |