aboutsummaryrefslogtreecommitdiff
path: root/javascript/app/templates/components/instance-info.hbs
blob: b5c2fdf336d9e2c8b4204ab5bee7375c85e137a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{{#if instance}}
    <div style={{style}}>
        <span class="source-code-font">
            instance {{type-signature type=instance.instanceType identifiers=identifiers currentLineNumber=currentLineNumber noExpand=true}}</span>
        (<span class="link" onclick={{action "goToDefinition"}}>Go to definition</span>)
        {{#each instance.instances as |inst|}}
            {{instance-info instance=inst identifiers=identifiers nestedLevel=nextNestedLevel currentLineNumber=currentLineNumber}}
        {{/each}}
    </div>
{{/if}}