org.fife.rsta.ac.js.resources.properties Maven / Gradle / Ivy
for.array.shortDesc=iterate over array
for.array.summary=for (var i = 0; i < array.length; i++) {
}
for.loop.shortDesc=iterate
for.loop.summary=for (var i = 0; i < 10; i++) {
}
for.in.shortDesc=iterate over using for in
for.in.summary=for (var iterable_element in iterable) {
}
for.in.each.shortDesc=iterate over using for each
for.in.each.summary=for each (var iterable_element in iterable) {
}
do.shortDesc=do while statement
do.summary=do {
} while(condition);
if.cond.shortDesc=if statement
if.cond.summary=if (condition) {
}
if.else.shortDesc=if else statement
if.else.summary=if (condition) {
} else {
}
while.shortDesc=while condition
while.summary=while (condition) {
}
todo=A to-do reminder
fixme=A bug that needs to be fixed
switch.case.shortDesc=switch case statement
switch.case.summary=switch (key) {
case value:
break;
default:
break;
}
try.catch.shortDesc=try catch statement
try.catch.summary=try {
}
catch (err) {
}
catch.block.shortDesc=catch block
catch.block.summary=catch (err) {
}