We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2fff44 commit af037e4Copy full SHA for af037e4
src/types.rs
@@ -10,7 +10,8 @@ use serde_repr::*;
10
pub enum TraceLowLevelEvent {
11
Step(StepRecord),
12
Path(PathBuf), // should be always generated before usage, so we can stop stream at random n
13
- VariableName(String), // interning new name for it
+ VariableName(String), // interning new name for variables
14
+ Variable(String), // interning new name for variables: backward compat
15
Type(TypeRecord), // should be always generated before Value referencing it
16
Value(FullValueRecord), // full values: simpler case working even without modification support
17
Function(FunctionRecord), // should be always generated before CallRecord referencing it
0 commit comments