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

Unified Diff: test/compiler_test.dart

Issue 19497002: Reducing the amount of code we generate in the compiler: We still continue (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 5 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: test/compiler_test.dart
diff --git a/test/compiler_test.dart b/test/compiler_test.dart
index d6ff2cb0dc899788dd3ff59c9c3de55bda7c4288..4f3b8ef4949ed941b3a4bf0bb0092c45cd037814 100644
--- a/test/compiler_test.dart
+++ b/test/compiler_test.dart
@@ -25,10 +25,10 @@ main() {
'<body><x-foo></x-foo><x-bar></x-bar>'
'<script type="application/dart">main() {}</script>',
'foo.html': '<head><link rel="import" href="bar.html">'
- '<body><element name="x-foo" constructor="Foo">'
+ '<body><polymer-element name="x-foo" constructor="Foo">'
'<template><x-bar>',
'bar.html': '<head><link rel="import" href="foo.html">'
- '<body><element name="x-bar" constructor="Boo">'
+ '<body><polymer-element name="x-bar" constructor="Boo">'
'<template><x-foo>',
}, messages);
@@ -116,7 +116,7 @@ main() {
'<body><x-foo></x-foo>'
'<script type="application/dart">main() {}</script>'
'</body>',
- 'foo.html': '<body><element name="x-foo" constructor="Foo">'
+ 'foo.html': '<body><polymer-element name="x-foo" constructor="Foo">'
'<template></template>'
'<script type="application/dart" src="notfound.dart"></script>',
}, messages);
« lib/polymer_element.dart ('K') | « lib/src/info.dart ('k') | test/css_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698