pc returns the program offset of the last instruction.
()
| 67 | |
| 68 | // pc returns the program offset of the last instruction. |
| 69 | func (c *codegen) pc() int { |
| 70 | return len(c.obj.Program) - 1 |
| 71 | } |
| 72 | |
| 73 | func (c *codegen) VisitBefore(node ast.Node) (ast.Visitor, ast.Node) { |
| 74 | switch n := node.(type) { |
no outgoing calls
no test coverage detected