wspr: Update VDL for new Signature support, http://go/vcl/6921
Also add placeholders for Invoker Signature and MethodSignature
methods, which still need to be implemented.
Change-Id: I6843db1a592eaeeb2c92fc0130fc6bae98599084
diff --git a/services/wsprd/ipc/server/invoker.go b/services/wsprd/ipc/server/invoker.go
index cdb873e..f60dfb0 100644
--- a/services/wsprd/ipc/server/invoker.go
+++ b/services/wsprd/ipc/server/invoker.go
@@ -103,3 +103,13 @@
func (i *invoker) VGlob() *ipc.GlobState {
return nil
}
+
+// TODO(bjornick,toddw): Implement this for JS.
+func (i *invoker) Signature(ctx ipc.ServerContext) ([]ipc.InterfaceSig, error) {
+ return nil, nil
+}
+
+// TODO(bjornick,toddw): Implement this for JS.
+func (i *invoker) MethodSignature(ctx ipc.ServerContext, method string) (ipc.MethodSig, error) {
+ return ipc.MethodSig{}, nil
+}