All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fife.rsta.ac.js.resources.properties Maven / Gradle / Ivy

Go to download

A library adding code completion and other advanced features for Java, JavaScript, Perl, and other languages to RSyntaxTextArea.

There is a newer version: 3.3.0
Show newest version
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) {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy