You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Dart string interpolation works regardless of quote style. In ES6 string templates perform interpolation and old-style strings do not. The transpiler is unaware of that and therefore produces wrong result.
This:
var a = 1;
var s1 = '${a}';
var s2 = `${a}`;
Transpiles to this:
var a = 1;
var s1 = '${a}';
var s2 = '''${a}''';
Which is wrong. I believe this currently results in a bug with $event in DOM event binding.