Skip to content

fix typo: interger → integer #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub fn infer_type(analyzer: &mut DocAnalyzer, node: LuaDocType) -> LuaType {
}
LuaLiteralToken::Number(number_token) => {
if number_token.is_int() {
return LuaType::DocIntergerConst(number_token.get_int_value());
return LuaType::DocIntegerConst(number_token.get_int_value());
} else {
return LuaType::Number;
}
Expand Down
4 changes: 2 additions & 2 deletions crates/code_analysis/src/db_index/type/humanize_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ pub fn humanize_type(db: &DbIndex, ty: &LuaType) -> String {
LuaType::Union(union) => humanize_union_type(db, union),
LuaType::Tuple(tuple) => humanize_tuple_type(db, tuple),
LuaType::Unknown => "unknown".to_string(),
LuaType::Integer => "interger".to_string(),
LuaType::Integer => "integer".to_string(),
LuaType::Io => "io".to_string(),
LuaType::SelfInfer => "self".to_string(),
LuaType::BooleanConst(b) => b.to_string(),
LuaType::StringConst(s) => format!("\"{}\"", s),
LuaType::DocStringConst(s) => format!("\"{}\"", s),
LuaType::DocIntergerConst(i) => i.to_string(),
LuaType::DocIntegerConst(i) => i.to_string(),
LuaType::Ref(id) => {
if let Some(type_decl) = db.get_type_index().get_type_decl(id) {
type_decl.get_name().to_string()
Expand Down
10 changes: 5 additions & 5 deletions crates/code_analysis/src/db_index/type/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub enum LuaType {
Instance(Arc<LuaInstanceType>),
FuncTplRef(Arc<GenericTpl>),
DocStringConst(ArcIntern<SmolStr>),
DocIntergerConst(i64),
DocIntegerConst(i64),
Namespace(ArcIntern<SmolStr>),
}

Expand Down Expand Up @@ -102,7 +102,7 @@ impl PartialEq for LuaType {
(LuaType::Instance(a), LuaType::Instance(b)) => a == b,
(LuaType::FuncTplRef(a), LuaType::FuncTplRef(b)) => a == b,
(LuaType::DocStringConst(a), LuaType::DocStringConst(b)) => a == b,
(LuaType::DocIntergerConst(a), LuaType::DocIntergerConst(b)) => a == b,
(LuaType::DocIntegerConst(a), LuaType::DocIntegerConst(b)) => a == b,
(LuaType::Namespace(a), LuaType::Namespace(b)) => a == b,
_ => false, // 不同变体之间不相等
}
Expand Down Expand Up @@ -176,7 +176,7 @@ impl Hash for LuaType {
LuaType::Instance(a) => (38, a).hash(state),
LuaType::FuncTplRef(a) => (39, a).hash(state),
LuaType::DocStringConst(a) => (40, a).hash(state),
LuaType::DocIntergerConst(a) => (41, a).hash(state),
LuaType::DocIntegerConst(a) => (41, a).hash(state),
LuaType::Namespace(a) => (42, a).hash(state),
}
}
Expand Down Expand Up @@ -221,7 +221,7 @@ impl LuaType {
pub fn is_integer(&self) -> bool {
matches!(
self,
LuaType::IntegerConst(_) | LuaType::Integer | LuaType::DocIntergerConst(_)
LuaType::IntegerConst(_) | LuaType::Integer | LuaType::DocIntegerConst(_)
)
}

Expand Down Expand Up @@ -331,7 +331,7 @@ impl LuaType {
| LuaType::FloatConst(_)
| LuaType::TableConst(_)
| LuaType::DocStringConst(_)
| LuaType::DocIntergerConst(_)
| LuaType::DocIntegerConst(_)
)
}

Expand Down
4 changes: 2 additions & 2 deletions crates/code_analysis/src/semantic/type_compact/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ fn infer_type_compact(
(LuaType::Integer, _) => compact_type.is_integer(),
(LuaType::String, _) => compact_type.is_string(),
(LuaType::Boolean, _) => compact_type.is_boolean(),
(LuaType::DocIntergerConst(i), _) => match compact_type {
(LuaType::DocIntegerConst(i), _) => match compact_type {
LuaType::IntegerConst(j) => *i == j,
LuaType::DocIntergerConst(j) => *i == j,
LuaType::DocIntegerConst(j) => *i == j,
_ => false,
},
(LuaType::DocStringConst(s), _) => match compact_type {
Expand Down
2 changes: 1 addition & 1 deletion crates/emmylua_doc_cli/src/markdown_generator/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub fn render_const_type(db: &DbIndex, typ: &LuaType) -> String {
let const_value = humanize_type(db, typ);

match typ {
LuaType::IntegerConst(_) | LuaType::DocIntergerConst(_) => {
LuaType::IntegerConst(_) | LuaType::DocIntegerConst(_) => {
format!("integer = {}", const_value)
}
LuaType::FloatConst(_) => format!("number = {}", const_value),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ fn add_union_member_completion(
for union_sub_typ in union_typ.get_types() {
let name = match union_sub_typ {
LuaType::DocStringConst(s) => to_enum_label(builder, s),
LuaType::DocIntergerConst(i) => i.to_string(),
LuaType::DocIntegerConst(i) => i.to_string(),
_ => {
dispatch_type(builder, union_sub_typ.clone(), infer_guard);
continue;
Expand Down Expand Up @@ -188,7 +188,7 @@ fn add_alias_member_completion(
let typ = member.get_decl_type();
let name = match typ {
LuaType::DocStringConst(s) => to_enum_label(builder, s),
LuaType::DocIntergerConst(i) => i.to_string(),
LuaType::DocIntegerConst(i) => i.to_string(),
_ => return None,
};

Expand Down
2 changes: 1 addition & 1 deletion crates/emmylua_ls/src/handlers/hover/hover_humanize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub fn hover_const_type(db: &DbIndex, typ: &LuaType) -> String {
let const_value = humanize_type(db, typ);

match typ {
LuaType::IntegerConst(_) | LuaType::DocIntergerConst(_) => {
LuaType::IntegerConst(_) | LuaType::DocIntegerConst(_) => {
format!("integer = {}", const_value)
}
LuaType::FloatConst(_) => format!("number = {}", const_value),
Expand Down
Loading