From 9b67d416748e7eb129f7de4c85737aa913492f46 Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Thu, 25 Dec 2025 13:12:54 +0100 Subject: [PATCH 1/6] opcodes dis repr like cpython. POP-> POP_TOP --- crates/compiler-core/src/bytecode.rs | 202 +++++++++++++-------------- 1 file changed, 101 insertions(+), 101 deletions(-) diff --git a/crates/compiler-core/src/bytecode.rs b/crates/compiler-core/src/bytecode.rs index 11d2a7b5f1..19cb5776c9 100644 --- a/crates/compiler-core/src/bytecode.rs +++ b/crates/compiler-core/src/bytecode.rs @@ -782,7 +782,6 @@ pub enum Instruction { MatchMapping, MatchSequence, Nop, - Pop, PopBlock, PopException, /// Pop the top of the stack, and jump if this value is false. @@ -793,6 +792,7 @@ pub enum Instruction { PopJumpIfTrue { target: Arg