renamed: `core/std` -> `core/module`; `--no-std` -> `--no-core`
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Sun, 19 Nov 2023 03:55:09 +0000 (21:55 -0600)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Sun, 19 Nov 2023 03:55:09 +0000 (21:55 -0600)
commit8ee326565fef61d6458a8ecb5eb3190b5d81e135
tree4d22f9fa234ead6e0d3e49f68307cc4b204063cb
parent409ed871450d83f1d8f69bceaf2d5ab5c6abf71a
renamed: `core/std` -> `core/module`; `--no-std` -> `--no-core`
115 files changed:
compiler/include/astnodes.h
compiler/src/onyx.c
core/module.onyx [new file with mode: 0644]
core/onyx/cbindgen.onyx
core/std.onyx [deleted file]
docs/ideas/mapped_directories.md
examples/01_hello_world.onyx
examples/02_variables.onyx
examples/04_fixed_arrays.onyx
examples/05_slices.onyx
examples/06_dynamic_arrays.onyx
examples/07_structs.onyx
examples/08_enums.onyx
examples/09_for_loops.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
scripts/core_tests.onyx
scripts/onyx-pkg.onyx
scripts/run_tests.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/day17.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/day03.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/aoc-2021/day18.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/caller_location.onyx
tests/compile_time_procedures.onyx
tests/complicated_polymorph.onyx
tests/defer_with_continue.onyx
tests/defined_test.onyx
tests/float_parsing.onyx
tests/hello_world.onyx
tests/i32map.onyx
tests/if_expressions.onyx
tests/implicit_initialize_locals.onyx
tests/init_procedures.onyx
tests/interfaces.onyx
tests/lazy_iterators.onyx
tests/multiple_returns_robustness.onyx
tests/named_arguments_test.onyx
tests/new_printf.onyx
tests/new_struct_behaviour.onyx
tests/operator_overload.onyx
tests/overload_precedence.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/string_stream_test.onyx
tests/struct_robustness.onyx
tests/struct_use_pointer_member.onyx
tests/switch_using_equals.onyx
tests/vararg_test.onyx