mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Instead of calling the function constructor to compile script in Sky, we now concatenate strings. This has the advantage of making the line numbers generated in error messages correct but the disadvantage of being a hack. I've filed https://code.google.com/p/v8/issues/detail?id=3624 to request a proper API for this purpose. R=esprehn@chromium.org Review URL: https://codereview.chromium.org/688033003
58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
ERROR: Uncaught SyntaxError: Unexpected token <
|
|
SOURCE: http://127.0.0.1:8000/parser/script.sky:6
|
|
ERROR: Uncaught SyntaxError: Unexpected token <
|
|
SOURCE: http://127.0.0.1:8000/parser/script.sky:14
|
|
ERROR: Uncaught SyntaxError: Unexpected token <
|
|
SOURCE: http://127.0.0.1:8000/parser/script.sky:21
|
|
ERROR: Uncaught ReferenceError: TEST is not defined
|
|
SOURCE: http://127.0.0.1:8000/parser/script.sky:27
|
|
ERROR: Uncaught SyntaxError: Invalid regular expression: missing /
|
|
SOURCE: http://127.0.0.1:8000/parser/script.sky:34
|
|
ERROR: Uncaught SyntaxError: Invalid regular expression: missing /
|
|
SOURCE: http://127.0.0.1:8000/parser/script.sky:38
|
|
ERROR: Uncaught SyntaxError: Unexpected token }
|
|
SOURCE: http://127.0.0.1:8000/parser/script.sky:43
|
|
<html>
|
|
<link rel="import" href="../resources/dump-as-markup.sky"></link>
|
|
<body>
|
|
|
|
<script>
|
|
TEST <a></a>
|
|
</script>
|
|
|
|
<SCRIPT>
|
|
TEST <a></a>
|
|
</SCRIPT>
|
|
|
|
<script>
|
|
<SCRIPT>
|
|
TEST <a></a>
|
|
</SCRIPT>
|
|
</script>
|
|
|
|
<SCRIPT>
|
|
<script>
|
|
TEST <a></a>
|
|
</SCRIPT>
|
|
</script>
|
|
</SCRIPT>
|
|
|
|
<script> TEST </script>
|
|
|
|
<
|
|
script
|
|
> TEST
|
|
|
|
<script> TEST </
|
|
script>
|
|
</script>
|
|
|
|
<script> TEST </scrip>
|
|
</script>
|
|
|
|
<script> TEST <//script>
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|