From 2772c82a8f5fc715d5a2fbe801563f36fdda9943 Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Tue, 19 Jun 2018 20:25:12 -0700 Subject: [PATCH] suppress lint error --- src/FileHandleInput.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/FileHandleInput.hh b/src/FileHandleInput.hh index d7ecaef..8be79dc 100644 --- a/src/FileHandleInput.hh +++ b/src/FileHandleInput.hh @@ -91,6 +91,7 @@ final class FileHandleInput implements InputInterface { } $data = $impl(); while ($data === false && !$this->isEof()) { + /* HHAST_IGNORE_ERROR[DontAwaitInALoop] */ await $this->waitForDataAsync(); $data = $impl(); }