From e8f93b214961045e908aa4330a6cc2a68ffd27f8 Mon Sep 17 00:00:00 2001 From: Pranav Gaddamadugu <23022326+d0cd@users.noreply.github.com> Date: Fri, 6 Dec 2024 07:49:25 -0800 Subject: [PATCH] Cleanup --- interpreter/src/cursor.rs | 6 ------ interpreter/src/lib.rs | 7 ------- 2 files changed, 13 deletions(-) diff --git a/interpreter/src/cursor.rs b/interpreter/src/cursor.rs index 83c8ef1c62..6777fcd7e4 100644 --- a/interpreter/src/cursor.rs +++ b/interpreter/src/cursor.rs @@ -284,7 +284,6 @@ impl<'a> Cursor<'a> { signer, block_height, really_async, -<<<<<<< HEAD program: None, } } @@ -297,11 +296,6 @@ impl<'a> Cursor<'a> { self.contexts.current_program().or(self.program) } -======= - } - } - ->>>>>>> dd68615d86 (Interpreter.) pub fn increment_step(&mut self) { let Some(Frame { step, .. }) = self.frames.last_mut() else { panic!("frame expected"); diff --git a/interpreter/src/lib.rs b/interpreter/src/lib.rs index d925900c3f..aee0a59586 100644 --- a/interpreter/src/lib.rs +++ b/interpreter/src/lib.rs @@ -68,11 +68,7 @@ You can set a breakpoint with When executing Aleo VM code, you can print the value of a register like this: #print 2 -<<<<<<< HEAD Some of the commands may be run with one letter abbreviations, such as #i. -======= -You may also use one letter abbreviations for these commands, such as #i. ->>>>>>> dd68615d86 (Interpreter.) Note that this interpreter is not line oriented as in many common debuggers; rather it is oriented around expressions and statements. @@ -91,7 +87,6 @@ If there are futures available to be executed, they will be listed by numerical index, and you may run them using `#future` (or `#f`); for instance #future 0 -<<<<<<< HEAD The interpreter begins in a global context, not in any Leo program. You can set the current program with @@ -107,8 +102,6 @@ REPL. In this case, you may use the command Which will restore to the last saved state of the interpreter. Any time you enter Leo code at the prompt, interpreter state is saved. -======= ->>>>>>> dd68615d86 (Interpreter.) Input history is available - use the up and down arrow keys. ";