Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Unified Diff: sky/tests/modules/resources/multiple-scripts-child.sky

Issue 938623005: Allow multiple dart <script> tags in .sky files (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Update test results Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/tests/modules/resources/dart-import.dart ('k') | sky/tests/modules/resources/with-dart-import.sky » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tests/modules/resources/multiple-scripts-child.sky
diff --git a/sky/tests/modules/resources/multiple-scripts-child.sky b/sky/tests/modules/resources/multiple-scripts-child.sky
new file mode 100644
index 0000000000000000000000000000000000000000..dd3e5eaac81e9b15066a69b8c65ac41f3e77560e
--- /dev/null
+++ b/sky/tests/modules/resources/multiple-scripts-child.sky
@@ -0,0 +1,18 @@
+<sky>
+<script>
+final String one = 'one';
+bool oneInit = false;
+void init() {
+ oneInit = true;
+}
+final conflict = 'one';
+</script>
+<script>
+final String two = 'two';
+bool twoInit = false;
+void init() {
+ twoInit = true;
+}
+final conflict = 'two';
+</script>
+</sky>
« no previous file with comments | « sky/tests/modules/resources/dart-import.dart ('k') | sky/tests/modules/resources/with-dart-import.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698