Add -doc-format command for the new .odin-doc file format (to be used to generate documentation tools)

This commit is contained in:
gingerBill
2021-04-18 18:33:15 +01:00
parent 8827818b1d
commit 2f1c896290
9 changed files with 1551 additions and 19 deletions
-1
View File
@@ -2461,7 +2461,6 @@ bool check_procedure_type(CheckerContext *ctx, Type *type, Ast *proc_type_node,
type->Proc.specialization_count = specialization_count;
type->Proc.diverging = pt->diverging;
type->Proc.optional_ok = optional_ok;
type->Proc.tags = pt->tags;
if (param_count > 0) {
Entity *end = params->Tuple.variables[param_count-1];