Skip to content

Commit

Permalink
Update todos
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinGruber committed Jan 30, 2024
1 parent ca06981 commit 389a390
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions src/act_process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ pub fn get_param_type_ann(param: &Param) -> Result<Box<TsType>, String> {
param_type_ann = param_type_ann_wraped.type_ann;
} else if param_pat.is_expr() {
let _param_expr = param_pat.expr().unwrap();
// TODO:
}

Ok(param_type_ann)
Expand Down
1 change: 0 additions & 1 deletion src/act_structs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ pub struct MethodAct {
#[derive(Debug)]
pub struct ClassAct {
pub name: String,
// TODO: constructor
pub methods: Vec<MethodAct>,
}

Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ fn main() {
let folder_path = args.folder_path;
let files = get_files_paths(folder_path);
for file_path in files {
// TODO: bench single thread vs multi thread
thread::Builder::new()
.name(file_path.to_string_lossy().to_string())
.spawn(move || process_file(file_path).unwrap_or(()))
Expand Down

0 comments on commit 389a390

Please sign in to comment.