mirror of
https://github.com/godotengine/godot.git
synced 2025-11-02 14:41:07 +00:00
clang-format: Disable alignment of operands, too unreliable
Sets `AlignOperands` to `DontAlign`. `clang-format` developers seem to mostly care about space-based indentation and every other version of clang-format breaks the bad mismatch of tabs and spaces that it seems to use for operand alignment. So it's better without, so that it respects our two-tabs `ContinuationIndentWidth`.
This commit is contained in:
parent
c7f4e1d5dd
commit
42d385b312
96 changed files with 519 additions and 540 deletions
|
|
@ -4864,14 +4864,14 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
|
|||
|
||||
if (current_class->constant_expressions.has(member.identifier)) {
|
||||
_set_error("A constant named \"" + String(member.identifier) + "\" already exists in this class (at line: " +
|
||||
itos(current_class->constant_expressions[member.identifier].expression->line) + ").");
|
||||
itos(current_class->constant_expressions[member.identifier].expression->line) + ").");
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < current_class->variables.size(); i++) {
|
||||
if (current_class->variables[i].identifier == member.identifier) {
|
||||
_set_error("Variable \"" + String(member.identifier) + "\" already exists in this class (at line: " +
|
||||
itos(current_class->variables[i].line) + ").");
|
||||
itos(current_class->variables[i].line) + ").");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -5123,14 +5123,14 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
|
|||
|
||||
if (current_class->constant_expressions.has(const_id)) {
|
||||
_set_error("Constant \"" + String(const_id) + "\" already exists in this class (at line " +
|
||||
itos(current_class->constant_expressions[const_id].expression->line) + ").");
|
||||
itos(current_class->constant_expressions[const_id].expression->line) + ").");
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < current_class->variables.size(); i++) {
|
||||
if (current_class->variables[i].identifier == const_id) {
|
||||
_set_error("A variable named \"" + String(const_id) + "\" already exists in this class (at line " +
|
||||
itos(current_class->variables[i].line) + ").");
|
||||
itos(current_class->variables[i].line) + ").");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -5201,14 +5201,14 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
|
|||
|
||||
if (current_class->constant_expressions.has(enum_name)) {
|
||||
_set_error("A constant named \"" + String(enum_name) + "\" already exists in this class (at line " +
|
||||
itos(current_class->constant_expressions[enum_name].expression->line) + ").");
|
||||
itos(current_class->constant_expressions[enum_name].expression->line) + ").");
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < current_class->variables.size(); i++) {
|
||||
if (current_class->variables[i].identifier == enum_name) {
|
||||
_set_error("A variable named \"" + String(enum_name) + "\" already exists in this class (at line " +
|
||||
itos(current_class->variables[i].line) + ").");
|
||||
itos(current_class->variables[i].line) + ").");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -5293,14 +5293,14 @@ void GDScriptParser::_parse_class(ClassNode *p_class) {
|
|||
} else {
|
||||
if (current_class->constant_expressions.has(const_id)) {
|
||||
_set_error("A constant named \"" + String(const_id) + "\" already exists in this class (at line " +
|
||||
itos(current_class->constant_expressions[const_id].expression->line) + ").");
|
||||
itos(current_class->constant_expressions[const_id].expression->line) + ").");
|
||||
return;
|
||||
}
|
||||
|
||||
for (int i = 0; i < current_class->variables.size(); i++) {
|
||||
if (current_class->variables[i].identifier == const_id) {
|
||||
_set_error("A variable named \"" + String(const_id) + "\" already exists in this class (at line " +
|
||||
itos(current_class->variables[i].line) + ").");
|
||||
itos(current_class->variables[i].line) + ").");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -5952,8 +5952,8 @@ GDScriptParser::DataType GDScriptParser::_resolve_type(const DataType &p_source,
|
|||
} else {
|
||||
base = result.to_string();
|
||||
}
|
||||
_set_error("The identifier \"" + String(id) + "\" isn't a valid type (not a script or class), or couldn't be found on base \"" +
|
||||
base + "\".",
|
||||
_set_error("The identifier \"" + String(id) +
|
||||
"\" isn't a valid type (not a script or class), or couldn't be found on base \"" + base + "\".",
|
||||
p_line);
|
||||
return DataType();
|
||||
}
|
||||
|
|
@ -6449,7 +6449,7 @@ GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
|
|||
|
||||
if (!valid) {
|
||||
_set_error("Invalid cast. Cannot convert from \"" + source_type.to_string() +
|
||||
"\" to \"" + cn->cast_type.to_string() + "\".",
|
||||
"\" to \"" + cn->cast_type.to_string() + "\".",
|
||||
cn->line);
|
||||
return DataType();
|
||||
}
|
||||
|
|
@ -6537,7 +6537,7 @@ GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
|
|||
|
||||
if (check_types && !valid) {
|
||||
_set_error("Invalid operand type (\"" + argument_type.to_string() +
|
||||
"\") to unary operator \"" + Variant::get_operator_name(var_op) + "\".",
|
||||
"\") to unary operator \"" + Variant::get_operator_name(var_op) + "\".",
|
||||
op->line, op->column);
|
||||
return DataType();
|
||||
}
|
||||
|
|
@ -6581,7 +6581,7 @@ GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
|
|||
|
||||
if (check_types && !valid) {
|
||||
_set_error("Invalid operand types (\"" + argument_a_type.to_string() + "\" and \"" +
|
||||
argument_b_type.to_string() + "\") to operator \"" + Variant::get_operator_name(var_op) + "\".",
|
||||
argument_b_type.to_string() + "\") to operator \"" + Variant::get_operator_name(var_op) + "\".",
|
||||
op->line, op->column);
|
||||
return DataType();
|
||||
}
|
||||
|
|
@ -6667,7 +6667,7 @@ GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
|
|||
result = _type_from_variant(res);
|
||||
} else if (check_types) {
|
||||
_set_error("Can't get index \"" + String(member_id->name.operator String()) + "\" on base \"" +
|
||||
base_type.to_string() + "\".",
|
||||
base_type.to_string() + "\".",
|
||||
op->line);
|
||||
return DataType();
|
||||
}
|
||||
|
|
@ -6794,7 +6794,7 @@ GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
|
|||
node_type.is_constant = false;
|
||||
} else if (check_types) {
|
||||
_set_error("Can't get index \"" + String(cn->value) + "\" on base \"" +
|
||||
base_type.to_string() + "\".",
|
||||
base_type.to_string() + "\".",
|
||||
op->line);
|
||||
return DataType();
|
||||
}
|
||||
|
|
@ -7388,8 +7388,8 @@ GDScriptParser::DataType GDScriptParser::_reduce_function_call_type(const Operat
|
|||
// Supertypes are acceptable for dynamic compliance
|
||||
if (!_is_type_compatible(par_type, arg_types[i - arg_diff])) {
|
||||
_set_error("At \"" + callee_name + "()\" call, argument " + itos(i - arg_diff + 1) + ". The passed argument's type (" +
|
||||
par_type.to_string() + ") doesn't match the function's expected argument type (" +
|
||||
arg_types[i - arg_diff].to_string() + ").",
|
||||
par_type.to_string() + ") doesn't match the function's expected argument type (" +
|
||||
arg_types[i - arg_diff].to_string() + ").",
|
||||
p_call->line);
|
||||
return DataType();
|
||||
} else {
|
||||
|
|
@ -7873,7 +7873,7 @@ void GDScriptParser::_check_class_level_types(ClassNode *p_class) {
|
|||
// Try with implicit conversion
|
||||
if (v.data_type.kind != DataType::BUILTIN || !_is_type_compatible(v.data_type, expr_type, true)) {
|
||||
_set_error("The assigned expression's type (" + expr_type.to_string() + ") doesn't match the variable's type (" +
|
||||
v.data_type.to_string() + ").",
|
||||
v.data_type.to_string() + ").",
|
||||
v.line);
|
||||
return;
|
||||
}
|
||||
|
|
@ -7918,7 +7918,7 @@ void GDScriptParser::_check_class_level_types(ClassNode *p_class) {
|
|||
DataType export_type = _type_from_property(v._export);
|
||||
if (!_is_type_compatible(v.data_type, export_type, true)) {
|
||||
_set_error("The export hint's type (" + export_type.to_string() + ") doesn't match the variable's type (" +
|
||||
v.data_type.to_string() + ").",
|
||||
v.data_type.to_string() + ").",
|
||||
v.line);
|
||||
return;
|
||||
}
|
||||
|
|
@ -7939,14 +7939,14 @@ void GDScriptParser::_check_class_level_types(ClassNode *p_class) {
|
|||
if (setter->get_required_argument_count() != 1 &&
|
||||
!(setter->get_required_argument_count() == 0 && setter->default_values.size() > 0)) {
|
||||
_set_error("The setter function needs to receive exactly 1 argument. See \"" + setter->name +
|
||||
"()\" definition at line " + itos(setter->line) + ".",
|
||||
"()\" definition at line " + itos(setter->line) + ".",
|
||||
v.line);
|
||||
return;
|
||||
}
|
||||
if (!_is_type_compatible(v.data_type, setter->argument_types[0])) {
|
||||
_set_error("The setter argument's type (" + setter->argument_types[0].to_string() +
|
||||
") doesn't match the variable's type (" + v.data_type.to_string() + "). See \"" +
|
||||
setter->name + "()\" definition at line " + itos(setter->line) + ".",
|
||||
") doesn't match the variable's type (" + v.data_type.to_string() + "). See \"" +
|
||||
setter->name + "()\" definition at line " + itos(setter->line) + ".",
|
||||
v.line);
|
||||
return;
|
||||
}
|
||||
|
|
@ -7958,14 +7958,14 @@ void GDScriptParser::_check_class_level_types(ClassNode *p_class) {
|
|||
|
||||
if (getter->get_required_argument_count() != 0) {
|
||||
_set_error("The getter function can't receive arguments. See \"" + getter->name +
|
||||
"()\" definition at line " + itos(getter->line) + ".",
|
||||
"()\" definition at line " + itos(getter->line) + ".",
|
||||
v.line);
|
||||
return;
|
||||
}
|
||||
if (!_is_type_compatible(v.data_type, getter->get_datatype())) {
|
||||
_set_error("The getter return type (" + getter->get_datatype().to_string() +
|
||||
") doesn't match the variable's type (" + v.data_type.to_string() +
|
||||
"). See \"" + getter->name + "()\" definition at line " + itos(getter->line) + ".",
|
||||
") doesn't match the variable's type (" + v.data_type.to_string() +
|
||||
"). See \"" + getter->name + "()\" definition at line " + itos(getter->line) + ".",
|
||||
v.line);
|
||||
return;
|
||||
}
|
||||
|
|
@ -8088,7 +8088,7 @@ void GDScriptParser::_check_function_types(FunctionNode *p_function) {
|
|||
if (!_is_type_compatible(p_function->argument_types[i], def_type, true)) {
|
||||
String arg_name = p_function->arguments[i];
|
||||
_set_error("Value type (" + def_type.to_string() + ") doesn't match the type of argument '" +
|
||||
arg_name + "' (" + p_function->argument_types[i].to_string() + ").",
|
||||
arg_name + "' (" + p_function->argument_types[i].to_string() + ").",
|
||||
p_function->line);
|
||||
}
|
||||
}
|
||||
|
|
@ -8301,7 +8301,7 @@ void GDScriptParser::_check_block_types(BlockNode *p_block) {
|
|||
// Try implicit conversion
|
||||
if (lv->datatype.kind != DataType::BUILTIN || !_is_type_compatible(lv->datatype, assign_type, true)) {
|
||||
_set_error("The assigned value type (" + assign_type.to_string() + ") doesn't match the variable's type (" +
|
||||
lv->datatype.to_string() + ").",
|
||||
lv->datatype.to_string() + ").",
|
||||
lv->line);
|
||||
return;
|
||||
}
|
||||
|
|
@ -8407,7 +8407,7 @@ void GDScriptParser::_check_block_types(BlockNode *p_block) {
|
|||
|
||||
if (check_types && !valid) {
|
||||
_set_error("Invalid operand types (\"" + lh_type.to_string() + "\" and \"" + arg_type.to_string() +
|
||||
"\") to assignment operator \"" + Variant::get_operator_name(oper) + "\".",
|
||||
"\") to assignment operator \"" + Variant::get_operator_name(oper) + "\".",
|
||||
op->line);
|
||||
return;
|
||||
}
|
||||
|
|
@ -8439,7 +8439,7 @@ void GDScriptParser::_check_block_types(BlockNode *p_block) {
|
|||
// Try implicit conversion
|
||||
if (lh_type.kind != DataType::BUILTIN || !_is_type_compatible(lh_type, rh_type, true)) {
|
||||
_set_error("The assigned value's type (" + rh_type.to_string() + ") doesn't match the variable's type (" +
|
||||
lh_type.to_string() + ").",
|
||||
lh_type.to_string() + ").",
|
||||
op->line);
|
||||
return;
|
||||
}
|
||||
|
|
@ -8548,7 +8548,7 @@ void GDScriptParser::_check_block_types(BlockNode *p_block) {
|
|||
|
||||
if (!_is_type_compatible(function_type, ret_type)) {
|
||||
_set_error("The returned value type (" + ret_type.to_string() + ") doesn't match the function return type (" +
|
||||
function_type.to_string() + ").",
|
||||
function_type.to_string() + ").",
|
||||
cf->line, cf->column);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue