rename Compile member to avoid conflict with pending change

This commit is contained in:
Mark Harrah 2010-09-04 08:25:34 -04:00
parent 050f9db501
commit 8c02f9f478
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ DiscoverSyntax + """
Classes with one or more of these annotations on the class or one of its non-private methods are included in the resulting list.
"""
def Compile = "compile"
def CompileName = "compile"
def CompileBrief = (CompileSyntax, "Incrementally compiles the provided sources.")
def CompileSyntax = Compile + " -src <paths> [-cp <paths>] [-d <path>]"
def CompileDetailed =

View File

@ -214,7 +214,7 @@ object Commands
s
}(s)
}
def compile = Command.simple(Compile, CompileBrief, CompileDetailed ) { (in, s) =>
def compile = Command.simple(CompileName, CompileBrief, CompileDetailed ) { (in, s) =>
val command = Parse.compile(in.arguments)(s.baseDir)
try {
val analysis = Build.compile(command, s.configuration)