blob: 4d2637c6045cc0b5f0bf8e415b4da1f759b77c24 [file] [log] [blame] [edit]
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'dart:convert';
import 'dart:developer';
// TODO: https://github.com/dart-lang/webdev/issues/2508
// ignore: deprecated_member_use
import 'dart:html';
void main() {
print('Initial Print :)');
registerExtension('ext.print', (_, __) async {
print('Hello World !! :)');
return ServiceExtensionResponse.result(json.encode({'success': true}));
});
document.body!.append(SpanElement()..text = 'Hello World!!');
var count = 0;
Timer.periodic(const Duration(seconds: 1), (_) {
print('Counter is now: ${++count}');
});
}