Skip to content

Commit 37e4f0c

Browse files
committed
Comment, some stuff non-public
1 parent de87e54 commit 37e4f0c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

wasm/src/dbg/obj.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,8 @@ impl RunningDebugger {
323323
}
324324
}
325325

326+
/// Create a debugger object based on all the inputs we have available from the interface.
327+
/// The result is a RunningDebugger.
326328
pub fn create(
327329
allocator: &mut Allocator,
328330
fs: Rc<dyn IFileReader>,
@@ -554,7 +556,7 @@ fn populate_arguments(
554556
}
555557
}
556558

557-
pub struct RunStartData {
559+
struct RunStartData {
558560
pub source_file: String,
559561
pub program: Rc<SExp>,
560562
pub program_lines: Vec<String>,
@@ -564,9 +566,9 @@ pub struct RunStartData {
564566
pub compiled: Option<CompileForm>,
565567
}
566568

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(
570572
fs: Rc<dyn IFileReader>,
571573
log: Rc<dyn ILogWriter>,
572574
allocator: &mut Allocator,

0 commit comments

Comments
 (0)