(String sig, ClassEnv env)
| 690 | |
| 691 | public static final class FieldSignature implements PotentialComparable<FieldSignature> { |
| 692 | public static FieldSignature parse(String sig, ClassEnv env) { |
| 693 | // ReferenceTypeSignature |
| 694 | FieldSignature ret = new FieldSignature(); |
| 695 | MutableInt pos = new MutableInt(); |
| 696 | |
| 697 | ret.cls = ReferenceTypeSignature.parse(sig, pos, env); |
| 698 | assert pos.val == sig.length(); |
| 699 | |
| 700 | assert ret.toString().equals(sig); |
| 701 | |
| 702 | return ret; |
| 703 | } |
| 704 | |
| 705 | public ReferenceTypeSignature getCls() { |
| 706 | return cls; |
no test coverage detected