small improvements
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Sun, 10 Jan 2021 17:14:00 +0000 (11:14 -0600)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Sun, 10 Jan 2021 17:14:00 +0000 (11:14 -0600)
bin/onyx
misc/onyx-windows.sublime-build
onyx.exe
src/onyxsymres.c

index d037de2bac4b64a1e8e5713bc14ad51e41b2e3a1..31d17195d7c8a626b1c5925223f29a58260e0ac5 100755 (executable)
Binary files a/bin/onyx and b/bin/onyx differ
index ac349e9f348faaddf28482e1a31e7e3853a4a13e..041dd38caaf076e970fc0571db570c2c2bf66ddd 100644 (file)
@@ -1,6 +1,6 @@
 {
        "target": "exec",
-       "shell_cmd": "\\dev\\onyx\\onyx.exe -V -o \"${folder}/${file_base_name}.wasm\" \"$file\"",
+       "shell_cmd": "\\dev\\onyx\\onyx.exe -V -o \"${folder}\\\\${file_base_name}.wasm\" \"$file\"",
        "working_dir": "${folder}",
        "selector": "source.onyx",
        "file_regex": "^\\(([^:]+:[^:]+):([0-9]+),([0-9]+)\\) (.*)",
index e5ff0df105cc783a01c81133eb15ea1668e56f8b..b74bf61e3bd4eb10392040bf88958a07214391dc 100644 (file)
Binary files a/onyx.exe and b/onyx.exe differ
index e6dbfdcc408b4917dfedf13cb77c29a3cc3770f7..746f967cef10984be8c213ad5c390b03377d483c 100644 (file)
@@ -25,8 +25,8 @@ static void symres_directive_solidify(AstDirectiveSolidify** psolid);
 static void symres_statement_chain(AstNode** walker);
 static b32  symres_statement(AstNode** stmt);
 static void symres_block(AstBlock* block);
-void symres_function_header(AstFunction* func);
-void symres_function(AstFunction* func);
+static void symres_function_header(AstFunction* func);
+static void symres_function(AstFunction* func);
 static void symres_global(AstGlobal* global);
 static void symres_overloaded_function(AstOverloadedFunction* ofunc);
 static void symres_use_package(AstUsePackage* package);