Skip to content

Commit

Permalink
Wire up some more
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Sep 26, 2024
1 parent 12c4802 commit 2f2a9fe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/tracer/src/AddTargetsDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ function labelForTraceSpecScope(scope: TraceSpecScope) {
return "Function";
case TraceSpecScope.RelativeFunction:
return "Relative Function";
case TraceSpecScope.AbsoluteInstruction:
return "Instruction";
case TraceSpecScope.Imports:
return "All Module Imports";
case TraceSpecScope.Module:
Expand All @@ -127,6 +129,8 @@ function placeholderForTraceTargetSpecScope(scope: TraceSpecScope) {
return "[Module!]Function";
case TraceSpecScope.RelativeFunction:
return "Module!Offset";
case TraceSpecScope.AbsoluteInstruction:
return "0x1234";
case TraceSpecScope.Imports:
case TraceSpecScope.Module:
return "Module";
Expand Down

0 comments on commit 2f2a9fe

Please sign in to comment.