(int index, String name)
| 954 | } |
| 955 | |
| 956 | public void setAuxName(int index, String name) { |
| 957 | assert name == null || !hasOuterName(name); |
| 958 | |
| 959 | if (this.auxName == null) this.auxName = new String[NameType.AUX_COUNT]; |
| 960 | this.auxName[index] = name; |
| 961 | } |
| 962 | |
| 963 | public boolean isAssignableFrom(ClassInstance c) { |
| 964 | if (c == this) return true; |
no test coverage detected