hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit c067d698ba09f685f0cb5cd66988f25e3157aec2
parent fdde559890f98e92fc4ef9ba23f896e60d65c340
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sat,  9 Dec 2023 21:14:02 -0500

cmd/{hare,haredoc}: remove unused imports

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mcmd/hare/arch.ha | 3---
Mcmd/hare/deps.ha | 1-
Mcmd/hare/util.ha | 1-
Mcmd/haredoc/doc/color.ha | 1-
Mcmd/haredoc/doc/tty.ha | 1-
Mcmd/haredoc/main.ha | 1-
Mcmd/haredoc/util.ha | 1-
7 files changed, 0 insertions(+), 9 deletions(-)

diff --git a/cmd/hare/arch.ha b/cmd/hare/arch.ha @@ -1,9 +1,6 @@ // SPDX-License-Identifier: GPL-3.0-only // (c) Hare authors <https://harelang.org> -use hare::module; -use os; - // When building the bootstrap toolchain, these values will get overwritten to // equal the values in config.mk def AARCH64_AS = "as"; diff --git a/cmd/hare/deps.ha b/cmd/hare/deps.ha @@ -6,7 +6,6 @@ use getopt; use hare::ast; use hare::module; use hare::parse; -use io; use os; use path; use sort; diff --git a/cmd/hare/util.ha b/cmd/hare/util.ha @@ -3,7 +3,6 @@ use ascii; use dirs; -use errors; use hare::module; use os; use strings; diff --git a/cmd/haredoc/doc/color.ha b/cmd/haredoc/doc/color.ha @@ -1,7 +1,6 @@ // SPDX-License-Identifier: GPL-3.0-only // (c) Hare authors <https://harelang.org> -use ascii; use fmt; use hare::unparse; use io; diff --git a/cmd/haredoc/doc/tty.ha b/cmd/haredoc/doc/tty.ha @@ -1,7 +1,6 @@ // SPDX-License-Identifier: GPL-3.0-only // (c) Hare authors <https://harelang.org> -use ascii; use bufio; use fmt; use hare::ast; diff --git a/cmd/haredoc/main.ha b/cmd/haredoc/main.ha @@ -19,7 +19,6 @@ use path; use strconv; use strings; use types; -use unix::tty; const help: []getopt::help = [ "reads and formats Hare documentation", diff --git a/cmd/haredoc/util.ha b/cmd/haredoc/util.ha @@ -3,7 +3,6 @@ use ascii; use dirs; -use errors; use hare::module; use os; use strings;