(pos ast.PositionHolder)
| 95 | } |
| 96 | |
| 97 | func eline(pos ast.PositionHolder) int { |
| 98 | line := pos.LastLine() |
| 99 | if line == 0 { |
| 100 | return pos.Line() |
| 101 | } |
| 102 | return line |
| 103 | } |
| 104 | |
| 105 | func savereg(ec *expcontext, reg int) int { |
| 106 | if ec.ctype != ecLocal || ec.reg == regNotDefined { |
no test coverage detected
searching dependent graphs…