breaking change: top-level packages are required to be `#import`ed
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Fri, 24 Mar 2023 19:46:08 +0000 (14:46 -0500)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Fri, 24 Mar 2023 19:46:08 +0000 (14:46 -0500)
commit3dbfd29b26187bc6e1182a8c438d9d5506985e3c
tree89edd666898e990a59bbd0feff80bd89d59def6e
parent6de6f5abf497a3696a5a72447a4d4f0d21a86e96
breaking change: top-level packages are required to be `#import`ed
85 files changed:
compiler/include/astnodes.h
compiler/src/astnodes.c
compiler/src/entities.c
compiler/src/lex.c
compiler/src/parser.c
compiler/src/symres.c
compiler/src/utils.c
core/alloc/arena.onyx
core/alloc/atomic.onyx
core/alloc/fixed.onyx
core/alloc/gc.onyx
core/alloc/heap.onyx
core/alloc/logging.onyx
core/alloc/pool.onyx
core/alloc/ring.onyx
core/builtin.onyx
core/container/array.onyx
core/container/avl_tree.onyx
core/container/bucket_array.onyx
core/container/heap.onyx
core/container/iter.onyx
core/container/list.onyx
core/container/map.onyx
core/container/pair.onyx
core/container/result.onyx
core/container/set.onyx
core/conv/conv.onyx
core/conv/format.onyx
core/conv/parse.onyx
core/encoding/base64.onyx
core/encoding/csv.onyx
core/encoding/ini.onyx
core/encoding/osad.onyx
core/encoding/utf8.onyx
core/io/binary.onyx
core/io/reader.onyx
core/io/stdio.onyx
core/io/stream.onyx
core/io/writer.onyx
core/math/math.onyx
core/memory/memory.onyx
core/misc/any_utils.onyx
core/misc/arg_parse.onyx
core/net/net.onyx
core/net/tcp.onyx
core/onyx/cbindgen.onyx
core/os/dir.onyx
core/os/file.onyx
core/os/os.onyx
core/os/process.onyx
core/runtime/common.onyx
core/runtime/info/helper.onyx
core/runtime/info/proc_tags.onyx
core/runtime/platform/js/platform.onyx
core/runtime/platform/onyx/fs.onyx
core/runtime/platform/onyx/platform.onyx
core/runtime/platform/wasi/platform.onyx
core/std.onyx
core/string/buffer.onyx
core/string/string.onyx
core/string/string_pool.onyx
core/sync/mutex.onyx
core/sync/semaphore.onyx
core/test/testing.onyx
core/threads/thread.onyx
core/time/date.onyx
core/time/time.onyx
scripts/run_tests.onyx
tests/aoc-2020/day17.onyx
tests/aoc-2021/day18.onyx
tests/aoc-2021/day21.onyx
tests/arrow_notation.onyx
tests/bugs/autopoly_limits.onyx
tests/bugs/double_polymorph_yield_error.onyx
tests/bugs/method_call_source_double.onyx
tests/bugs/print_formatters.onyx
tests/char_literals.onyx
tests/dyn_str.onyx
tests/first_class_optional.onyx
tests/linked_lists.onyx
tests/no_types.onyx
tests/osad_test.onyx
tests/overload_return_type.onyx
tests/stdlib/base64.onyx
tests/utf8_test.onyx