Open
Description
dart2js and vm differ when printing doubles.
double x = 5.0;
print("x is $x") ;
vm : 5.0
dart2js : 5
Until Issue #15881 is address, can we give the developer a hint or warning that printing a double results in differing behavior. Giving developers early warnings when code runs differently really helps to shorten the bug cycle.