Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
d0cd committed Dec 6, 2024
1 parent 1d9a76a commit a5ea6b8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
6 changes: 0 additions & 6 deletions interpreter/src/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,6 @@ impl<'a> Cursor<'a> {
signer,
block_height,
really_async,
<<<<<<< HEAD
program: None,
}
}
Expand All @@ -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");
Expand Down
7 changes: 0 additions & 7 deletions interpreter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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.
";

Expand Down

0 comments on commit a5ea6b8

Please sign in to comment.