work on displaying task errors

This commit is contained in:
Mark Harrah 2011-03-20 22:54:01 -04:00
parent cacd1a5be8
commit 95e5206c3f
1 changed files with 1 additions and 0 deletions

View File

@ -180,6 +180,7 @@ trait Init[Scope]
def dependsOn: Seq[ScopedKey[_]] = remove(init.dependsOn, key)
def mapReferenced(g: MapScoped): Setting[T] = new Setting(key, init mapReferenced g)
def mapKey(g: MapScoped): Setting[T] = new Setting(g(key), init)
def mapInit(f: (ScopedKey[T], T) => T): Setting[T] = new Setting(key, init.map(t => f(key,t)))
override def toString = "setting(" + key + ")"
}