mirror of
https://github.com/sbt/sbt.git
synced 2026-08-28 17:13:56 +02:00
support lazy arguments in data type generator SafeLazy implementation that explicitly clears the reference to the thunk in API representation, drop synthetic modifier and merge deferred into abstract handle cyclic structures in API generation, display, comparison, persistence gzip compile cache file bump to 2.8.1.RC3, project definition cleanup fix main method detection to check for the right name properly view inherited definitions exclude constructors of ancestors
9 lines
161 B
Scala
9 lines
161 B
Scala
/* sbt -- Simple Build Tool
|
|
* Copyright 2008, 2009 Mark Harrah
|
|
*/
|
|
package xsbt
|
|
|
|
object Message
|
|
{
|
|
def apply[T](s: => T) = new xsbti.F0[T] { def apply() = s }
|
|
} |