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

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

Issue 950493003: Add a basic sky-element custom element (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
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
index dd3e5eaac81e9b15066a69b8c65ac41f3e77560e..c46aeb6327e4105a03ae13e18ab9b725b25e49ba 100644
--- a/sky/tests/modules/resources/multiple-scripts-child.sky
+++ b/sky/tests/modules/resources/multiple-scripts-child.sky
@@ -2,7 +2,7 @@
<script>
final String one = 'one';
bool oneInit = false;
-void init() {
+void _init(_) {
oneInit = true;
}
final conflict = 'one';
@@ -10,7 +10,7 @@ final conflict = 'one';
<script>
final String two = 'two';
bool twoInit = false;
-void init() {
+void _init(_) {
twoInit = true;
}
final conflict = 'two';

Powered by Google App Engine
This is Rietveld 408576698