]> Nishi Git Mirror - gwion.git/commit
:wrench: more format
authorJérémie Astor <fennecdjay@gmail.com>
Sun, 13 Jun 2021 14:45:01 +0000 (16:45 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Sun, 13 Jun 2021 14:45:01 +0000 (16:45 +0200)
commitae2d0ac56fdddde665e6aaff39cccf7c02686a24
treeeaf9b29f083e64d88ce6e0910efe1fa9de922361
parentd2423afbedcf94d9ff9a944c2993f36c309e4ae9
:wrench: more format
180 files changed:
.clang-format [new file with mode: 0644]
Makefile
ast
include/arg.h
include/array.h
include/clean.h
include/compile.h
include/driver.h
include/emit.h
include/env/context.h
include/env/env.h
include/env/envset.h
include/env/func.h
include/env/nspc.h
include/env/oo.h
include/env/trait.h
include/env/tuple.h
include/env/type.h
include/env/value.h
include/escape.h
include/gack.h
include/gwi.h
include/gwion.h
include/gwiondata.h
include/import.h
include/import/cdef.h
include/import/checker.h
include/import/edef.h
include/import/fdef.h
include/import/internals.h
include/import/item.h
include/import/oper.h
include/import/special.h
include/import/tdef.h
include/import/type.h
include/import/udef.h
include/instr.h
include/match.h
include/memoize.h
include/object.h
include/opcode.h
include/operator.h
include/parse.h
include/pass.h
include/plug.h
include/shreduler_private.h
include/soundinfo.h
include/specialid.h
include/template.h
include/tmp_resolve.h
include/tmpl_info.h
include/traverse.h
include/ugen.h
include/vararg.h
include/vm.h
src/arg.c
src/clean.c
src/compile.c
src/emit/emit.c
src/emit/emitter.c
src/emit/escape.c
src/emit/memoize.c
src/env/context.c
src/env/env.c
src/env/env_utils.c
src/env/envset.c
src/env/func.c
src/env/nspc.c
src/env/trait.c
src/env/tupleform.c
src/env/type.c
src/env/value.c
src/gwion.c
src/gwiondata.c
src/import/cleaner.c
src/import/import_cdef.c
src/import/import_checker.c
src/import/import_enum.c
src/import/import_fdef.c
src/import/import_internals.c
src/import/import_item.c
src/import/import_oper.c
src/import/import_special.c
src/import/import_tdef.c
src/import/import_type.c
src/import/import_udef.c
src/lib/array.c
src/lib/engine.c
src/lib/event.c
src/lib/instr.c
src/lib/lib_func.c
src/lib/modules.c
src/lib/object.c
src/lib/object_op.c
src/lib/opfunc.c
src/lib/prim.c
src/lib/prim_values.c
src/lib/ptr.c
src/lib/ref.c
src/lib/shred.c
src/lib/string.c
src/lib/tmpl_info.c
src/lib/ugen.c
src/lib/union.c
src/lib/vararg.c
src/main.c
src/parse/check.c
src/parse/check_traits.c
src/parse/compat_func.c
src/parse/did_you_mean.c
src/parse/func_operator.c
src/parse/func_resolve_tmpl.c
src/parse/operator.c
src/parse/scan0.c
src/parse/scan1.c
src/parse/scan2.c
src/parse/scanx.c
src/parse/template.c
src/parse/traverse.c
src/parse/type_decl.c
src/pass.c
src/plug.c
src/soundinfo.c
src/vm/closure.c
src/vm/driver.c
src/vm/gack.c
src/vm/shreduler.c
src/vm/vm.c
src/vm/vm_code.c
src/vm/vm_name.c
src/vm/vm_shred.c
tests/driver/simple_driver.c
tests/module/basic_module.c
tests/module/get_module.c
tests/module/module.c
tests/plug/array.c
tests/plug/callback.c
tests/plug/class_template.c
tests/plug/class_template_invalid.c
tests/plug/compile_file.c
tests/plug/compile_string.c
tests/plug/coverage.c
tests/plug/deps.c
tests/plug/end_class.c
tests/plug/enum.c
tests/plug/enum_fail.c
tests/plug/enum_fail2.c
tests/plug/enum_fail3.c
tests/plug/fptr.c
tests/plug/fptr_tmpl.c
tests/plug/func_tmpl.c
tests/plug/func_tmpl_fail.c
tests/plug/global_func.c
tests/plug/global_var.c
tests/plug/invalid_arg.c
tests/plug/invalid_array.c
tests/plug/invalid_func.c
tests/plug/invalid_type1.c
tests/plug/invalid_type2.c
tests/plug/invalid_type3.c
tests/plug/mk_type_array.c
tests/plug/pass.c
tests/plug/specialid_emit.c
tests/plug/static_string.c
tests/plug/str2decl.c
tests/plug/str2list_fail.c
tests/plug/struct.c
tests/plug/template_arg.c
tests/plug/trig.c
tests/plug/union.c
tests/plug/union_fail_exp.c
tests/plug/union_member.c
tests/plug/union_name.c
tests/plug/union_tmpl.c
tests/plug/union_tmpl_fail.c
tests/plug/union_tmpl_fail2.c
tests/plug/union_tmpl_fail3.c
tests/plug/variadic.c
tests/plug/vm_remove.c
util