(tableRegister, pending, arrayCount int, e exprDesc)
| 1089 | } |
| 1090 | |
| 1091 | func (f *function) FlushToConstructor(tableRegister, pending, arrayCount int, e exprDesc) int { |
| 1092 | f.ExpressionToNextRegister(e) |
| 1093 | if pending == listItemsPerFlush { |
| 1094 | f.setList(tableRegister, arrayCount, listItemsPerFlush) |
| 1095 | pending = 0 |
| 1096 | } |
| 1097 | return pending |
| 1098 | } |
| 1099 | |
| 1100 | func (f *function) CloseConstructor(pc, tableRegister, pending, arrayCount, hashCount int, e exprDesc) { |
| 1101 | if pending != 0 { |
no test coverage detected