From 1491ac9d4bcff8cbb941e8464a71fe100bde656d Mon Sep 17 00:00:00 2001 From: Judah Caruso Date: Fri, 23 May 2025 11:48:43 -0600 Subject: [PATCH] . --- STYLEGUIDE | 2 ++ platform/module.jai | 3 +++ 2 files changed, 5 insertions(+) diff --git a/STYLEGUIDE b/STYLEGUIDE index d02f155..f496138 100644 --- a/STYLEGUIDE +++ b/STYLEGUIDE @@ -122,6 +122,8 @@ When authoring a new module, use this as a base plate: #load "file_a.jai"; #load "file_b.jai"; + + #scope_file; #if RUN_TESTS { test :: #import "jc/test"; diff --git a/platform/module.jai b/platform/module.jai index a390cb0..b41df09 100644 --- a/platform/module.jai +++ b/platform/module.jai @@ -2,6 +2,9 @@ #load "arch.jai"; + +#scope_file; + #if RUN_TESTS { test :: #import "jc/test"; }