pycapnp icon indicating copy to clipboard operation
pycapnp copied to clipboard

_InterfaceMethod does not expose annotations

Open postelrich opened this issue 5 years ago • 0 comments

The _InterfaceMethod does not expose the annotations described in the capnp schema. Particularly:

interface MyInterface $baz(7) {
  myMethod @0 (myParam :Text $baz(9)) -> () $baz(8);
}

which in this case would be $baz(8) the annotation on the method. Only param_type and result_type are exposed.

postelrich avatar Aug 19 '20 14:08 postelrich