I have an object like this:
resource.foo= {
name: "Foo",
desc: "Some description"
}
I find myself writing:
/**
* Some description
*/
resource.foo= {
name: "Foo",
desc: "Some description"
}
Anyway to get the desc field automatically without copying and pasting?


