Open tbosch opened 8 years ago
This should result in a print statement in Dart with interpolation. E.g.
print
console.log('Name:', name)
Should be transpiled into
print(`Name: ${name}`);
dart:html could be easily updated to allow logging multiple arguments. then the transformation would just need to be console.log('Name:', name) to window.console.log('Name:', name)
This should result in a
print
statement in Dart with interpolation. E.g.Should be transpiled into