File tree Expand file tree Collapse file tree 6 files changed +10
-9
lines changed Expand file tree Collapse file tree 6 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import type {
1111 TSetTimerHistory ,
1212} from '../../wrapper/TimerWrapper.ts' ;
1313import { CONFIG_VERSION , local } from './storage.ts' ;
14+ import { EWrapperCallstackType } from '../../wrapper/shared/TraceUtil.ts' ;
1415
1516type TPanelKey =
1617 | 'callsSummary'
@@ -93,10 +94,6 @@ export const DEFAULT_PANELS: TPanel[] = [
9394 } ,
9495] ;
9596
96- export enum EWrapperCallstackType {
97- FULL ,
98- SHORT ,
99- }
10097export enum ESortOrder {
10198 ASCENDING ,
10299 DESCENDING ,
Original file line number Diff line number Diff line change 11import { EMsg , portPost } from '../api/communication.ts' ;
22import {
33 DEFAULT_CONFIG ,
4- EWrapperCallstackType ,
54 loadLocalStorage ,
65 saveLocalStorage ,
76 type TConfig ,
87} from '../api/storage/storage.local.ts' ;
8+ import { EWrapperCallstackType } from '../wrapper/shared/TraceUtil.ts' ;
99
1010let config : TConfig = $state ( DEFAULT_CONFIG ) ;
1111
Original file line number Diff line number Diff line change 11<script lang =" ts" >
2- import { EWrapperCallstackType } from ' ../../api/storage/storage.local .ts' ;
2+ import { EWrapperCallstackType } from ' ../../wrapper/shared/TraceUtil .ts' ;
33 import { EMsg , runtimeListen } from ' ../../api/communication.ts' ;
44 import Alert from ' ../shared/Alert.svelte' ;
55 import {
Original file line number Diff line number Diff line change 11import { callableOnce } from '../api/time.ts' ;
22import { EvalWrapper , type TEvalHistory } from './EvalWrapper.ts' ;
33import {
4- EWrapperCallstackType ,
54 panelsArray2Map ,
65 type TConfig ,
76 type TPanelMap ,
@@ -35,6 +34,7 @@ import {
3534 type ISchedulerTelemetry ,
3635 SchedulerWrapper ,
3736} from './SchedulerWrapper.ts' ;
37+ import type { EWrapperCallstackType } from './shared/TraceUtil.ts' ;
3838
3939export type TTelemetry = {
4040 media : TMediaTelemetry ;
Original file line number Diff line number Diff line change 11import { hashString } from '../../api/hash.ts' ;
2- import { EWrapperCallstackType } from '../../api/storage/storage.local.ts' ;
2+
3+ export enum EWrapperCallstackType {
4+ FULL ,
5+ SHORT ,
6+ }
37
48export type TTrace = {
59 name : string | 0 ;
Original file line number Diff line number Diff line change 11import { describe , test } from '@std/testing/bdd' ;
22import { expect } from '@std/expect' ;
3- import { EWrapperCallstackType } from '../src/api/storage/storage.local.ts' ;
43import {
4+ EWrapperCallstackType ,
55 TAG_INVALID_CALLSTACK_LINK ,
66 TraceUtil ,
77} from '../src/wrapper/shared/TraceUtil.ts' ;
You can’t perform that action at this time.
0 commit comments