Commit 37e4f0c 1 parent de87e54 commit 37e4f0c Copy full SHA for 37e4f0c
File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -323,6 +323,8 @@ impl RunningDebugger {
323
323
}
324
324
}
325
325
326
+ /// Create a debugger object based on all the inputs we have available from the interface.
327
+ /// The result is a RunningDebugger.
326
328
pub fn create (
327
329
allocator : & mut Allocator ,
328
330
fs : Rc < dyn IFileReader > ,
@@ -554,7 +556,7 @@ fn populate_arguments(
554
556
}
555
557
}
556
558
557
- pub struct RunStartData {
559
+ struct RunStartData {
558
560
pub source_file : String ,
559
561
pub program : Rc < SExp > ,
560
562
pub program_lines : Vec < String > ,
@@ -564,9 +566,9 @@ pub struct RunStartData {
564
566
pub compiled : Option < CompileForm > ,
565
567
}
566
568
567
- /// Try to obtain anything we're able to locate related to the chialisp program
568
- /// or clvm hex that was launched.
569
- pub fn read_program_data (
569
+ // Try to obtain anything we're able to locate related to the chialisp program
570
+ // or clvm hex that was launched.
571
+ fn read_program_data (
570
572
fs : Rc < dyn IFileReader > ,
571
573
log : Rc < dyn ILogWriter > ,
572
574
allocator : & mut Allocator ,
You can’t perform that action at this time.
0 commit comments