-
Notifications
You must be signed in to change notification settings - Fork 7
/
ngRepeat_primitives_12977894.dot
47 lines (43 loc) · 1.96 KB
/
ngRepeat_primitives_12977894.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
digraph d {
rankdir=LR
nodesep=0.1
node [fontname="Helvetica,Sans", fontsize=10, 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">[ ParentScope ]</td></tr>
<tr><td port="list">list</td></tr>
</table>>]
child1 [label=<<table bgcolor="beige" border="0" cellborder="1" cellpadding="2" cellspacing="0">
<tr><td port="proto">[ ngRepeat ChildScope #1 ]</td></tr>
<tr><td port="item" color="firebrick"><font color="firebrick">item</font></td></tr>
</table>>]
child2 [label=<<table bgcolor="beige" border="0" cellborder="1" cellpadding="2" cellspacing="0">
<tr><td port="proto">[ ngRepeat ChildScope #2 ]</td></tr>
<tr><td port="item" color="firebrick"><font color="firebrick">item</font></td></tr>
</table>>]
child3 [label=<<table bgcolor="beige" border="0" cellborder="1" cellpadding="2" cellspacing="0">
<tr><td port="proto">[ ngRepeat ChildScope #3 ]</td></tr>
<tr><td port="item" color="firebrick"><font color="firebrick">item</font></td></tr>
</table>>]
/* objects */
list [label=<<table bgcolor="skyblue1" border="0" cellborder="1" cellpadding="2" cellspacing="0">
<tr><td>"value 1"</td><td>"value 2"</td><td>"value 3"</td></tr></table>>]
/* literals */
node [fillcolor=gray94, shape=box, style=filled]
node [color=firebrick, fontcolor=firebrick]
item1 [label="\"value 1\""]
item2 [label="\"value 2\""]
item3 [label="\"value 3\""]
/* references */
parent:proto -> root:proto [style = dashed]
parent:list -> list
child1:proto -> parent:proto [style = dashed]
child1:item -> item1
child2:proto -> parent:proto [style = dashed]
child2:item -> item2
child3:proto -> parent:proto [style = dashed]
child3:item -> item3
}