| 576 | |
| 577 | |
| 578 | ValueExprNode* PAR_gen_field(thread_db* tdbb, StreamType stream, USHORT id, bool byId) |
| 579 | { |
| 580 | /************************************** |
| 581 | * |
| 582 | * P A R _ g e n _ f i e l d |
| 583 | * |
| 584 | ************************************** |
| 585 | * |
| 586 | * Functional description |
| 587 | * Generate a field block. |
| 588 | * |
| 589 | **************************************/ |
| 590 | SET_TDBB(tdbb); |
| 591 | |
| 592 | return FB_NEW_POOL(*tdbb->getDefaultPool()) FieldNode(*tdbb->getDefaultPool(), stream, id, byId); |
| 593 | } |
| 594 | |
| 595 | |
| 596 | ValueExprNode* PAR_make_field(thread_db* tdbb, CompilerScratch* csb, USHORT context, |
no test coverage detected