${indent}├─ [L${call.line}] ${call.raw}
`;
continue;
}
const method = call.method;
const methodDisplay = method.name || method.id;
const classDisplay = method.class_name ? method.class_name.split('.').pop() : '';
const importance = method.importance_score || 0;
const importanceTag = ` [${importance}]`;
html += `
${indent}├─ [L${call.line}] ${methodDisplay}() ${classDisplay}${importanceTag}
`;
if (call.calls && call.calls.length > 0) {
html += this.renderSequence(call, depth + 1);
}
}
return html;
}
}" x-init="loadData()">
时序图测试
加载中...