summaryrefslogtreecommitdiff
path: root/giscanner/doctemplates/devdocs/Gjs/default.tmpl
blob: 4b08adff3feae6da5850d7b930963c2d83b792a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<%inherit file="base.tmpl"/>
% if isinstance(node, ast.Constant):
  <dl>
    <dt>Value</dt>
    <dd>
      <code data-mime="application/javascript"><!--
      -->${formatter.format_value(node)}</code>
    </dd>
  </dl>
% endif
% if isinstance(node, ast.Alias):
  <dl>
    <dt>Equivalent Type</dt>
    <dd>
      <code data-mime="application/javascript">
        % if node.target.target_fundamental:
          ${formatter.format_fundamental_type(node.target.target_fundamental)}
        % else:
          ${node.target.target_giname}
        % endif
      </code>
    </dd>
  </dl>
% endif

## This should belong in get_node_kind(), but we don't want to change the way
## all the other templates work.
<%def name="extra_class()">
  % if isinstance(node, ast.Constant):
    constant
  % elif isinstance(node, ast.Alias):
    alias
  % endif
</%def>