aboutsummaryrefslogtreecommitdiff
path: root/trace-template-for-CALL.old.js
blob: 34d1be25a10b8b85fd184d03abfc6ab5c1fb1b5e (plain)
1
2
3
4
5
6
7
8
9
10
(functionObject =>
    ((...traced_args) => tracing.record_call_end(
        tracing.record_call_start(
            /*line**/LINE_NUMBER/**/,
            /*col**/COL_NUMBER/**/,
            ...traced_args),
        () => (functionObject/*optional*/(...traced_args))
    ))
    /*parented_args**/(...COMMA_SEPARATED_ARGS)/**/)
(/*expression**/FUN_EXPR/**/)