File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
33#### Upcoming Changes
44
5+ * dev: make ` VirtualMachine::get_traceback_entries ` pub
6+
57* chore: Pin types-rs version to the one set in lockfile [ #2140 ] ( https://github.com/lambdaclass/cairo-vm/pull/2140 )
68
79* chore: Migrate from ` pyenv ` to ` uv ` [ #1995 ] ( https://github.com/lambdaclass/cairo-vm/pull/1995 )
Original file line number Diff line number Diff line change @@ -821,9 +821,9 @@ impl VirtualMachine {
821821 Ok ( ( ) )
822822 }
823823
824- // Returns the values (fp, pc) corresponding to each call instruction in the traceback.
825- // Returns the most recent call last.
826- pub ( crate ) fn get_traceback_entries ( & self ) -> Vec < ( Relocatable , Relocatable ) > {
824+ /// Returns the values (fp, pc) corresponding to each call instruction in the traceback.
825+ /// Returns the most recent call last.
826+ pub fn get_traceback_entries ( & self ) -> Vec < ( Relocatable , Relocatable ) > {
827827 let mut entries = Vec :: < ( Relocatable , Relocatable ) > :: new ( ) ;
828828 let mut fp = Relocatable :: from ( ( 1 , self . run_context . fp ) ) ;
829829 // Fetch the fp and pc traceback entries
You can’t perform that action at this time.
0 commit comments