(level int)
| 76 | } |
| 77 | |
| 78 | func (uv *upValue) isInStackAt(level int) bool { |
| 79 | if home, ok := uv.home.(stackLocation); ok { |
| 80 | return home.index == level |
| 81 | } |
| 82 | return false |
| 83 | } |
| 84 | |
| 85 | func (uv *upValue) isInStackAbove(level int) bool { |
| 86 | if home, ok := uv.home.(stackLocation); ok { |
no outgoing calls
no test coverage detected