blob: 10130a70741f77b7ff03db7acb2e967e4fc66ef0 [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 'package:watcher/src/watch_event.dart';
import 'data/build_status.dart';
import 'data/build_target.dart';
import 'data/server_log.dart';
class DaemonBuilder {
Stream<BuildResults> get builds => Stream.empty();
Stream<ServerLog> get logs => Stream.empty();
Future<void> build(
Set<BuildTarget> targets, Iterable<WatchEvent> changes) async {}
Future<void> stop() async {}
}