format stackframe name with ClassName.MethodName(ParameterTypes)#73
format stackframe name with ClassName.MethodName(ParameterTypes)#73testforstephen merged 4 commits intomasterfrom
Conversation
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
|
@testforstephen, |
| } | ||
|
|
||
| private String formatMethodName(Method method, boolean showContextClass, boolean showParameter) { | ||
| String formattedName = method.name(); |
There was a problem hiding this comment.
Better to use StringBuilder in this method for lots of String concat
There was a problem hiding this comment.
boolean showFullyQualifiedNames = true;
Map<String, Object> options = context.getVariableFormatter().getDefaultOptions();
if (evalArguments.format != null && evalArguments.format.hex) {
options.put(NumericFormatter.NUMERIC_FORMAT_OPTION, NumericFormatEnum.HEX);
}
if (showFullyQualifiedNames) {
options.put(SimpleTypeFormatter.QUALIFIED_CLASS_NAME_OPTION, showFullyQualifiedNames);
}context.getVariableFormatter().typeToString(currentValue == null ? null : currentValue.type(), options)
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>

Signed-off-by: Jinbo Wang jinbwan@microsoft.com
add for feature #43