(ctx *compileContext, typ *runtime.Type, jmp *CompiledCode)
| 740 | } |
| 741 | |
| 742 | func newRecursiveCode(ctx *compileContext, typ *runtime.Type, jmp *CompiledCode) *Opcode { |
| 743 | return &Opcode{ |
| 744 | Op: OpRecursive, |
| 745 | Type: typ, |
| 746 | Idx: opcodeOffset(ctx.ptrIndex), |
| 747 | Next: newEndOp(ctx, typ), |
| 748 | DisplayIdx: ctx.opcodeIndex, |
| 749 | Indent: ctx.indent, |
| 750 | Jmp: jmp, |
| 751 | } |
| 752 | } |
no test coverage detected
searching dependent graphs…