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.
1 parent b4e89c5 commit 6b43ed4Copy full SHA for 6b43ed4
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