Hello,
I have two simple questions. In the code below:
public MemberTypeBinding(char[][] compoundName, ClassScope scope, SourceTypeBinding enclosingType) { super(compoundName, scope, enclosingType); ... }
How many Accesses and References do I have? (do the parameters contain 2 References and the super 3 Accesses).
Thanks!