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
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
set a breakpoint in scope.dart:1094, then ascend the call stack
to see what's happening at Scope.watch inside scope.dart:228.
inspect the 'expression' variable and you will see
"
""+(true|stringify)+""
"
yes, the double quotes here are literal. so i'm saying that expression[0] == '"' and expression[1] == '\n', etc.
the page will also display "{{true}}", which is wrong.
you shouldn't see the {{}}.
now change index.html: replace "{{true}}" by a{{true}}b.
so all i've done here is replace the double quotes with the "simpler" delimiters a and b.
reload the page and you will see no error and it will correctly display atrueb.