mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
LibWeb: Remove trailing ';' from WrapperGenerator functions.
This commit is contained in:
parent
7db74a6b3e
commit
c4226ca646
1 changed files with 3 additions and 3 deletions
|
@ -606,7 +606,7 @@ static void generate_to_cpp(SourceGenerator& generator, ParameterType& parameter
|
|||
dbgln("Unimplemented JS-to-C++ conversion: {}", parameter.type.name);
|
||||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
template<typename FunctionType>
|
||||
static void generate_argument_count_check(SourceGenerator& generator, FunctionType& function)
|
||||
|
@ -631,7 +631,7 @@ static void generate_argument_count_check(SourceGenerator& generator, FunctionTy
|
|||
return {};
|
||||
}
|
||||
)~~~");
|
||||
};
|
||||
}
|
||||
|
||||
static void generate_arguments(SourceGenerator& generator, const Vector<IDL::Parameter>& parameters, StringBuilder& arguments_builder, bool return_void = false)
|
||||
{
|
||||
|
@ -652,7 +652,7 @@ static void generate_arguments(SourceGenerator& generator, const Vector<IDL::Par
|
|||
}
|
||||
|
||||
arguments_builder.join(", ", parameter_names);
|
||||
};
|
||||
}
|
||||
|
||||
static void generate_header(const IDL::Interface& interface)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue