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

Side by Side Diff: utils/tests/template/test_simple.dart

Issue 9695048: Template parser (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix GIT mixup - ugh Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Sample for testing templates:
2 //
3 // name_entry.tmpl
4 // name_entry2.tmpl
5 // name_entry_css.tmpl
6
7 #import('dart:html');
8 #source('name_entry.dart');
9
10 void main() {
11 // Simple template.
12 var x = new NameEntry("Terry Lucas", 52);
13 var y = x.root;
14 document.body.elements.add(y);
15 }
16
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698