You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My sources code depends on tripartite libraries, but I want to use IncrementalLauncher to analysis only source code without JAR packages, it can succeed to build model, but when I execute saveCache method, it will report erros: spoon.support.compiler.SnippetCompilationError: The import org.apache.ibatis cannot be resolved at [C@3c137612:7 at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.reportProblemsWhenCompiling(JDTBasedSpoonCompiler.java:590) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.compile(JDTBasedSpoonCompiler.java:160) at spoon.IncrementalLauncher.saveCache(IncrementalLauncher.java:267)
why IncrementalLauncher must invoke compile method? getModelBuilder().compile(SpoonModelBuilder.InputType.FILES);
if I want to build incremental model, is it the only way to use IncrementalLauncher? can I add a new CtClass or update existing CtClass from single source code string to the model built by SpoonAPI launcher?
The text was updated successfully, but these errors were encountered:
My sources code depends on tripartite libraries, but I want to use IncrementalLauncher to analysis only source code without JAR packages, it can succeed to build model, but when I execute saveCache method, it will report erros:
spoon.support.compiler.SnippetCompilationError: The import org.apache.ibatis cannot be resolved at [C@3c137612:7 at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.reportProblemsWhenCompiling(JDTBasedSpoonCompiler.java:590) at spoon.support.compiler.jdt.JDTBasedSpoonCompiler.compile(JDTBasedSpoonCompiler.java:160) at spoon.IncrementalLauncher.saveCache(IncrementalLauncher.java:267)
why IncrementalLauncher must invoke compile method?
getModelBuilder().compile(SpoonModelBuilder.InputType.FILES);
if I want to build incremental model, is it the only way to use IncrementalLauncher? can I add a new CtClass or update existing CtClass from single source code string to the model built by SpoonAPI launcher?
The text was updated successfully, but these errors were encountered: