Fix compiler error in benchmark (#1040)

This commit is contained in:
Daniel Chao
2025-04-11 16:08:20 -07:00
committed by GitHub
parent 854074e619
commit 38c44860d4
2 changed files with 3 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ val graal: Configuration by configurations.creating
dependencies {
jmh(projects.pklCore)
jmh(projects.pklCommonsTest)
jmh(projects.pklParser)
truffle(libs.truffleApi)
graal(libs.graalCompiler)
}

View File

@@ -24,6 +24,8 @@ import org.pkl.commons.test.FileTestUtils;
import org.pkl.commons.test.FileTestUtilsKt;
import org.pkl.core.Release;
import org.pkl.core.util.IoUtils;
import org.pkl.parser.Parser;
import org.pkl.parser.ParserError;
@SuppressWarnings("unused")
@Warmup(iterations = 5, time = 2)