| Index: tests/html/custom/constructor_calls_created_synchronously_test.dart
|
| diff --git a/tests/html/custom/constructor_calls_created_synchronously_test.dart b/tests/html/custom/constructor_calls_created_synchronously_test.dart
|
| index edd689ad8bd75a69cf313898491b2f47b5df1b44..2238df6e2d67feb90e4ab107f06574d481984fe5 100644
|
| --- a/tests/html/custom/constructor_calls_created_synchronously_test.dart
|
| +++ b/tests/html/custom/constructor_calls_created_synchronously_test.dart
|
| @@ -7,14 +7,16 @@ import 'package:unittest/unittest.dart';
|
| import 'package:unittest/html_config.dart';
|
| import 'dart:html';
|
| import '../utils.dart';
|
| +import 'dart:mirrors';
|
|
|
| class A extends HtmlElement {
|
| static final tag = 'x-a';
|
| factory A() => new Element.tag(tag);
|
| + A.created() : super.created();
|
|
|
| static int ncallbacks = 0;
|
|
|
| - void created() {
|
| + void createdCallback() {
|
| ncallbacks++;
|
| }
|
| }
|
|
|