Generate java method signatures in common code
generateJavaImpl and generateJava both need to generate method
signatures. This makes it so that they can call a method on "Method"
instead of having to add all the logic themselves.
Fixes: 132654975
Test: ./test/run_all_host_tests.sh && ./test/run_all_device_tests.sh
Change-Id: I60ef33da5658139a5f40d71d5e6f6c6a2bbdbee0
diff --git a/Method.h b/Method.h
index 22dd08f..41a9d6b 100644
--- a/Method.h
+++ b/Method.h
@@ -101,6 +101,7 @@
void emitJavaArgSignature(Formatter &out) const;
void emitJavaResultSignature(Formatter &out) const;
+ void emitJavaSignature(Formatter& out) const;
const NamedReference<Type>* canElideCallback() const;