moved more things to config, fixed package name typo

This commit is contained in:
Parker TenBroeck 2025-05-05 12:38:11 -04:00
parent a577a825f8
commit 817004672d
18 changed files with 44 additions and 33 deletions

View file

@ -1,12 +1,12 @@
package lexer;
import com.parkertenbroeck.generator.Gen;
import com.parkertenbroeck.bcms.RT;
import com.parkertenbroeck.bcms.loadtime.StateMachineClassLoader;
import com.parkertenbroeck.bcsm.RT;
import com.parkertenbroeck.bcsm.loadtime.StateMachineClassLoader;
public class Main {
public static void main(String[] args) {
RT.runWithStateMachines(StateMachineClassLoader.Config.builtin(), (Object) args);
RT.runWithStateMachines(StateMachineClassLoader.Config.builtin().write_classes("build/modified/generators/"), (Object) args);
lexer();
}