Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add doc for PopTop
  • Loading branch information
ShaharNaveh committed Dec 25, 2025
commit 2e220f969aea0c3f3f174ff9ca0349eec7a07b65
4 changes: 4 additions & 0 deletions crates/compiler-core/src/bytecode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,10 @@ pub enum Instruction {
PopJumpIfTrue {
target: Arg<Label>,
},
/// Removes the top-of-stack item:
/// ```py
/// STACK.pop()
/// ```
PopTop,
Raise {
kind: Arg<RaiseKind>,
Expand Down
Loading