| Index: utils/tests/template/test_with.dart
|
| diff --git a/utils/tests/template/test_with.dart b/utils/tests/template/test_with.dart
|
| deleted file mode 100644
|
| index 5e728eff4ac755731399068a604552ee39d4d60a..0000000000000000000000000000000000000000
|
| --- a/utils/tests/template/test_with.dart
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -// Sample for #with templates:
|
| -//
|
| -// productview.tmpl
|
| -// productview2.tmpl
|
| -
|
| -
|
| -import 'dart:html';
|
| -part 'productview.dart';
|
| -
|
| -class Person {
|
| - String name;
|
| - int age;
|
| -
|
| - Person(this.name, this.age);
|
| -}
|
| -
|
| -void main() {
|
| - // Simple template.
|
| - Person person = new Person("Terry Lucas", 52);
|
| - ProductView view = new ProductView(person);
|
| - document.body.elements.add(view.root);
|
| -}
|
| -
|
|
|