Let's say I have simple logger:
void main() {
var logger = new MyLogger();
logger.log("hello Dart");
}
I want this code to run in the dev mode (VM checked mode) but i don't want it in my production code. And i want it to be "tree shaked" away with the dart2js compiler. Is there some standard way?