This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fn fail( | |
| arena_allocator: *std.heap.ArenaAllocator, | |
| err: compiler.stage.CommonErrorContext, | |
| source_files: []project.SourceFile, | |
| ) !void { | |
| const allocator = arena_allocator.allocator(); | |
| var err_start_char: usize = undefined; | |
| const source_file: project.SourceFile = file: { | |
| for (source_files) |source_file| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const std = @import("std"); | |
| const ast = @import("../repr/root.zig").ast; | |
| const stage = @import("root.zig"); | |
| const project = @import("../../project/root.zig"); | |
| const UniqueIdentifierMap = @import("../repr/root.zig").unique_ident; | |
| // Public Interface | |
| pub const Result = stage.CommonResult(ast.Document); | |
| pub fn parse(source_file: *const project.SourceFile, arena: *std.heap.ArenaAllocator) Result { | |
| var parser = init(source_file.contents, arena); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Don't modify this file! | |
| [Slippi r18] | |
| Hash=6e7f835c95ea7892427e73723e4eb7391295b0cf | |
| Icon=slippi.png | |
| [Faster Melee 5.9B] | |
| Hash=3145c7e3433c09ce94909f5763b653b66b75658d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ch.karatojava.interpreter.InterpreterListenerAdapter; | |
| import ch.karatojava.interpreter.RunnableInterface; | |
| import ch.karatojava.kapps.Application; | |
| import ch.karatojava.kapps.KaraGuiFactory; | |
| import ch.karatojava.kapps.javakaraide.JavaKaraInterpreter; | |
| import javafx.embed.swing.JFXPanel; | |
| import javafx.scene.control.Alert; | |
| import javafx.scene.input.KeyCode; | |
| import javafx.scene.media.Media; | |
| import javafx.scene.media.MediaPlayer; |