From 283ebc0dcbb6893a64886f26259a70622bd6ec01 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Thu, 28 Feb 2013 17:59:38 -0500 Subject: [PATCH] Export approximate command lines executed for 'doc', 'compile', and 'console' --- interface/src/main/java/xsbti/compile/CachedCompiler.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/src/main/java/xsbti/compile/CachedCompiler.java b/interface/src/main/java/xsbti/compile/CachedCompiler.java index 97a1a33b5..0722a68b9 100644 --- a/interface/src/main/java/xsbti/compile/CachedCompiler.java +++ b/interface/src/main/java/xsbti/compile/CachedCompiler.java @@ -7,5 +7,7 @@ import java.io.File; public interface CachedCompiler { + /** Returns an array of arguments representing the nearest command line equivalent of a call to run but without the command name itself.*/ + public String[] commandArguments(File[] sources); public void run(File[] sources, DependencyChanges cpChanges, AnalysisCallback callback, Logger log, Reporter delegate, CompileProgress progress); }