|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/CyberCP/public/static/filemanager/js/ace/snippets/ |
Upload File : |
ace.define("ace/snippets/wollok",["require","exports","module"], function(require, exports, module) {
"use strict";
exports.snippetText = "##\n\
## Basic Java packages and import\n\
snippet im\n\
import\n\
snippet w.l\n\
wollok.lang\n\
snippet w.i\n\
wollok.lib\n\
\n\
## Class and object\n\
snippet cl\n\
class ${1:`Filename(\"\", \"untitled\")`} ${2}\n\
snippet obj\n\
object ${1:`Filename(\"\", \"untitled\")`} ${2:inherits Parent}${3}\n\
snippet te\n\
test ${1:`Filename(\"\", \"untitled\")`}\n\
\n\
##\n\
## Enhancements\n\
snippet inh\n\
inherits\n\
\n\
##\n\
## Comments\n\
snippet /*\n\
/*\n\
* ${1}\n\
*/\n\
\n\
##\n\
## Control Statements\n\
snippet el\n\
else\n\
snippet if\n\
if (${1}) ${2}\n\
\n\
##\n\
## Create a Method\n\
snippet m\n\
method ${1:method}(${2}) ${5}\n\
\n\
## \n\
## Tests\n\
snippet as\n\
assert.equals(${1:expected}, ${2:actual})\n\
\n\
##\n\
## Exceptions\n\
snippet ca\n\
catch ${1:e} : (${2:Exception} ) ${3}\n\
snippet thr\n\
throw\n\
snippet try\n\
try {\n\
${3}\n\
} catch ${1:e} : ${2:Exception} {\n\
}\n\
\n\
##\n\
## Javadocs\n\
snippet /**\n\
/**\n\
* ${1}\n\
*/\n\
\n\
##\n\
## Print Methods\n\
snippet print\n\
console.println(\"${1:Message}\")\n\
\n\
##\n\
## Setter and Getter Methods\n\
snippet set\n\
method set${1:}(${2:}) {\n\
$1 = $2\n\
}\n\
snippet get\n\
method get${1:}() {\n\
return ${1:};\n\
}\n\
\n\
##\n\
## Terminate Methods or Loops\n\
snippet re\n\
return";
exports.scope = "wollok";
});