blob: b35e19192091f8f9e2094fc733686adb0e9a49c8 [file] [log] [blame]
// Copyright (c) 2019, 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:developer';
import 'dart:html';
void main() {
var count = 0;
// For setting breakpoints.
Timer.periodic(const Duration(seconds: 1), (_) {
print('Count is: ${++count}'); // Breakpoint: printCount
});
document.body.appendText('Hello World!');
registerExtension('ext.flutter.disassemble', (_, __) async {
document.body.appendText('start disassemble ');
await Future.delayed(const Duration(seconds: 1));
document.body.appendText('end disassemble ');
return ServiceExtensionResponse.result('{}');
});
}