We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0a1bf5 commit 94b95a1Copy full SHA for 94b95a1
src/java_bytecode/java_bytecode_convert_method.cpp
@@ -381,11 +381,12 @@ void java_bytecode_convert_method_lazy(
381
382
if(is_constructor(method_symbol.base_name))
383
{
384
- // we use full.class_name.class_name(...) as pretty name
385
- // for constructors
+ // we use full.class_name(...) as pretty name
+ // for constructors -- the idea is that they have
386
+ // an empty declarator.
387
method_symbol.pretty_name=
- id2string(class_symbol.pretty_name)+"."+
388
- id2string(class_symbol.base_name)+signature_string;
+ id2string(class_symbol.pretty_name)+
389
+ signature_string;
390
member_type.set_is_constructor();
391
}
392
else
0 commit comments