We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b4e89c5 + 6b43ed4 commit df7a12dCopy full SHA for df7a12d
crates/emmylua_doc_cli/src/common.rs
@@ -17,6 +17,7 @@ pub fn render_const(typ: &LuaType) -> Option<String> {
17
LuaType::StringConst(s) | LuaType::DocStringConst(s) => {
18
Some(format!("{:?}", s.to_string()))
19
}
20
+ LuaType::BooleanConst(b) => Some(b.to_string()),
21
_ => None,
22
23
0 commit comments