-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfgldeb_stack.per
More file actions
27 lines (23 loc) · 1.02 KB
/
Copy pathfgldeb_stack.per
File metadata and controls
27 lines (23 loc) · 1.02 KB
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
LAYOUT(text="Call Stack",style="listchoice")
TABLE
{
M L Function Line Module
[m |l |funcName |lnum |modName ]
[m |l |funcName |lnum |modName ]
[m |l |funcName |lnum |modName ]
[m |l |funcName |lnum |modName ]
[m |l |funcName |lnum |modName ]
[m |l |funcName |lnum |modName ]
[m |l |funcName |lnum |modName ]
}
END
END
ATTRIBUTES
Image m = FORMONLY.marker ;
EDIT l = FORMONLY.level,noentry,comment="Level (Depth)" ;
EDIT funcName = FORMONLY.funcName,noentry;
EDIT lnum = FORMONLY.lineNumber,noentry;
EDIT modName = FORMONLY.modName,noentry;
INSTRUCTIONS
SCREEN RECORD stk (FORMONLY.*) ;
END