summaryrefslogtreecommitdiff
path: root/chromium/tools/json_schema_compiler/js_util.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/json_schema_compiler/js_util.py')
-rw-r--r--chromium/tools/json_schema_compiler/js_util.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/chromium/tools/json_schema_compiler/js_util.py b/chromium/tools/json_schema_compiler/js_util.py
index 2549aefa2fa..e563b8889af 100644
--- a/chromium/tools/json_schema_compiler/js_util.py
+++ b/chromium/tools/json_schema_compiler/js_util.py
@@ -101,6 +101,18 @@ class JsUtil(object):
c.Eblock(' */')
+ def AppendTypeJsDoc(self, c, namespace_name, js_type, optional):
+ """Appends the documentation for a type as a Code.
+ """
+ c.Append('@type {')
+ if optional:
+ c.Append('(', new_line=False)
+ c.Concat(self._TypeToJsType(namespace_name, js_type), new_line=False)
+ c.Append('|undefined)', new_line=False)
+ else:
+ c.Concat(self._TypeToJsType(namespace_name, js_type), new_line=False)
+ c.Append('}', new_line=False)
+
def _FunctionToJsFunction(self, namespace_name, function):
"""Converts a model.Function to a JS type (i.e., function([params])...)"""
c = Code()