├── .github └── workflows │ └── build.yml ├── .gitmodules ├── LICENSE ├── README-acx.md ├── README-ain.md ├── README-alice-ar.md ├── README-asd.md ├── README-ex.md ├── README-flat.md ├── README-project.md ├── README.md ├── flake.lock ├── flake.nix ├── include ├── alice.h ├── alice │ ├── acx.h │ ├── ain.h │ ├── ar.h │ ├── ex.h │ ├── flat.h │ ├── jaf.h │ ├── port.h │ └── project.h ├── cJSON.h ├── khash.h └── little_endian.h ├── linux ├── alicetools.thumbnailer ├── servicemenus │ ├── alice-acx-decompile.desktop │ ├── alice-ain-dump.desktop │ ├── alice-archive.desktop │ ├── alice-ex-decompile.desktop │ ├── alice-image.desktop │ ├── alice-manifest-pack.desktop │ ├── alice-mod-init.desktop │ └── alice-project-build.desktop ├── technology.haniwa.alice.metainfo.xml ├── technology.haniwa.alice.yml ├── technology.haniwa.galice-mime.xml ├── technology.haniwa.galice.desktop ├── technology.haniwa.galice.metainfo.xml ├── technology.haniwa.galice.svg └── technology.haniwa.galice.yml ├── meson.build ├── src ├── cli │ ├── acx_build.c │ ├── acx_dump.c │ ├── ain_compare.c │ ├── ain_dump.c │ ├── ain_edit.c │ ├── alice.c │ ├── ar_extract.c │ ├── ar_list.c │ ├── ar_pack.c │ ├── asd_build.c │ ├── asd_dump.c │ ├── cg_convert.c │ ├── cg_thumbnail.c │ ├── cli.h │ ├── ex_build.c │ ├── ex_compare.c │ ├── ex_dump.c │ ├── ex_edit.c │ ├── flat_build.c │ ├── flat_extract.c │ ├── fnl_dump.c │ ├── project_build.c │ └── project_init.c ├── core │ ├── acx.c │ ├── ain │ │ ├── asm.c │ │ ├── asm.h │ │ ├── asm_lexer.l │ │ ├── asm_parser.y │ │ ├── dasm.c │ │ ├── dump.c │ │ ├── guess_filenames.c │ │ ├── json_dump.c │ │ ├── json_read.c │ │ ├── macros.c │ │ ├── repack.c │ │ ├── text.c │ │ ├── text_lexer.l │ │ ├── text_parser.y │ │ └── transcode.c │ ├── ar │ │ ├── extract.c │ │ ├── manifest_lexer.l │ │ ├── manifest_parser.c │ │ ├── manifest_parser.y │ │ ├── open.c │ │ ├── pack.c │ │ └── write_afa.c │ ├── cJSON.c │ ├── conv.c │ ├── csv_lexer.l │ ├── csv_parser.y │ ├── ex │ │ ├── ast.c │ │ ├── ast.h │ │ ├── dump.c │ │ ├── pack.c │ │ ├── txtex_lexer.l │ │ └── txtex_parser.y │ ├── flat.c │ ├── jaf │ │ ├── ain.c │ │ ├── ast.c │ │ ├── compile.c │ │ ├── declaration.c │ │ ├── error.c │ │ ├── eval.c │ │ ├── jaf_lexer.l │ │ ├── jaf_parser.y │ │ ├── resolve.c │ │ ├── static_analysis.c │ │ ├── types.c │ │ └── visitor.c │ ├── pje.c │ ├── port.c │ ├── scale.c │ └── util.c ├── gui │ ├── acx_model.cpp │ ├── acx_model.hpp │ ├── acx_view.cpp │ ├── acx_view.hpp │ ├── ex_table_model.cpp │ ├── ex_table_model.hpp │ ├── ex_table_view.cpp │ ├── ex_table_view.hpp │ ├── ex_view.cpp │ ├── ex_view.hpp │ ├── filesystem_view.cpp │ ├── filesystem_view.hpp │ ├── galice.cpp │ ├── galice.hpp │ ├── jaf_view.cpp │ ├── jaf_view.hpp │ ├── jam_view.cpp │ ├── jam_view.hpp │ ├── mainwindow.cpp │ ├── mainwindow.hpp │ ├── navigator.cpp │ ├── navigator.hpp │ ├── navigator_model.cpp │ ├── navigator_model.hpp │ ├── navigator_node.cpp │ ├── navigator_node.hpp │ ├── navigator_view.cpp │ ├── navigator_view.hpp │ ├── sjisdecoder.cpp │ ├── sjisdecoder.hpp │ ├── syntax_highlighter.cpp │ ├── syntax_highlighter.hpp │ ├── viewer.cpp │ └── viewer.hpp └── meson.build ├── test ├── acx │ └── .gitignore ├── ain │ └── .gitignore ├── ar │ ├── alicepack.manifest │ ├── batchpack.manifest │ ├── run-tests.sh │ └── src │ │ ├── sub │ │ └── テスト3.x │ │ ├── テスト1.x │ │ └── テスト2.x ├── ex │ ├── .gitignore │ ├── test.ex │ └── test.x ├── jaf │ ├── add.jaf │ ├── and.jaf │ ├── anda.jaf │ ├── array-arg.jaf │ ├── array-int.jaf │ ├── array-multi.jaf │ ├── array-string.jaf │ ├── bitand.jaf │ ├── bitior.jaf │ ├── bitxor.jaf │ ├── char-constant.jaf │ ├── const-global.jaf │ ├── const-local.jaf │ ├── div.jaf │ ├── diva.jaf │ ├── do-while.jaf │ ├── eq.jaf │ ├── expect │ │ ├── arith_float.jaf │ │ ├── arith_float.jam │ │ ├── arith_float.json │ │ ├── arith_int.jaf │ │ ├── arith_int.jam │ │ ├── arith_int.json │ │ ├── arith_lint.jaf │ │ ├── arith_lint.jam │ │ ├── arith_lint.json │ │ ├── array.jaf │ │ ├── array.jam │ │ ├── array.json │ │ ├── assign_float.jaf │ │ ├── assign_float.jam │ │ ├── assign_float.json │ │ ├── assign_int.jaf │ │ ├── assign_int.jam │ │ ├── assign_int.json │ │ ├── assign_int.v12.jam │ │ ├── assign_int.v12.json │ │ ├── assign_lint.jaf │ │ ├── assign_lint.jam │ │ ├── assign_lint.json │ │ ├── call.jaf │ │ ├── call.jam │ │ ├── call.json │ │ ├── call.v12.jam │ │ ├── call.v12.json │ │ ├── class.jaf │ │ ├── class.jam │ │ ├── class.json │ │ ├── class.v12.jam │ │ ├── class.v12.json │ │ ├── control.jaf │ │ ├── control.jam │ │ ├── control.json │ │ ├── delegate.jaf │ │ ├── delegate.jam │ │ ├── delegate.json │ │ ├── delegate.v12.jam │ │ ├── delegate.v12.json │ │ ├── enum.jaf │ │ ├── enum.jam │ │ ├── enum.json │ │ ├── enum.v14.jam │ │ ├── enum.v14.json │ │ ├── functype.jaf │ │ ├── functype.jam │ │ ├── functype.json │ │ ├── ifacecall.jaf │ │ ├── ifacecall.jam │ │ ├── ifacecall.json │ │ ├── incdec.jaf │ │ ├── incdec.jam │ │ ├── incdec.json │ │ ├── incdec.v12.jam │ │ ├── incdec.v12.json │ │ ├── jump.jaf │ │ ├── jump.jam │ │ ├── jump.json │ │ ├── make-test.sh │ │ ├── option.jaf │ │ ├── option.jam │ │ ├── option.json │ │ ├── option.v14.jaf │ │ ├── option.v14.jam │ │ ├── option.v14.json │ │ ├── ref.jaf │ │ ├── ref.jam │ │ ├── ref.json │ │ ├── regen.sh │ │ ├── run-tests.sh │ │ ├── string.jaf │ │ ├── string.jam │ │ ├── string.json │ │ ├── syscall.jaf │ │ ├── syscall.jam │ │ ├── syscall.json │ │ └── test-runner.sh │ ├── f-add.jaf │ ├── f-div.jaf │ ├── f-diva.jaf │ ├── f-eq.jaf │ ├── f-gt.jaf │ ├── f-gte.jaf │ ├── f-lt.jaf │ ├── f-lte.jaf │ ├── f-minusa.jaf │ ├── f-mul.jaf │ ├── f-mula.jaf │ ├── f-neq.jaf │ ├── f-plusa.jaf │ ├── f-sub.jaf │ ├── float-ref.jaf │ ├── for.jaf │ ├── functype-ref-int.jaf │ ├── functype-void.jaf │ ├── functype.jaf │ ├── goto.jaf │ ├── gt.jaf │ ├── gte.jaf │ ├── if-else.jaf │ ├── if.jaf │ ├── int-ref.jaf │ ├── iora.jaf │ ├── lint-add.jaf │ ├── lint-anda.jaf │ ├── lint-div.jaf │ ├── lint-diva.jaf │ ├── lint-iora.jaf │ ├── lint-lshifta.jaf │ ├── lint-minusa.jaf │ ├── lint-mod.jaf │ ├── lint-moda.jaf │ ├── lint-mul.jaf │ ├── lint-mula.jaf │ ├── lint-plusa.jaf │ ├── lint-rshifta.jaf │ ├── lint-sub.jaf │ ├── lint-xora.jaf │ ├── local-ref-int.jaf │ ├── local-ref-string.jaf │ ├── local-ref-struct.jaf │ ├── lshift.jaf │ ├── lshifta.jaf │ ├── lt.jaf │ ├── lte.jaf │ ├── main.jaf │ ├── message-call.jaf │ ├── message.jaf │ ├── minusa.jaf │ ├── mod.jaf │ ├── mod │ │ ├── .gitignore │ │ ├── Dohna.pje │ │ ├── README.md │ │ ├── Rance10.pje │ │ ├── build.sh │ │ ├── dohna.sh │ │ ├── dohna │ │ │ ├── .gitignore │ │ │ └── README.md │ │ ├── rance10.sh │ │ ├── rance10 │ │ │ ├── .gitignore │ │ │ └── README.md │ │ └── src │ │ │ ├── array.jaf │ │ │ ├── delegate.jaf │ │ │ ├── delegate12.jaf │ │ │ ├── delegate14.jaf │ │ │ ├── dohna.inc │ │ │ ├── dohna.jaf │ │ │ ├── rance10.inc │ │ │ └── rance10.jaf │ ├── moda.jaf │ ├── mul.jaf │ ├── mula.jaf │ ├── neq.jaf │ ├── or.jaf │ ├── override.jaf │ ├── plusa.jaf │ ├── ref-array-int.jaf │ ├── ref-array-item.jaf │ ├── ref-struct.jaf │ ├── rshift.jaf │ ├── rshifta.jaf │ ├── run-tests.sh │ ├── s-add.jaf │ ├── s-empty.jaf │ ├── s-eq.jaf │ ├── s-erase.jaf │ ├── s-find.jaf │ ├── s-from-float.jaf │ ├── s-from-int.jaf │ ├── s-getpart.jaf │ ├── s-gt.jaf │ ├── s-gte.jaf │ ├── s-length.jaf │ ├── s-lengthbyte.jaf │ ├── s-lt.jaf │ ├── s-lte.jaf │ ├── s-mod.jaf │ ├── s-neq.jaf │ ├── s-popback.jaf │ ├── s-pushback.jaf │ ├── s-to-int.jaf │ ├── seq.jaf │ ├── string-constant.jaf │ ├── string-ref.jaf │ ├── struct-arg.jaf │ ├── sub.jaf │ ├── ternary.jaf │ ├── test-runner.sh │ ├── while.jaf │ └── xora.jaf ├── rtt-acx.sh ├── rtt-ain.sh ├── rtt-ex.sh ├── test-acx.sh ├── test-ain.sh └── test-ex.sh └── windows ├── _alice-ar-extract.bat ├── icon.ico ├── icon.rc ├── modpath.iss └── setup.iss /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README-acx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/README-acx.md -------------------------------------------------------------------------------- /README-ain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/README-ain.md -------------------------------------------------------------------------------- /README-alice-ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/README-alice-ar.md -------------------------------------------------------------------------------- /README-asd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/README-asd.md -------------------------------------------------------------------------------- /README-ex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/README-ex.md -------------------------------------------------------------------------------- /README-flat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/README-flat.md -------------------------------------------------------------------------------- /README-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/README-project.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/flake.nix -------------------------------------------------------------------------------- /include/alice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice.h -------------------------------------------------------------------------------- /include/alice/acx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice/acx.h -------------------------------------------------------------------------------- /include/alice/ain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice/ain.h -------------------------------------------------------------------------------- /include/alice/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice/ar.h -------------------------------------------------------------------------------- /include/alice/ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice/ex.h -------------------------------------------------------------------------------- /include/alice/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice/flat.h -------------------------------------------------------------------------------- /include/alice/jaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice/jaf.h -------------------------------------------------------------------------------- /include/alice/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice/port.h -------------------------------------------------------------------------------- /include/alice/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/alice/project.h -------------------------------------------------------------------------------- /include/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/cJSON.h -------------------------------------------------------------------------------- /include/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/khash.h -------------------------------------------------------------------------------- /include/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/include/little_endian.h -------------------------------------------------------------------------------- /linux/alicetools.thumbnailer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/alicetools.thumbnailer -------------------------------------------------------------------------------- /linux/servicemenus/alice-acx-decompile.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/servicemenus/alice-acx-decompile.desktop -------------------------------------------------------------------------------- /linux/servicemenus/alice-ain-dump.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/servicemenus/alice-ain-dump.desktop -------------------------------------------------------------------------------- /linux/servicemenus/alice-archive.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/servicemenus/alice-archive.desktop -------------------------------------------------------------------------------- /linux/servicemenus/alice-ex-decompile.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/servicemenus/alice-ex-decompile.desktop -------------------------------------------------------------------------------- /linux/servicemenus/alice-image.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/servicemenus/alice-image.desktop -------------------------------------------------------------------------------- /linux/servicemenus/alice-manifest-pack.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/servicemenus/alice-manifest-pack.desktop -------------------------------------------------------------------------------- /linux/servicemenus/alice-mod-init.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/servicemenus/alice-mod-init.desktop -------------------------------------------------------------------------------- /linux/servicemenus/alice-project-build.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/servicemenus/alice-project-build.desktop -------------------------------------------------------------------------------- /linux/technology.haniwa.alice.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/technology.haniwa.alice.metainfo.xml -------------------------------------------------------------------------------- /linux/technology.haniwa.alice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/technology.haniwa.alice.yml -------------------------------------------------------------------------------- /linux/technology.haniwa.galice-mime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/technology.haniwa.galice-mime.xml -------------------------------------------------------------------------------- /linux/technology.haniwa.galice.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/technology.haniwa.galice.desktop -------------------------------------------------------------------------------- /linux/technology.haniwa.galice.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/technology.haniwa.galice.metainfo.xml -------------------------------------------------------------------------------- /linux/technology.haniwa.galice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/technology.haniwa.galice.svg -------------------------------------------------------------------------------- /linux/technology.haniwa.galice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/linux/technology.haniwa.galice.yml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/meson.build -------------------------------------------------------------------------------- /src/cli/acx_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/acx_build.c -------------------------------------------------------------------------------- /src/cli/acx_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/acx_dump.c -------------------------------------------------------------------------------- /src/cli/ain_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ain_compare.c -------------------------------------------------------------------------------- /src/cli/ain_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ain_dump.c -------------------------------------------------------------------------------- /src/cli/ain_edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ain_edit.c -------------------------------------------------------------------------------- /src/cli/alice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/alice.c -------------------------------------------------------------------------------- /src/cli/ar_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ar_extract.c -------------------------------------------------------------------------------- /src/cli/ar_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ar_list.c -------------------------------------------------------------------------------- /src/cli/ar_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ar_pack.c -------------------------------------------------------------------------------- /src/cli/asd_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/asd_build.c -------------------------------------------------------------------------------- /src/cli/asd_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/asd_dump.c -------------------------------------------------------------------------------- /src/cli/cg_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/cg_convert.c -------------------------------------------------------------------------------- /src/cli/cg_thumbnail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/cg_thumbnail.c -------------------------------------------------------------------------------- /src/cli/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/cli.h -------------------------------------------------------------------------------- /src/cli/ex_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ex_build.c -------------------------------------------------------------------------------- /src/cli/ex_compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ex_compare.c -------------------------------------------------------------------------------- /src/cli/ex_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ex_dump.c -------------------------------------------------------------------------------- /src/cli/ex_edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/ex_edit.c -------------------------------------------------------------------------------- /src/cli/flat_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/flat_build.c -------------------------------------------------------------------------------- /src/cli/flat_extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/flat_extract.c -------------------------------------------------------------------------------- /src/cli/fnl_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/fnl_dump.c -------------------------------------------------------------------------------- /src/cli/project_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/project_build.c -------------------------------------------------------------------------------- /src/cli/project_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/cli/project_init.c -------------------------------------------------------------------------------- /src/core/acx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/acx.c -------------------------------------------------------------------------------- /src/core/ain/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/asm.c -------------------------------------------------------------------------------- /src/core/ain/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/asm.h -------------------------------------------------------------------------------- /src/core/ain/asm_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/asm_lexer.l -------------------------------------------------------------------------------- /src/core/ain/asm_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/asm_parser.y -------------------------------------------------------------------------------- /src/core/ain/dasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/dasm.c -------------------------------------------------------------------------------- /src/core/ain/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/dump.c -------------------------------------------------------------------------------- /src/core/ain/guess_filenames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/guess_filenames.c -------------------------------------------------------------------------------- /src/core/ain/json_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/json_dump.c -------------------------------------------------------------------------------- /src/core/ain/json_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/json_read.c -------------------------------------------------------------------------------- /src/core/ain/macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/macros.c -------------------------------------------------------------------------------- /src/core/ain/repack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/repack.c -------------------------------------------------------------------------------- /src/core/ain/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/text.c -------------------------------------------------------------------------------- /src/core/ain/text_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/text_lexer.l -------------------------------------------------------------------------------- /src/core/ain/text_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/text_parser.y -------------------------------------------------------------------------------- /src/core/ain/transcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ain/transcode.c -------------------------------------------------------------------------------- /src/core/ar/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ar/extract.c -------------------------------------------------------------------------------- /src/core/ar/manifest_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ar/manifest_lexer.l -------------------------------------------------------------------------------- /src/core/ar/manifest_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ar/manifest_parser.c -------------------------------------------------------------------------------- /src/core/ar/manifest_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ar/manifest_parser.y -------------------------------------------------------------------------------- /src/core/ar/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ar/open.c -------------------------------------------------------------------------------- /src/core/ar/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ar/pack.c -------------------------------------------------------------------------------- /src/core/ar/write_afa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ar/write_afa.c -------------------------------------------------------------------------------- /src/core/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/cJSON.c -------------------------------------------------------------------------------- /src/core/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/conv.c -------------------------------------------------------------------------------- /src/core/csv_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/csv_lexer.l -------------------------------------------------------------------------------- /src/core/csv_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/csv_parser.y -------------------------------------------------------------------------------- /src/core/ex/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ex/ast.c -------------------------------------------------------------------------------- /src/core/ex/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ex/ast.h -------------------------------------------------------------------------------- /src/core/ex/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ex/dump.c -------------------------------------------------------------------------------- /src/core/ex/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ex/pack.c -------------------------------------------------------------------------------- /src/core/ex/txtex_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ex/txtex_lexer.l -------------------------------------------------------------------------------- /src/core/ex/txtex_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/ex/txtex_parser.y -------------------------------------------------------------------------------- /src/core/flat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/flat.c -------------------------------------------------------------------------------- /src/core/jaf/ain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/ain.c -------------------------------------------------------------------------------- /src/core/jaf/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/ast.c -------------------------------------------------------------------------------- /src/core/jaf/compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/compile.c -------------------------------------------------------------------------------- /src/core/jaf/declaration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/declaration.c -------------------------------------------------------------------------------- /src/core/jaf/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/error.c -------------------------------------------------------------------------------- /src/core/jaf/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/eval.c -------------------------------------------------------------------------------- /src/core/jaf/jaf_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/jaf_lexer.l -------------------------------------------------------------------------------- /src/core/jaf/jaf_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/jaf_parser.y -------------------------------------------------------------------------------- /src/core/jaf/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/resolve.c -------------------------------------------------------------------------------- /src/core/jaf/static_analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/static_analysis.c -------------------------------------------------------------------------------- /src/core/jaf/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/types.c -------------------------------------------------------------------------------- /src/core/jaf/visitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/jaf/visitor.c -------------------------------------------------------------------------------- /src/core/pje.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/pje.c -------------------------------------------------------------------------------- /src/core/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/port.c -------------------------------------------------------------------------------- /src/core/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/scale.c -------------------------------------------------------------------------------- /src/core/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/core/util.c -------------------------------------------------------------------------------- /src/gui/acx_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/acx_model.cpp -------------------------------------------------------------------------------- /src/gui/acx_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/acx_model.hpp -------------------------------------------------------------------------------- /src/gui/acx_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/acx_view.cpp -------------------------------------------------------------------------------- /src/gui/acx_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/acx_view.hpp -------------------------------------------------------------------------------- /src/gui/ex_table_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/ex_table_model.cpp -------------------------------------------------------------------------------- /src/gui/ex_table_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/ex_table_model.hpp -------------------------------------------------------------------------------- /src/gui/ex_table_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/ex_table_view.cpp -------------------------------------------------------------------------------- /src/gui/ex_table_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/ex_table_view.hpp -------------------------------------------------------------------------------- /src/gui/ex_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/ex_view.cpp -------------------------------------------------------------------------------- /src/gui/ex_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/ex_view.hpp -------------------------------------------------------------------------------- /src/gui/filesystem_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/filesystem_view.cpp -------------------------------------------------------------------------------- /src/gui/filesystem_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/filesystem_view.hpp -------------------------------------------------------------------------------- /src/gui/galice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/galice.cpp -------------------------------------------------------------------------------- /src/gui/galice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/galice.hpp -------------------------------------------------------------------------------- /src/gui/jaf_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/jaf_view.cpp -------------------------------------------------------------------------------- /src/gui/jaf_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/jaf_view.hpp -------------------------------------------------------------------------------- /src/gui/jam_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/jam_view.cpp -------------------------------------------------------------------------------- /src/gui/jam_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/jam_view.hpp -------------------------------------------------------------------------------- /src/gui/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/mainwindow.cpp -------------------------------------------------------------------------------- /src/gui/mainwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/mainwindow.hpp -------------------------------------------------------------------------------- /src/gui/navigator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/navigator.cpp -------------------------------------------------------------------------------- /src/gui/navigator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/navigator.hpp -------------------------------------------------------------------------------- /src/gui/navigator_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/navigator_model.cpp -------------------------------------------------------------------------------- /src/gui/navigator_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/navigator_model.hpp -------------------------------------------------------------------------------- /src/gui/navigator_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/navigator_node.cpp -------------------------------------------------------------------------------- /src/gui/navigator_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/navigator_node.hpp -------------------------------------------------------------------------------- /src/gui/navigator_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/navigator_view.cpp -------------------------------------------------------------------------------- /src/gui/navigator_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/navigator_view.hpp -------------------------------------------------------------------------------- /src/gui/sjisdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/sjisdecoder.cpp -------------------------------------------------------------------------------- /src/gui/sjisdecoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/sjisdecoder.hpp -------------------------------------------------------------------------------- /src/gui/syntax_highlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/syntax_highlighter.cpp -------------------------------------------------------------------------------- /src/gui/syntax_highlighter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/syntax_highlighter.hpp -------------------------------------------------------------------------------- /src/gui/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/viewer.cpp -------------------------------------------------------------------------------- /src/gui/viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/gui/viewer.hpp -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/src/meson.build -------------------------------------------------------------------------------- /test/acx/.gitignore: -------------------------------------------------------------------------------- 1 | *.acx -------------------------------------------------------------------------------- /test/ain/.gitignore: -------------------------------------------------------------------------------- 1 | *.ain -------------------------------------------------------------------------------- /test/ar/alicepack.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/ar/alicepack.manifest -------------------------------------------------------------------------------- /test/ar/batchpack.manifest: -------------------------------------------------------------------------------- 1 | #BATCHPACK 2 | batchpack.afa 3 | src,x,dst,ex 4 | -------------------------------------------------------------------------------- /test/ar/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/ar/run-tests.sh -------------------------------------------------------------------------------- /test/ar/src/sub/テスト3.x: -------------------------------------------------------------------------------- 1 | int v = 3; 2 | -------------------------------------------------------------------------------- /test/ar/src/テスト1.x: -------------------------------------------------------------------------------- 1 | int v = 1; 2 | -------------------------------------------------------------------------------- /test/ar/src/テスト2.x: -------------------------------------------------------------------------------- 1 | int v = 2; 2 | -------------------------------------------------------------------------------- /test/ex/.gitignore: -------------------------------------------------------------------------------- 1 | *.ex -------------------------------------------------------------------------------- /test/ex/test.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/ex/test.ex -------------------------------------------------------------------------------- /test/ex/test.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/ex/test.x -------------------------------------------------------------------------------- /test/jaf/add.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/add.jaf -------------------------------------------------------------------------------- /test/jaf/and.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/and.jaf -------------------------------------------------------------------------------- /test/jaf/anda.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/anda.jaf -------------------------------------------------------------------------------- /test/jaf/array-arg.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/array-arg.jaf -------------------------------------------------------------------------------- /test/jaf/array-int.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/array-int.jaf -------------------------------------------------------------------------------- /test/jaf/array-multi.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/array-multi.jaf -------------------------------------------------------------------------------- /test/jaf/array-string.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/array-string.jaf -------------------------------------------------------------------------------- /test/jaf/bitand.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/bitand.jaf -------------------------------------------------------------------------------- /test/jaf/bitior.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/bitior.jaf -------------------------------------------------------------------------------- /test/jaf/bitxor.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/bitxor.jaf -------------------------------------------------------------------------------- /test/jaf/char-constant.jaf: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return !('a' == 97); 4 | } 5 | -------------------------------------------------------------------------------- /test/jaf/const-global.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/const-global.jaf -------------------------------------------------------------------------------- /test/jaf/const-local.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/const-local.jaf -------------------------------------------------------------------------------- /test/jaf/div.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/div.jaf -------------------------------------------------------------------------------- /test/jaf/diva.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/diva.jaf -------------------------------------------------------------------------------- /test/jaf/do-while.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/do-while.jaf -------------------------------------------------------------------------------- /test/jaf/eq.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/eq.jaf -------------------------------------------------------------------------------- /test/jaf/expect/arith_float.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_float.jaf -------------------------------------------------------------------------------- /test/jaf/expect/arith_float.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_float.jam -------------------------------------------------------------------------------- /test/jaf/expect/arith_float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_float.json -------------------------------------------------------------------------------- /test/jaf/expect/arith_int.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_int.jaf -------------------------------------------------------------------------------- /test/jaf/expect/arith_int.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_int.jam -------------------------------------------------------------------------------- /test/jaf/expect/arith_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_int.json -------------------------------------------------------------------------------- /test/jaf/expect/arith_lint.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_lint.jaf -------------------------------------------------------------------------------- /test/jaf/expect/arith_lint.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_lint.jam -------------------------------------------------------------------------------- /test/jaf/expect/arith_lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/arith_lint.json -------------------------------------------------------------------------------- /test/jaf/expect/array.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/array.jaf -------------------------------------------------------------------------------- /test/jaf/expect/array.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/array.jam -------------------------------------------------------------------------------- /test/jaf/expect/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/array.json -------------------------------------------------------------------------------- /test/jaf/expect/assign_float.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_float.jaf -------------------------------------------------------------------------------- /test/jaf/expect/assign_float.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_float.jam -------------------------------------------------------------------------------- /test/jaf/expect/assign_float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_float.json -------------------------------------------------------------------------------- /test/jaf/expect/assign_int.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_int.jaf -------------------------------------------------------------------------------- /test/jaf/expect/assign_int.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_int.jam -------------------------------------------------------------------------------- /test/jaf/expect/assign_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_int.json -------------------------------------------------------------------------------- /test/jaf/expect/assign_int.v12.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_int.v12.jam -------------------------------------------------------------------------------- /test/jaf/expect/assign_int.v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_int.v12.json -------------------------------------------------------------------------------- /test/jaf/expect/assign_lint.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_lint.jaf -------------------------------------------------------------------------------- /test/jaf/expect/assign_lint.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_lint.jam -------------------------------------------------------------------------------- /test/jaf/expect/assign_lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/assign_lint.json -------------------------------------------------------------------------------- /test/jaf/expect/call.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/call.jaf -------------------------------------------------------------------------------- /test/jaf/expect/call.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/call.jam -------------------------------------------------------------------------------- /test/jaf/expect/call.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/call.json -------------------------------------------------------------------------------- /test/jaf/expect/call.v12.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/call.v12.jam -------------------------------------------------------------------------------- /test/jaf/expect/call.v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/call.v12.json -------------------------------------------------------------------------------- /test/jaf/expect/class.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/class.jaf -------------------------------------------------------------------------------- /test/jaf/expect/class.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/class.jam -------------------------------------------------------------------------------- /test/jaf/expect/class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/class.json -------------------------------------------------------------------------------- /test/jaf/expect/class.v12.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/class.v12.jam -------------------------------------------------------------------------------- /test/jaf/expect/class.v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/class.v12.json -------------------------------------------------------------------------------- /test/jaf/expect/control.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/control.jaf -------------------------------------------------------------------------------- /test/jaf/expect/control.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/control.jam -------------------------------------------------------------------------------- /test/jaf/expect/control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/control.json -------------------------------------------------------------------------------- /test/jaf/expect/delegate.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/delegate.jaf -------------------------------------------------------------------------------- /test/jaf/expect/delegate.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/delegate.jam -------------------------------------------------------------------------------- /test/jaf/expect/delegate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/delegate.json -------------------------------------------------------------------------------- /test/jaf/expect/delegate.v12.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/delegate.v12.jam -------------------------------------------------------------------------------- /test/jaf/expect/delegate.v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/delegate.v12.json -------------------------------------------------------------------------------- /test/jaf/expect/enum.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/enum.jaf -------------------------------------------------------------------------------- /test/jaf/expect/enum.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/enum.jam -------------------------------------------------------------------------------- /test/jaf/expect/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/enum.json -------------------------------------------------------------------------------- /test/jaf/expect/enum.v14.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/enum.v14.jam -------------------------------------------------------------------------------- /test/jaf/expect/enum.v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/enum.v14.json -------------------------------------------------------------------------------- /test/jaf/expect/functype.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/functype.jaf -------------------------------------------------------------------------------- /test/jaf/expect/functype.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/functype.jam -------------------------------------------------------------------------------- /test/jaf/expect/functype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/functype.json -------------------------------------------------------------------------------- /test/jaf/expect/ifacecall.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/ifacecall.jaf -------------------------------------------------------------------------------- /test/jaf/expect/ifacecall.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/ifacecall.jam -------------------------------------------------------------------------------- /test/jaf/expect/ifacecall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/ifacecall.json -------------------------------------------------------------------------------- /test/jaf/expect/incdec.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/incdec.jaf -------------------------------------------------------------------------------- /test/jaf/expect/incdec.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/incdec.jam -------------------------------------------------------------------------------- /test/jaf/expect/incdec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/incdec.json -------------------------------------------------------------------------------- /test/jaf/expect/incdec.v12.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/incdec.v12.jam -------------------------------------------------------------------------------- /test/jaf/expect/incdec.v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/incdec.v12.json -------------------------------------------------------------------------------- /test/jaf/expect/jump.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/jump.jaf -------------------------------------------------------------------------------- /test/jaf/expect/jump.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/jump.jam -------------------------------------------------------------------------------- /test/jaf/expect/jump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/jump.json -------------------------------------------------------------------------------- /test/jaf/expect/make-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/make-test.sh -------------------------------------------------------------------------------- /test/jaf/expect/option.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/option.jaf -------------------------------------------------------------------------------- /test/jaf/expect/option.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/option.jam -------------------------------------------------------------------------------- /test/jaf/expect/option.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/option.json -------------------------------------------------------------------------------- /test/jaf/expect/option.v14.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/option.v14.jaf -------------------------------------------------------------------------------- /test/jaf/expect/option.v14.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/option.v14.jam -------------------------------------------------------------------------------- /test/jaf/expect/option.v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/option.v14.json -------------------------------------------------------------------------------- /test/jaf/expect/ref.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/ref.jaf -------------------------------------------------------------------------------- /test/jaf/expect/ref.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/ref.jam -------------------------------------------------------------------------------- /test/jaf/expect/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/ref.json -------------------------------------------------------------------------------- /test/jaf/expect/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/regen.sh -------------------------------------------------------------------------------- /test/jaf/expect/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/run-tests.sh -------------------------------------------------------------------------------- /test/jaf/expect/string.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/string.jaf -------------------------------------------------------------------------------- /test/jaf/expect/string.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/string.jam -------------------------------------------------------------------------------- /test/jaf/expect/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/string.json -------------------------------------------------------------------------------- /test/jaf/expect/syscall.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/syscall.jaf -------------------------------------------------------------------------------- /test/jaf/expect/syscall.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/syscall.jam -------------------------------------------------------------------------------- /test/jaf/expect/syscall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/syscall.json -------------------------------------------------------------------------------- /test/jaf/expect/test-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/expect/test-runner.sh -------------------------------------------------------------------------------- /test/jaf/f-add.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-add.jaf -------------------------------------------------------------------------------- /test/jaf/f-div.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-div.jaf -------------------------------------------------------------------------------- /test/jaf/f-diva.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-diva.jaf -------------------------------------------------------------------------------- /test/jaf/f-eq.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-eq.jaf -------------------------------------------------------------------------------- /test/jaf/f-gt.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-gt.jaf -------------------------------------------------------------------------------- /test/jaf/f-gte.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-gte.jaf -------------------------------------------------------------------------------- /test/jaf/f-lt.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-lt.jaf -------------------------------------------------------------------------------- /test/jaf/f-lte.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-lte.jaf -------------------------------------------------------------------------------- /test/jaf/f-minusa.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-minusa.jaf -------------------------------------------------------------------------------- /test/jaf/f-mul.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-mul.jaf -------------------------------------------------------------------------------- /test/jaf/f-mula.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-mula.jaf -------------------------------------------------------------------------------- /test/jaf/f-neq.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-neq.jaf -------------------------------------------------------------------------------- /test/jaf/f-plusa.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-plusa.jaf -------------------------------------------------------------------------------- /test/jaf/f-sub.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/f-sub.jaf -------------------------------------------------------------------------------- /test/jaf/float-ref.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/float-ref.jaf -------------------------------------------------------------------------------- /test/jaf/for.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/for.jaf -------------------------------------------------------------------------------- /test/jaf/functype-ref-int.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/functype-ref-int.jaf -------------------------------------------------------------------------------- /test/jaf/functype-void.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/functype-void.jaf -------------------------------------------------------------------------------- /test/jaf/functype.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/functype.jaf -------------------------------------------------------------------------------- /test/jaf/goto.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/goto.jaf -------------------------------------------------------------------------------- /test/jaf/gt.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/gt.jaf -------------------------------------------------------------------------------- /test/jaf/gte.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/gte.jaf -------------------------------------------------------------------------------- /test/jaf/if-else.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/if-else.jaf -------------------------------------------------------------------------------- /test/jaf/if.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/if.jaf -------------------------------------------------------------------------------- /test/jaf/int-ref.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/int-ref.jaf -------------------------------------------------------------------------------- /test/jaf/iora.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/iora.jaf -------------------------------------------------------------------------------- /test/jaf/lint-add.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-add.jaf -------------------------------------------------------------------------------- /test/jaf/lint-anda.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-anda.jaf -------------------------------------------------------------------------------- /test/jaf/lint-div.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-div.jaf -------------------------------------------------------------------------------- /test/jaf/lint-diva.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-diva.jaf -------------------------------------------------------------------------------- /test/jaf/lint-iora.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-iora.jaf -------------------------------------------------------------------------------- /test/jaf/lint-lshifta.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-lshifta.jaf -------------------------------------------------------------------------------- /test/jaf/lint-minusa.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-minusa.jaf -------------------------------------------------------------------------------- /test/jaf/lint-mod.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-mod.jaf -------------------------------------------------------------------------------- /test/jaf/lint-moda.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-moda.jaf -------------------------------------------------------------------------------- /test/jaf/lint-mul.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-mul.jaf -------------------------------------------------------------------------------- /test/jaf/lint-mula.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-mula.jaf -------------------------------------------------------------------------------- /test/jaf/lint-plusa.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-plusa.jaf -------------------------------------------------------------------------------- /test/jaf/lint-rshifta.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-rshifta.jaf -------------------------------------------------------------------------------- /test/jaf/lint-sub.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-sub.jaf -------------------------------------------------------------------------------- /test/jaf/lint-xora.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lint-xora.jaf -------------------------------------------------------------------------------- /test/jaf/local-ref-int.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/local-ref-int.jaf -------------------------------------------------------------------------------- /test/jaf/local-ref-string.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/local-ref-string.jaf -------------------------------------------------------------------------------- /test/jaf/local-ref-struct.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/local-ref-struct.jaf -------------------------------------------------------------------------------- /test/jaf/lshift.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lshift.jaf -------------------------------------------------------------------------------- /test/jaf/lshifta.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lshifta.jaf -------------------------------------------------------------------------------- /test/jaf/lt.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lt.jaf -------------------------------------------------------------------------------- /test/jaf/lte.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/lte.jaf -------------------------------------------------------------------------------- /test/jaf/main.jaf: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /test/jaf/message-call.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/message-call.jaf -------------------------------------------------------------------------------- /test/jaf/message.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/message.jaf -------------------------------------------------------------------------------- /test/jaf/minusa.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/minusa.jaf -------------------------------------------------------------------------------- /test/jaf/mod.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod.jaf -------------------------------------------------------------------------------- /test/jaf/mod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/.gitignore -------------------------------------------------------------------------------- /test/jaf/mod/Dohna.pje: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/Dohna.pje -------------------------------------------------------------------------------- /test/jaf/mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/README.md -------------------------------------------------------------------------------- /test/jaf/mod/Rance10.pje: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/Rance10.pje -------------------------------------------------------------------------------- /test/jaf/mod/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/build.sh -------------------------------------------------------------------------------- /test/jaf/mod/dohna.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/dohna.sh -------------------------------------------------------------------------------- /test/jaf/mod/dohna/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /test/jaf/mod/dohna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/dohna/README.md -------------------------------------------------------------------------------- /test/jaf/mod/rance10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/rance10.sh -------------------------------------------------------------------------------- /test/jaf/mod/rance10/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /test/jaf/mod/rance10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/rance10/README.md -------------------------------------------------------------------------------- /test/jaf/mod/src/array.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/src/array.jaf -------------------------------------------------------------------------------- /test/jaf/mod/src/delegate.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/src/delegate.jaf -------------------------------------------------------------------------------- /test/jaf/mod/src/delegate12.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/src/delegate12.jaf -------------------------------------------------------------------------------- /test/jaf/mod/src/delegate14.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/src/delegate14.jaf -------------------------------------------------------------------------------- /test/jaf/mod/src/dohna.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/src/dohna.inc -------------------------------------------------------------------------------- /test/jaf/mod/src/dohna.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/src/dohna.jaf -------------------------------------------------------------------------------- /test/jaf/mod/src/rance10.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/src/rance10.inc -------------------------------------------------------------------------------- /test/jaf/mod/src/rance10.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mod/src/rance10.jaf -------------------------------------------------------------------------------- /test/jaf/moda.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/moda.jaf -------------------------------------------------------------------------------- /test/jaf/mul.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mul.jaf -------------------------------------------------------------------------------- /test/jaf/mula.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/mula.jaf -------------------------------------------------------------------------------- /test/jaf/neq.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/neq.jaf -------------------------------------------------------------------------------- /test/jaf/or.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/or.jaf -------------------------------------------------------------------------------- /test/jaf/override.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/override.jaf -------------------------------------------------------------------------------- /test/jaf/plusa.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/plusa.jaf -------------------------------------------------------------------------------- /test/jaf/ref-array-int.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/ref-array-int.jaf -------------------------------------------------------------------------------- /test/jaf/ref-array-item.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/ref-array-item.jaf -------------------------------------------------------------------------------- /test/jaf/ref-struct.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/ref-struct.jaf -------------------------------------------------------------------------------- /test/jaf/rshift.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/rshift.jaf -------------------------------------------------------------------------------- /test/jaf/rshifta.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/rshifta.jaf -------------------------------------------------------------------------------- /test/jaf/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/run-tests.sh -------------------------------------------------------------------------------- /test/jaf/s-add.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-add.jaf -------------------------------------------------------------------------------- /test/jaf/s-empty.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-empty.jaf -------------------------------------------------------------------------------- /test/jaf/s-eq.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-eq.jaf -------------------------------------------------------------------------------- /test/jaf/s-erase.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-erase.jaf -------------------------------------------------------------------------------- /test/jaf/s-find.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-find.jaf -------------------------------------------------------------------------------- /test/jaf/s-from-float.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-from-float.jaf -------------------------------------------------------------------------------- /test/jaf/s-from-int.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-from-int.jaf -------------------------------------------------------------------------------- /test/jaf/s-getpart.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-getpart.jaf -------------------------------------------------------------------------------- /test/jaf/s-gt.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-gt.jaf -------------------------------------------------------------------------------- /test/jaf/s-gte.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-gte.jaf -------------------------------------------------------------------------------- /test/jaf/s-length.jaf: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | string s = "あいうえお"; 4 | return !(s.Length() == 5); 5 | } 6 | -------------------------------------------------------------------------------- /test/jaf/s-lengthbyte.jaf: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | string s = "あいうえお"; 4 | return !(s.LengthByte() == 10); 5 | } 6 | -------------------------------------------------------------------------------- /test/jaf/s-lt.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-lt.jaf -------------------------------------------------------------------------------- /test/jaf/s-lte.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-lte.jaf -------------------------------------------------------------------------------- /test/jaf/s-mod.jaf: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return !("12%d4" % 3 == "1234"); 4 | } 5 | -------------------------------------------------------------------------------- /test/jaf/s-neq.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-neq.jaf -------------------------------------------------------------------------------- /test/jaf/s-popback.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-popback.jaf -------------------------------------------------------------------------------- /test/jaf/s-pushback.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/s-pushback.jaf -------------------------------------------------------------------------------- /test/jaf/s-to-int.jaf: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | string s = "123"; 4 | return !(s.Int() == 123); 5 | } 6 | -------------------------------------------------------------------------------- /test/jaf/seq.jaf: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 1, 0; 4 | } 5 | -------------------------------------------------------------------------------- /test/jaf/string-constant.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/string-constant.jaf -------------------------------------------------------------------------------- /test/jaf/string-ref.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/string-ref.jaf -------------------------------------------------------------------------------- /test/jaf/struct-arg.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/struct-arg.jaf -------------------------------------------------------------------------------- /test/jaf/sub.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/sub.jaf -------------------------------------------------------------------------------- /test/jaf/ternary.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/ternary.jaf -------------------------------------------------------------------------------- /test/jaf/test-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/test-runner.sh -------------------------------------------------------------------------------- /test/jaf/while.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/while.jaf -------------------------------------------------------------------------------- /test/jaf/xora.jaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/jaf/xora.jaf -------------------------------------------------------------------------------- /test/rtt-acx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/rtt-acx.sh -------------------------------------------------------------------------------- /test/rtt-ain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/rtt-ain.sh -------------------------------------------------------------------------------- /test/rtt-ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/rtt-ex.sh -------------------------------------------------------------------------------- /test/test-acx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/test-acx.sh -------------------------------------------------------------------------------- /test/test-ain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/test-ain.sh -------------------------------------------------------------------------------- /test/test-ex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/test/test-ex.sh -------------------------------------------------------------------------------- /windows/_alice-ar-extract.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/windows/_alice-ar-extract.bat -------------------------------------------------------------------------------- /windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/windows/icon.ico -------------------------------------------------------------------------------- /windows/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/windows/icon.rc -------------------------------------------------------------------------------- /windows/modpath.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/windows/modpath.iss -------------------------------------------------------------------------------- /windows/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nunuhara/alice-tools/HEAD/windows/setup.iss --------------------------------------------------------------------------------