This allows you to develop annotation-based JavaScript-Code.
This example:
function Car(name) {
//@Präfix{"foo_"}
this.name = name;
}
will result in this object:
{
annotations: [
0: {
annotation: "Präfix",
parameters: [
0: "foo_"
]
}
],
object: "this.name = name;"
}