Fix improperly prompting about unused local in another modules, fix full recompile, Text editor: restructure

This commit is contained in:
Krzosa Karol
2024-06-09 12:04:38 +02:00
parent b08c7c9ce6
commit 39cb9cb4b4
22 changed files with 86 additions and 54 deletions

View File

@@ -31,10 +31,10 @@ int main(int argc, char **argv) {
LC_RegisterPackageDir(it->string.str);
}
LC_Intern name = LC_InternStrLen(package.str, (int)package.len);
LC_ASTRefList packages = LC_ParseAndResolve(name);
LC_Intern name = LC_InternStrLen(package.str, (int)package.len);
LC_ParseAndResolve(name);
if (lang->errors) return 1;
LC_String code = LC_GenerateUnityBuild(packages);
LC_String code = LC_GenerateUnityBuild();
(void)code;
}