removed: `#import` statement. repurposed `use` statement entirely
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Mon, 27 Mar 2023 00:05:06 +0000 (19:05 -0500)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Mon, 27 Mar 2023 00:05:06 +0000 (19:05 -0500)
commite4af97100094e25e56e5a49a4650f562f863cef5
tree84c4ff4cbbff3c704dcc5da9d7debe792f397171
parent6fcdc5ea4f6595fa3de05b58ff2b2428fdb5b53a
removed: `#import` statement. repurposed `use` statement entirely
159 files changed:
compiler/src/parser.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/result.onyx
core/container/set.onyx
core/conv/conv.onyx
core/conv/parse.onyx
core/encoding/base64.onyx
core/encoding/csv.onyx
core/encoding/ini.onyx
core/encoding/utf8.onyx
core/intrinsics/atomics.onyx
core/io/binary.onyx
core/io/reader.onyx
core/io/stdio.onyx
core/io/writer.onyx
core/misc/any_utils.onyx
core/net/tcp.onyx
core/onyx/cbindgen.onyx
core/onyx/cptr.onyx
core/os/dir.onyx
core/os/os.onyx
core/os/process.onyx
core/random/random.onyx
core/runtime/info/helper.onyx
core/runtime/info/proc_tags.onyx
core/runtime/platform/onyx/fs.onyx
core/runtime/platform/wasi/env.onyx
core/runtime/platform/wasi/platform.onyx
core/runtime/platform/wasi/wasi_fs.onyx
core/std.onyx
core/string/buffer.onyx
core/string/string.onyx
core/string/string_pool.onyx
core/sync/semaphore.onyx
core/test/testing.onyx
core/time/time.onyx
examples/04_fixed_arrays.onyx
examples/05_slices.onyx
examples/06_dynamic_arrays.onyx
examples/07_structs.onyx
examples/08_enums.onyx
examples/10_switch_statements.onyx
examples/11_map.onyx
examples/12_varargs.onyx
examples/13_use_keyword.onyx
examples/14_overloaded_procs.onyx
examples/15_polymorphic_procs.onyx
examples/16_pipe_operator.onyx
examples/17_operator_overload.onyx
examples/18_macros.onyx
examples/19_do_blocks.onyx
examples/20_auto_return.onyx
examples/21_quick_functions.onyx
examples/22_interfaces.onyx
examples/50_misc.onyx
tests/aoc-2020/day1.onyx
tests/aoc-2020/day10.onyx
tests/aoc-2020/day12.onyx
tests/aoc-2020/day13.onyx
tests/aoc-2020/day14.onyx
tests/aoc-2020/day15.onyx
tests/aoc-2020/day16.onyx
tests/aoc-2020/day18.onyx
tests/aoc-2020/day19.onyx
tests/aoc-2020/day2.onyx
tests/aoc-2020/day20.onyx
tests/aoc-2020/day21.onyx
tests/aoc-2020/day22.onyx
tests/aoc-2020/day23.onyx
tests/aoc-2020/day24.onyx
tests/aoc-2020/day25.onyx
tests/aoc-2020/day3.onyx
tests/aoc-2020/day4.onyx
tests/aoc-2020/day5.onyx
tests/aoc-2020/day6.onyx
tests/aoc-2020/day7.onyx
tests/aoc-2020/day8.onyx
tests/aoc-2020/day9.onyx
tests/aoc-2021/day01.onyx
tests/aoc-2021/day02.onyx
tests/aoc-2021/day03.onyx
tests/aoc-2021/day04.onyx
tests/aoc-2021/day05.onyx
tests/aoc-2021/day06.onyx
tests/aoc-2021/day07.onyx
tests/aoc-2021/day08.onyx
tests/aoc-2021/day09.onyx
tests/aoc-2021/day10.onyx
tests/aoc-2021/day11.onyx
tests/aoc-2021/day12.onyx
tests/aoc-2021/day13.onyx
tests/aoc-2021/day14.onyx
tests/aoc-2021/day15.onyx
tests/aoc-2021/day16.onyx
tests/aoc-2021/day17.onyx
tests/array_struct_robustness.onyx
tests/arrow_notation.onyx
tests/atomics.onyx
tests/auto_poly.onyx
tests/avl_test.onyx
tests/baked_parameters.onyx
tests/better_field_accesses.onyx
tests/bucket_array.onyx
tests/bugs/anonymous_struct_defaults.onyx
tests/bugs/defer_block_in_macro.onyx
tests/bugs/fallthrough_defer_interaction.onyx
tests/bugs/macro_auto_return_not_resolved.onyx
tests/bugs/namespace_aliasing.onyx
tests/bugs/print_formatters.onyx
tests/caller_location.onyx
tests/compile_time_procedures.onyx
tests/complicated_polymorph.onyx
tests/defer_with_continue.onyx
tests/defined_test.onyx
tests/dyn_str.onyx
tests/first_class_optional.onyx
tests/float_parsing.onyx
tests/i32map.onyx
tests/implicit_initialize_locals.onyx
tests/init_procedures.onyx
tests/interfaces.onyx
tests/lazy_iterators.onyx
tests/linked_lists.onyx
tests/named_arguments_test.onyx
tests/new_printf.onyx
tests/new_struct_behaviour.onyx
tests/operator_overload.onyx
tests/osad_test.onyx
tests/overload_precedence.onyx
tests/overload_return_type.onyx
tests/overload_with_autocast.onyx
tests/persist_locals.onyx
tests/poly_struct_in_type_info.onyx
tests/poly_structs_with_values.onyx
tests/polymorphic_array_lengths.onyx
tests/remove_test.onyx
tests/sets.onyx
tests/stdlib/base64.onyx
tests/string_stream_test.onyx
tests/struct_robustness.onyx
tests/struct_use_pointer_member.onyx
tests/switch_using_equals.onyx
tests/utf8_test.onyx
tests/vararg_test.onyx