accept method

  1. @override
void accept()
override

Should be invoked when results of compilation are accepted by the client.

Either accept or reject should be called after every compile call.

Implementation

@override
void accept() {
  _frontendServerClient.accept();
  if (_lastResult != null) _updateAssets(_lastResult!);
  _lastResult = null;
}