com.hadii.clarpse.compiler.ClarpseCompiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarpse Show documentation
Show all versions of clarpse Show documentation
Clarpse is a lightweight polyglot source code analysis tool.
package com.hadii.clarpse.compiler;
/**
* Compiles source code into an object-oriented representation of the original code.
*/
public interface ClarpseCompiler {
/**
* Compiles source code.
*
* @param projectFiles Files to compile.
* @return See {@link CompileResult}
*/
CompileResult compile(ProjectFiles projectFiles) throws CompileException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy