hare

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

error.ha (337B)


      1 // SPDX-License-Identifier: GPL-3.0-only
      2 // (c) Hare authors <https://harelang.org>
      3 
      4 use cmd::haredoc::doc;
      5 use fs;
      6 use hare::module;
      7 use hare::parse;
      8 use io;
      9 use os::exec;
     10 use path;
     11 use strconv;
     12 
     13 type error = !(
     14 	exec::error |
     15 	fs::error |
     16 	io::error |
     17 	module::error |
     18 	path::error |
     19 	parse::error |
     20 	strconv::error |
     21 	doc::error |
     22 );