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 1952445 commit d8d7099Copy full SHA for d8d7099
crates/emmylua_code_analysis/src/compilation/analyzer/doc/infer_type.rs
@@ -213,7 +213,7 @@ fn infer_special_generic_type(
213
return Some(LuaType::Namespace(ns_str));
214
}
215
216
- "Select" => {
+ "std.Select" => {
217
let mut params = Vec::new();
218
for param in generic_type.get_generic_types()?.get_types() {
219
let param_type = infer_type(analyzer, param);
@@ -223,7 +223,7 @@ fn infer_special_generic_type(
223
LuaAliasCallType::new(LuaAliasCallKind::Select, params).into(),
224
));
225
226
- "Unpack" => {}
+ "std.Unpack" => {}
227
_ => {}
228
229
0 commit comments