feat(profiler): 实现高级性能分析器 (#248)

* feat(profiler): 实现高级性能分析器

* test(core): 添加 ProfilerSDK 和 AdvancedProfilerCollector 测试覆盖

* test(core): 添加 ProfilerSDK 和 AdvancedProfilerCollector 测试覆盖
This commit is contained in:
YHH
2025-11-30 00:22:47 +08:00
committed by GitHub
parent 359886c72f
commit 374e08a79e
35 changed files with 4168 additions and 9096 deletions

View File

@@ -122,6 +122,14 @@ class ProfilerEditorModule implements IEditorModuleLoader {
execute: () => {
this.messageHub?.publish('ui:openWindow', { windowId: 'profiler' });
}
},
{
id: 'window.advancedProfiler',
label: 'Advanced Profiler',
parentId: 'window',
execute: () => {
this.messageHub?.publish('ui:openWindow', { windowId: 'advancedProfiler' });
}
}
];
}