Skip to content

Commit

Permalink
chore: ignore c-1 function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Oct 9, 2024
1 parent 8b3be0a commit 2ffeffc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jsphere_vv8_log/src/aggregating.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ impl RecordAggregate {
None
}

// Ignore user function calls.
// Ignore user function calls or function calls with
// a placeholder offset.
LogRecord::FunctionCall {
is_user_fn: true, ..
} => None,
} | LogRecord::FunctionCall { offset: -1, .. } => None,

LogRecord::FunctionCall {
method, receiver, .. // Ignore arguments, etc. for now.
Expand Down

0 comments on commit 2ffeffc

Please sign in to comment.