2012-08-16 23:41:25 -04:00
|
|
|
# Prototype
|
|
|
|
snippet proto
|
|
|
|
${1:class_name}.prototype.${2:method_name} =
|
|
|
|
function(${3:first_argument}) {
|
|
|
|
${4:// body...}
|
|
|
|
};
|
|
|
|
# Function
|
|
|
|
snippet fun
|
|
|
|
function ${1:function_name}(${2:argument}) {
|
|
|
|
${3:// body...}
|
|
|
|
}
|
|
|
|
# Anonymous Function
|
|
|
|
snippet f
|
2013-04-13 13:45:21 -04:00
|
|
|
function (${1}) {
|
2012-08-16 23:41:25 -04:00
|
|
|
${3}
|
|
|
|
}${2:;}
|
|
|
|
# Immediate function
|
|
|
|
snippet (f
|
2013-04-13 13:45:21 -04:00
|
|
|
(function (${1}) {
|
2013-07-17 19:06:05 -04:00
|
|
|
${3}
|
2012-08-16 23:41:25 -04:00
|
|
|
}(${2}));
|
|
|
|
# if
|
|
|
|
snippet if
|
|
|
|
if (${1:true}) {
|
|
|
|
${2}
|
|
|
|
}
|
|
|
|
# if ... else
|
|
|
|
snippet ife
|
|
|
|
if (${1:true}) {
|
|
|
|
${2}
|
|
|
|
} else {
|
|
|
|
${3}
|
|
|
|
}
|
|
|
|
# tertiary conditional
|
2013-04-13 13:45:21 -04:00
|
|
|
snippet ter
|
2012-08-16 23:41:25 -04:00
|
|
|
${1:/* condition */} ? ${2:a} : ${3:b}
|
|
|
|
# switch
|
|
|
|
snippet switch
|
2013-04-13 13:45:21 -04:00
|
|
|
switch (${1:expression}) {
|
2012-08-16 23:41:25 -04:00
|
|
|
case '${3:case}':
|
2013-07-17 19:06:05 -04:00
|
|
|
${4}
|
2012-08-16 23:41:25 -04:00
|
|
|
break;
|
|
|
|
${5}
|
|
|
|
default:
|
2013-07-17 19:06:05 -04:00
|
|
|
${2}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
# case
|
|
|
|
snippet case
|
|
|
|
case '${1:case}':
|
2013-07-17 19:06:05 -04:00
|
|
|
${2}
|
2012-08-16 23:41:25 -04:00
|
|
|
break;
|
|
|
|
${3}
|
|
|
|
# for (...) {...}
|
|
|
|
snippet for
|
2013-04-13 13:45:21 -04:00
|
|
|
for (var ${2:i} = 0, l = ${1:arr}.length; $2 < l; $2 ++) {
|
|
|
|
var ${3:v} = $1[$2];${4:}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
# for (...) {...} (Improved Native For-Loop)
|
|
|
|
snippet forr
|
2013-04-13 13:45:21 -04:00
|
|
|
for (var ${2:i} = ${1:arr}.length - 1; $2 >= 0; $2 --) {
|
|
|
|
var ${3:v} = $1[$2];${4:}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
# while (...) {...}
|
|
|
|
snippet wh
|
|
|
|
while (${1:/* condition */}) {
|
2013-07-17 19:06:05 -04:00
|
|
|
${2}
|
2012-08-16 23:41:25 -04:00
|
|
|
}
|
|
|
|
# try
|
|
|
|
snippet try
|
|
|
|
try {
|
2013-07-17 19:06:05 -04:00
|
|
|
${1}
|
2013-04-13 13:45:21 -04:00
|
|
|
} catch (${2:e}) {
|
2012-08-16 23:41:25 -04:00
|
|
|
${3:/* handle error */}
|
|
|
|
}
|
|
|
|
# do...while
|
|
|
|
snippet do
|
|
|
|
do {
|
2013-07-17 19:06:05 -04:00
|
|
|
${2}
|
2012-08-16 23:41:25 -04:00
|
|
|
} while (${1:/* condition */});
|
|
|
|
# Object Method
|
|
|
|
snippet :f
|
2013-04-13 13:45:21 -04:00
|
|
|
${1:method_name}: function (${2:attribute}) {
|
2012-08-16 23:41:25 -04:00
|
|
|
${4}
|
|
|
|
}${3:,}
|
|
|
|
# setTimeout function
|
|
|
|
snippet timeout
|
2013-04-13 13:45:21 -04:00
|
|
|
setTimeout(function () {${3}}${2}, ${1:10});
|
2012-08-16 23:41:25 -04:00
|
|
|
# Get Elements
|
|
|
|
snippet get
|
|
|
|
getElementsBy${1:TagName}('${2}')${3}
|
|
|
|
# Get Element
|
|
|
|
snippet gett
|
|
|
|
getElementBy${1:Id}('${2}')${3}
|
|
|
|
# console.log (Firebug)
|
|
|
|
snippet cl
|
|
|
|
console.log(${1});
|
|
|
|
# return
|
|
|
|
snippet ret
|
|
|
|
return ${1:result}
|
|
|
|
# for (property in object ) { ... }
|
|
|
|
snippet fori
|
|
|
|
for (var ${1:prop} in ${2:Things}) {
|
|
|
|
${3:$2[$1]}
|
|
|
|
}
|
|
|
|
# hasOwnProperty
|
|
|
|
snippet has
|
|
|
|
hasOwnProperty(${1})
|
|
|
|
# docstring
|
|
|
|
snippet /**
|
|
|
|
/**
|
|
|
|
* ${1:description}
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
snippet @par
|
|
|
|
@param {${1:type}} ${2:name} ${3:description}
|
|
|
|
snippet @ret
|
|
|
|
@return {${1:type}} ${2:description}
|
|
|
|
# JSON.parse
|
|
|
|
snippet jsonp
|
|
|
|
JSON.parse(${1:jstr});
|
|
|
|
# JSON.stringify
|
|
|
|
snippet jsons
|
|
|
|
JSON.stringify(${1:object});
|
|
|
|
# self-defining function
|
|
|
|
snippet sdf
|
|
|
|
var ${1:function_name} = function (${2:argument}) {
|
2013-07-17 19:06:05 -04:00
|
|
|
${3}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
$1 = function ($2) {
|
2013-07-17 19:06:05 -04:00
|
|
|
${4}
|
2012-08-16 23:41:25 -04:00
|
|
|
};
|
2013-04-13 13:45:21 -04:00
|
|
|
};
|
2012-08-16 23:41:25 -04:00
|
|
|
# singleton
|
|
|
|
snippet sing
|
|
|
|
function ${1:Singleton} (${2:argument}) {
|
|
|
|
// the cached instance
|
|
|
|
var instance;
|
|
|
|
|
|
|
|
// rewrite the constructor
|
|
|
|
$1 = function $1($2) {
|
|
|
|
return instance;
|
|
|
|
};
|
2013-07-17 19:06:05 -04:00
|
|
|
|
2012-08-16 23:41:25 -04:00
|
|
|
// carry over the prototype properties
|
|
|
|
$1.prototype = this;
|
|
|
|
|
|
|
|
// the instance
|
|
|
|
instance = new $1();
|
|
|
|
|
|
|
|
// reset the constructor pointer
|
|
|
|
instance.constructor = $1;
|
|
|
|
|
2013-07-17 19:06:05 -04:00
|
|
|
${3}
|
2012-08-16 23:41:25 -04:00
|
|
|
|
|
|
|
return instance;
|
|
|
|
}
|
2013-07-17 19:06:05 -04:00
|
|
|
# Crockford's object function
|
2013-04-13 13:45:21 -04:00
|
|
|
snippet obj
|
|
|
|
function object(o) {
|
|
|
|
function F() {}
|
|
|
|
F.prototype = o;
|
|
|
|
return new F();
|
|
|
|
}
|
2013-05-25 20:31:29 -04:00
|
|
|
# Define multiple properties
|
|
|
|
snippet props
|
|
|
|
var ${1:my_object} = Object.defineProperties(
|
2013-07-17 19:06:05 -04:00
|
|
|
${2:new Object()},
|
2013-05-25 20:31:29 -04:00
|
|
|
{
|
|
|
|
${3:property} : {
|
|
|
|
get : function $1_$3_getter() {
|
|
|
|
// getter code
|
|
|
|
},
|
|
|
|
set : function $1_$3_setter(value) {
|
|
|
|
// setter code
|
|
|
|
},
|
|
|
|
value : ${4:value},
|
|
|
|
writeable : ${5:boolean},
|
|
|
|
enumerable : ${6:boolean},
|
|
|
|
configurable : ${7:boolean}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
# Define single property
|
|
|
|
snippet prop
|
2013-07-17 19:06:05 -04:00
|
|
|
Object.defineProperty(
|
2013-05-25 20:31:29 -04:00
|
|
|
${1:object},
|
2013-07-17 19:06:05 -04:00
|
|
|
"${2:property}",
|
2013-05-25 20:31:29 -04:00
|
|
|
{
|
|
|
|
get : function $1_$2_getter() {
|
|
|
|
// getter code
|
|
|
|
},
|
|
|
|
set : function $1_$2_setter(value) {
|
|
|
|
// setter code
|
|
|
|
},
|
|
|
|
value : ${3:value},
|
|
|
|
writeable : ${4:boolean},
|
|
|
|
enumerable : ${5:boolean},
|
|
|
|
configurable : ${6:boolean}
|
|
|
|
}
|
|
|
|
);
|