(n: string)
| 1145 | // not part of the service contract, so exclude when computing the RPC-method |
| 1146 | // signature used to match impls. |
| 1147 | const isInternalMarker = (n: string) => n.startsWith('mustEmbed') || n === 'testEmbeddedByValue'; |
| 1148 | |
| 1149 | // Methods directly contained by each Go struct, name-only. Built once. |
| 1150 | const methodNamesByStruct = new Map<string, Set<string>>(); |
no outgoing calls
no test coverage detected