aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/node_generator_helpers.h
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2016-05-20 13:24:59 -0700
committerGravatar murgatroid99 <mlumish@google.com>2016-05-20 13:24:59 -0700
commit210f3c4b8e3088fc26e674841c7c992ef1c7d609 (patch)
tree23a3744021eb06dc270e507faf657de950113ddc /src/compiler/node_generator_helpers.h
parent3c62c555a4d1b4385d4f8c6c9f533c34c82cec5a (diff)
Added comments to node generation, also refactored some plugin code
Diffstat (limited to 'src/compiler/node_generator_helpers.h')
-rw-r--r--src/compiler/node_generator_helpers.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/compiler/node_generator_helpers.h b/src/compiler/node_generator_helpers.h
index f41a2bcf59..5862772841 100644
--- a/src/compiler/node_generator_helpers.h
+++ b/src/compiler/node_generator_helpers.h
@@ -45,6 +45,13 @@ inline grpc::string GetJSServiceFilename(const grpc::string& filename) {
return grpc_generator::StripProto(filename) + "_grpc_pb.js";
}
+// Get leading or trailing comments in a string. Comment lines start with "// ".
+// Leading detached comments are put in in front of leading comments.
+template <typename DescriptorType>
+inline grpc::string GetNodeComments(const DescriptorType *desc, bool leading) {
+ return grpc_generator::GetPrefixedComments(desc, leading, "//");
+}
+
} // namespace grpc_node_generator
#endif // GRPC_INTERNAL_COMPILER_NODE_GENERATOR_HELPERS_H