caseapiVersionTag,nameTag,descriptionTag,paramTag:// Do nothing.
caseapiVersionTag,nameTag,descriptionTag,paramTag,optParamTag:// Do nothing.
default:
returnnil,fmt.Errorf(`Line in prototype heading comment is formatted incorrectly; '%s' is not
recognized as a tag. Only tags can begin lines, and text that is wrapped must
...
...
@@ -222,6 +223,27 @@ func (s *SpecificationSchema) addField(tag, text string) error {
Default:nil,
Type:pt,
})
caseoptParamTag:
// NOTE: There is usually more than one `@optionalParam`, so we
// don't check length here.
split:=strings.SplitN(text," ",4)
iflen(split)<4{
returnfmt.Errorf("Optional param fields must have '<name> <type> <default-val> <description> (<default-val> currently cannot contain spaces), but got:\n%s",text)
}
pt,err:=parseParamType(split[1])
iferr!=nil{
returnerr
}
s.Params=append(s.Params,&ParamSchema{
Name:split[0],
Alias:&split[0],
Description:split[2],
Default:&split[3],
Type:pt,
})
default:
returnfmt.Errorf(`Line in prototype heading comment is formatted incorrectly; '%s' is not
recognized as a tag. Only tags can begin lines, and text that is wrapped must