MCPcopy Create free account
hub / github.com/boostorg/build / compile_emit_actions

Function compile_emit_actions

v2/engine/function.c:1435–1444  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1433}
1434
1435static int compile_emit_actions( compiler * c, PARSE * parse )
1436{
1437 SUBACTION a;
1438 a.name = object_copy( parse->string );
1439 a.command = function_compile_actions( object_str( parse->string1 ),
1440 parse->file, parse->line );
1441 a.flags = parse->num;
1442 dynamic_array_push( c->actions, a );
1443 return (int)( c->actions->size - 1 );
1444}
1445
1446static JAM_FUNCTION * compile_to_function( compiler * c )
1447{

Callers 1

compile_parseFunction · 0.85

Calls 3

object_copyFunction · 0.85
function_compile_actionsFunction · 0.85
object_strFunction · 0.85

Tested by

no test coverage detected