-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtranscluded_scope_14481610_2.dot
32 lines (29 loc) · 1.23 KB
/
transcluded_scope_14481610_2.dot
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
digraph d {
rankdir=LR
nodesep=0.1
node [fontname="Helvetica,Sans", fontsize=9, penwidth=0.5, margin="0.05, 0.04", height="0.2" ]
/* scopes */
node [shape=plaintext];
root [label=<<table bgcolor="beige" border="0" cellborder="1" cellpadding="2" cellspacing="0">
<tr><td port="proto">[ RootScope ]</td></tr></table>>]
parent [label=<<table bgcolor="beige" border="0" cellborder="1" cellpadding="2" cellspacing="0">
<tr><td port="proto">[ editCtrl Scope ]</td></tr>
<tr><td port="name">name</td></tr>
</table>>]
transcludedScope [label=<<table bgcolor="beige" border="0" cellborder="1" cellpadding="2" cellspacing="0">
<tr><td port="proto">[ transcluded Scope ]</td></tr>
<tr><td port="parent">$parent</td></tr>
<tr><td port="name" color="crimson"><font color="crimson"><font point-size="11">name</font></font></td></tr>
</table>>]
/* literals */
node [fillcolor=gray94, shape=box, style=filled]
Mark [label="\"Mark\""]
node [color=crimson, fontcolor=crimson]
Mark2 [label="Mark likes Angular"]
/* references */
parent:proto -> root:proto [style = dashed]
parent:name -> Mark
transcludedScope:proto -> parent:proto [style=dashed]
transcludedScope:parent -> parent:proto
transcludedScope:name -> Mark2
}