Xtend originated from Xtext, which is the technology used to define the language and the editor. Xtend was first released as part of Xtext in the Eclipse release Indigo in June 2011. Since the Eclipse release Juno Xtend has become a standalone project. The language Xtend described here should not be confused with the older language with the same name in the Xpand project. Initially, Xtend was named Xtend2 for better distinction. The '2' was dropped soon for simplicity. With its template expressions, Xtend is meant as a replacement of the entire Xpand technology.
Philosophy
is one of the most popular programming languages ever with a large ecosystem of libraries and tools. Yet, its syntax is considered verbose by some, and some concepts are missing and only added slowly. Xtend tries to get the best of Java, but reduce syntactic noise and add new features to allow for shorter and better readable code. To make it easier to learn for Java developers, Xtend's syntax is close to Java's. Xtend maintains maximum compatibility with Java by compiling to Java code and using Java's type system. Java code and Xtend code can be mixed inside the same project at will. Using a combination of lambda expressions and extension methods, the language can be extended by means of libraries, i.e. without changing the language itself. A small standard library makes heavy use of this. The Eclipse-based Xtend IDE offers syntax highlighting, code completion, refactoring, navigation and debugging. It integrates with Eclipse's Java Development Toolkit.
Semantics
Xtend resembles Java in many regards. Here is an example Xtend file: package sample import java.util.List class Greeter
Xtend provides type inference, i.e. the type of name and the return types of the methods can be inferred from the context. Classes and methods are publicby default, fields private. Semicolons are optional. The example also shows the methodsayHello called as an extension method, i.e. like a feature of its first argument. Extension methods can also be provided by other classes or instances. Instead of using the imperative for-loop, one could use a functional style lambda expression in square brackets and call the higher-order functionforEach in extension syntax on the list: def greetThem
Note that the lambda's parameter, if not specified, is called it, which can be skipped like this in Java. Its type is inferred as string. Lambda expressions are also automatically coerced to single method interfaces, such that they can be passed e.g. as a java.lang.Comparable. Template expressions are multi-line strings within triple quotes with interpolated values in French quotes. In the example above one could write def sayHello Hello «name» !
Xtend offers intelligent white-space management - the above text will not be indented in the output - thus meeting the requirements of code generation. Further language features include multimethods, a powerful switch expression, and operator overloading by means of library methods.