1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00

Compare commits

...

2 commits

Author SHA1 Message Date
Natapat Samutpong 21d8223f31 move hazure.vim to another repo 2022-03-24 09:38:54 +07:00
Natapat Samutpong c5d9a07e96 vim syntax file 2022-03-24 09:36:26 +07:00

View file

@ -448,9 +448,9 @@ fn gen_type_hint(type_hint: &str) -> String {
"string" => "string".to_string(),
"void" => "void".to_string(),
// TODO: Un-hardcode types
"vec_int" => "number[]".to_string(),
"vec_bool" => "boolean[]".to_string(),
"vec_str" => "string[]".to_string(),
"vec_int" => "number[]".to_string(),
"vec_bool" => "boolean[]".to_string(),
"vec_string" => "string[]".to_string(),
_ => { dbg!(type_hint); todo!() }
}
}
}