OILS
/
spec
/
testdata
/ debug-frame-lib.ysh
View on Github
|
oils.pub
14 lines, 11 significant
1
2
proc p {
3
for fr in (vm.getDebugStack()) {
4
echo $[formatDebugFrame(fr)]
5
}
6
}
7
8
proc p2 {
9
p
10
}
11
12
p
13
echo
14
p2