From 767ca1b248da19b754d42a814b71b43ef16090be Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Sun, 26 Mar 2017 23:00:53 -0400 Subject: Update to BJC-Utils changes --- dice-lang/src/bjc/dicelang/CompilerTweaker.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dice-lang/src/bjc/dicelang/CompilerTweaker.java') diff --git a/dice-lang/src/bjc/dicelang/CompilerTweaker.java b/dice-lang/src/bjc/dicelang/CompilerTweaker.java index 41f0c10..e04f054 100644 --- a/dice-lang/src/bjc/dicelang/CompilerTweaker.java +++ b/dice-lang/src/bjc/dicelang/CompilerTweaker.java @@ -1,6 +1,6 @@ package bjc.dicelang; -import bjc.utils.parserutils.TokenSplitter; +import bjc.utils.parserutils.splitter.SimpleTokenSplitter; /** * Contains methods for customizing the DiceLang and SCL compilers. @@ -12,7 +12,7 @@ public class CompilerTweaker { * Bits of the compiler necessary */ private DiceLangEngine eng; - private TokenSplitter opExpander; + private SimpleTokenSplitter opExpander; public CompilerTweaker(DiceLangEngine eng) { this.eng = eng; @@ -88,7 +88,7 @@ public class CompilerTweaker { * @param times * The number of times to allow defines to recur. */ - public void setDefineRecurLimit(int times) { + public static void setDefineRecurLimit(int times) { Define.MAX_RECURS = times; } } -- cgit v1.2.3