| 911 | } |
| 912 | |
| 913 | static VAR_EXPANDED apply_modifiers( STACK * s, int32_t n ) |
| 914 | { |
| 915 | LIST * value = stack_top( s ); |
| 916 | VAR_EXPANDED result; |
| 917 | VAR_EDITS * const edits = (VAR_EDITS *)( (LIST * *)stack_get( s ) + 1 ); |
| 918 | string buf[ 1 ]; |
| 919 | string_new( buf ); |
| 920 | result = apply_modifiers_impl( L0, buf, edits, n, list_begin( value ), |
| 921 | list_end( value ) ); |
| 922 | string_free( buf ); |
| 923 | return result; |
| 924 | } |
| 925 | |
| 926 | // STACK: LIST * modifiers[modifier_count] |
| 927 | static VAR_EXPANDED eval_modifiers( STACK * s, LIST * value, int32_t modifier_count ) |
no test coverage detected