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
What is the expected output? What do you see instead?
Expected: no errors. Generated java script code works like dart code
Actual:
warning :17:29: expected }, but found {
color: {{color}};
^
warning :17:35: expected :, but found }
color: {{color}};
^
warning :17:37: premature end of file unknown CSS
color: {{color}};
What version of the product are you using? On what operating system?
polymer:
description: polymer
source: hosted
version: "0.7.2+1"
Please provide any additional information below.
The text was updated successfully, but these errors were encountered:
This issue was originally filed by yurir...@gmail.com
What steps will reproduce the problem?
https://github.com/sethladd/dart-polymer-dart-examples/blob/master/web/custom_element_with_style/index.html
#message {
color: pink;
}
with
#message {
color: {{color}};
}
@observable
String color = "pink";
to MyElement class
import 'dart:io';
import 'package:polymer/component_build.dart';
main() {
build(new Options().arguments, ['web/custom_element_with_style/index.html']);
}
What is the expected output? What do you see instead?
Expected: no errors. Generated java script code works like dart code
Actual:
warning :17:29: expected }, but found {
color: {{color}};
^
warning :17:35: expected :, but found }
color: {{color}};
^
warning :17:37: premature end of file unknown CSS
color: {{color}};
What version of the product are you using? On what operating system?
polymer:
description: polymer
source: hosted
version: "0.7.2+1"
Please provide any additional information below.
The text was updated successfully, but these errors were encountered: