mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL flips the switch to make Sky use Dart. TBR=eseidel@chromium.org BUG=454613 Review URL: https://codereview.chromium.org/922893002
13 lines
266 B
Plaintext
13 lines
266 B
Plaintext
<html>
|
|
<import src="../resources/dump-as-text.sky" />
|
|
<import src="resources/syntax-error.sky" as="hello" />
|
|
<div id="result">PASS</div>
|
|
<script>
|
|
import "dart:sky";
|
|
|
|
void main() {
|
|
document.getElementById("result").textContent = hello.kHello;
|
|
}
|
|
</script>
|
|
</html>
|