itay / node-cover

Native JavaScript Code Coverage
http://www.cover.io
165 stars 17 forks source link

Instrument UnaryStatement and Identifier in certain context. #20

Closed zjj010104 closed 12 years ago

zjj010104 commented 12 years ago

For example:

if (id) { //... }

will be instrumented:

(function() { if (__expression_xxx(0), id) { __block_yyy(0); { //... } } })();