You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why this method necessary? public String getAsString(int var1) {return this.get(var1).getAsString();}
Yann 24/11/30: Bug?
It used to be simply: return this.get(var1).getAsString();
Why is this test necessary? final ConstantPoolEntry entry = this.get(var1); if (entry == null) { return this.get(0).getAsString(); } else { return this.get(var1).getAsString(); }
The text was updated successfully, but these errors were encountered:
agadfs
changed the title
(Really necessary methods?) CFParse Constant Pool
(Create bootstrapMethods attribute + really necessary methods?) CFParse Constant Pool
Dec 19, 2024
agadfs
changed the title
(Create bootstrapMethods attribute + really necessary methods?) CFParse Constant Pool
CFParse Constant Pool (Create bootstrapMethods attribute + really necessary methods?)
Dec 19, 2024
Yann 24/11/30: No BootstrapMethods Attribute
"I don't create/populate the BootstrapMethods attribute, so there's nothing to do right now with the index at
this.d_idxBootstrapMethod
."return this.this$0.getAsString(this.d_idxBootstrapMethod) + " " + this.this$0.getAsString(this.d_idxNameAndType);
Create the BootstrapMethods attribute
Is this method necessary?
String getNameAsJava() {return this.this$0.getAsString(this.d_idxDescriptor);}
Is this method necessary?
String getTypeAsJava() {return CPUtils.internal2java(this.this$0.getAsString(this.d_idxDescriptor));}
Why this method necessary?
public String getAsString(int var1) {return this.get(var1).getAsString();}
Yann 24/11/30: Bug?
It used to be simply:
return this.get(var1).getAsString();
Why is this test necessary?
final ConstantPoolEntry entry = this.get(var1); if (entry == null) { return this.get(0).getAsString(); } else { return this.get(var1).getAsString(); }
The text was updated successfully, but these errors were encountered: