Skip to content

Commit

Permalink
fix: support Variable event for backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
alehander92 committed Aug 29, 2024
1 parent e2fff44 commit 04a53ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ use serde_repr::*;
pub enum TraceLowLevelEvent {
Step(StepRecord),
Path(PathBuf), // should be always generated before usage, so we can stop stream at random n
VariableName(String), // interning new name for it
VariableName(String), // interning new name for variables
Variable(String), // interning new name for variables: backward compat
Type(TypeRecord), // should be always generated before Value referencing it
Value(FullValueRecord), // full values: simpler case working even without modification support
Function(FunctionRecord), // should be always generated before CallRecord referencing it
Expand Down

0 comments on commit 04a53ce

Please sign in to comment.