Describe the bug
code

result

It can be seen that HttpOperationPathParameter.allowReserved is true.
But if dev call getPathParamOptions on the HttpOperationPathParameter.param, the result is undefined.
This appears to be an inconsistency. It does not block anything. We just use HttpOperationPathParameter.allowReserved.
Reproduction
URI template operation like below
@route("/contoso/{+group}")
interface ServerOp {
get(group: string): OkResponse | NoContentResponse;
}
Checklist
Describe the bug
code

result

It can be seen that
HttpOperationPathParameter.allowReservedistrue.But if dev call
getPathParamOptionson theHttpOperationPathParameter.param, the result isundefined.This appears to be an inconsistency. It does not block anything. We just use
HttpOperationPathParameter.allowReserved.Reproduction
URI template operation like below
Checklist