mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00
399 lines
6.5 KiB
HTML
399 lines
6.5 KiB
HTML
<!-- SAMPLE HTML WITH EMBEDDED JS -->
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<title>Test</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
var x = 1 + 1; // 0
|
|
|
|
// = Case: Arithmetic (2)
|
|
var x = 1 + // 0
|
|
1; // 1
|
|
|
|
// = Case: Arithmetic (3)
|
|
var x = 1 + // 0
|
|
1 + // 1
|
|
1; // 1
|
|
|
|
// = Case: Object (1)
|
|
var x = { // 0
|
|
// comment // 1
|
|
y : y, // 1
|
|
z : z // 1
|
|
} // 0
|
|
|
|
// = Case: Object (2)
|
|
var x = { // 0
|
|
// comment // 1
|
|
y : { // 1
|
|
z: z, // 2
|
|
w: w // 2
|
|
}, // 1
|
|
t: t // 1
|
|
} // 0
|
|
|
|
|
|
// Case: Function (1)
|
|
function $blah() { // 0
|
|
x; // 1
|
|
y; // 1
|
|
} // 0
|
|
|
|
// Case: Function (2)
|
|
var $blah = function() { // 0
|
|
x; // 1
|
|
y; // 1
|
|
} // 0
|
|
|
|
// Case: Function(3)
|
|
var x = { // 0
|
|
$blah: function() { // 1
|
|
y; // 2
|
|
} // 1
|
|
} // 0
|
|
|
|
// Case: Function(4)
|
|
function $blah( // 0
|
|
x, // 1
|
|
y, // 1
|
|
z ) { // 1
|
|
} // 0
|
|
|
|
// Case: Function (5)
|
|
function $blah( // 0
|
|
x, // 1
|
|
y, // 1
|
|
z ) { // 1
|
|
x; // 1
|
|
} // 0
|
|
|
|
|
|
|
|
// = Case: if (1)
|
|
if ( x ) { // 0
|
|
x; // 1
|
|
} // 0
|
|
|
|
// = Case: if (2)
|
|
if(x) // 0
|
|
x; // 1
|
|
y; // 0
|
|
|
|
// = Case: if (3)
|
|
if(x) // 0
|
|
{ // 0
|
|
x; // 1
|
|
} // 0
|
|
|
|
// = Case: if (4)
|
|
if( x == y && // 0
|
|
y == z || // 1
|
|
z == w) { // 1
|
|
x; // 1
|
|
} // 0
|
|
|
|
// = Case: if (4a)
|
|
if( x == y && // 0
|
|
y == z || // 1
|
|
z == w) // 1
|
|
{ // 0
|
|
x; // 1
|
|
} // 0
|
|
|
|
|
|
// = Case: if (5)
|
|
if(x) // 0
|
|
// comment // 1
|
|
y; // 1
|
|
x; // 0
|
|
|
|
|
|
|
|
// = Case: if else (1)
|
|
if ( x ) { // 0
|
|
x; // 1
|
|
} else { // 0
|
|
y; // 1
|
|
} // 0
|
|
|
|
// = Case: if else (2)
|
|
if ( x ) // 0
|
|
x; // 1
|
|
else // 0
|
|
y; // 1
|
|
|
|
// = Case: if else(3)
|
|
if(x) // 0
|
|
{ // 0
|
|
x; // 1
|
|
} // 0
|
|
else // 0
|
|
{ // 0
|
|
y; // 1
|
|
} // 0
|
|
|
|
// = Case: if elseif else (1)
|
|
if ( x ) { // 0
|
|
x; // 1
|
|
} else if ( y ) { // 0
|
|
y; // 1
|
|
} else { // 0
|
|
z; // 1
|
|
} // 0
|
|
|
|
// = Case: if elseif else (2)
|
|
if ( x ) // 0
|
|
x; // 1
|
|
else if ( y ) // 0
|
|
y; // 1
|
|
else // 0
|
|
z; // 1
|
|
|
|
// = Case: if elseif else (3)
|
|
if(x) // 0
|
|
{ // 0
|
|
x; // 1
|
|
} // 0
|
|
else if(y) // 0
|
|
{ // 0
|
|
y; // 1
|
|
} // 0
|
|
else // 0
|
|
{ // 0
|
|
z; // 1
|
|
} // 0
|
|
|
|
// = Case: for (1)
|
|
for (var i = 0; i < blah.length; i++) { // 0
|
|
blah[i]; // 1
|
|
}; // 0
|
|
|
|
// = Case: for (2)
|
|
for (var i = 0; i < blah.length; i++) // 0
|
|
blah[i]; // 1
|
|
x; // 0
|
|
|
|
// = Case: switch
|
|
switch(x) { // 0
|
|
case "y": // 0
|
|
y; // 1
|
|
break; // 1
|
|
|
|
case "z": // 0
|
|
z; // 1
|
|
break; // 1
|
|
|
|
default: // 0
|
|
w; // 1
|
|
break; // 1
|
|
}
|
|
|
|
// = Case: try (1)
|
|
try { // 0
|
|
x; // 1
|
|
} // 0
|
|
|
|
// = Case: try (2)
|
|
try // 0
|
|
x; // 1
|
|
y; // 0
|
|
|
|
// = Case: try (3)
|
|
try // 0
|
|
{ // 0
|
|
x; // 1
|
|
} // 0
|
|
|
|
// = Case: try catch (1)
|
|
try { // 0
|
|
x; // 1
|
|
} catch(e) { // 0
|
|
y; // 1
|
|
} // 0
|
|
|
|
// Case: try catch (2)
|
|
try // 0
|
|
{ // 0
|
|
x; // 1
|
|
} // 0
|
|
catch(e) // 0
|
|
{ // 0
|
|
y; // 1
|
|
} // 0
|
|
|
|
// Case: try catch (3)
|
|
try // 0
|
|
x; // 1
|
|
catch(e) // 0
|
|
y; // 1
|
|
|
|
|
|
// Case: try catch finally (1)
|
|
try { // 0
|
|
x; // 1
|
|
y; // 1
|
|
} catch(e) { // 0
|
|
x; // 1
|
|
y; // 1
|
|
} finally { // 0
|
|
x; // 1
|
|
y; // 1
|
|
}
|
|
|
|
// = Case: try catch finally (2)
|
|
try // 0
|
|
x; // 1
|
|
catch(e) // 0
|
|
y; // 1
|
|
finally // 0
|
|
z; // 1
|
|
|
|
// = Case: try catch finally (3)
|
|
try // 0
|
|
// comment // 1
|
|
x; // 1
|
|
catch(e) // 0
|
|
// comment // 1
|
|
y; // 1
|
|
finally // 1
|
|
// comment // 1
|
|
z; // 1
|
|
|
|
// = Case: Anonymous Function (1)
|
|
(function(x) { // 0
|
|
x; // 1
|
|
y; // 1
|
|
})(x); // 0
|
|
|
|
// = Case: Anonymous Function (2)
|
|
(function(x) // 0
|
|
{ // 0
|
|
x; // 1
|
|
y; // 1
|
|
})(x); // 0
|
|
|
|
// = Case: Anonymous Function (2)
|
|
(function(x) // 0
|
|
{ // 1
|
|
x; // 1
|
|
y; // 1
|
|
} // 0
|
|
)(x); // 0
|
|
|
|
// = Case: Anonymous Function (1)
|
|
(function(x) { // 0
|
|
x; // 1
|
|
y; // 1
|
|
} // 0
|
|
)(x); // 0
|
|
|
|
|
|
// = Case: COMPLEX
|
|
(function(window, undefined) { // 0
|
|
// = Class: Test // 1
|
|
// // 1
|
|
// = Description: This is a // 1
|
|
// test class. // 1
|
|
// // 1
|
|
var Test = new Class({ // 1
|
|
initialize: function() { // 2
|
|
this.test = test; // 3
|
|
}, // 2
|
|
|
|
// = Method: test // 2
|
|
// // 2
|
|
// = Description: // 2
|
|
// // 2
|
|
test: function(blah) { // 2
|
|
if(blah) { // 3
|
|
return "blah"; // 4
|
|
} else if(blah === undefined) // 3
|
|
return "blahblah"; // 4
|
|
else { // 3
|
|
// another comment. // 4
|
|
return "blahblahblah"; // 4
|
|
} // 3
|
|
|
|
var x = { // 3
|
|
y: function() { // 4
|
|
for (var i = 0; i < blah.length; i++) { // 5
|
|
blah[i]; // 6
|
|
}; // 5
|
|
} // 4
|
|
}; // 3
|
|
|
|
return new function() { // 3
|
|
}; // 3
|
|
}, // 2
|
|
|
|
// = Method: blah // 2
|
|
// // 2
|
|
// = Description: description // 2
|
|
// // 2
|
|
blah: function(haha) { // 2
|
|
return this.test; // 3
|
|
} // 2
|
|
}); // 1
|
|
})(this); // 0
|
|
|
|
|
|
// Case: SKELETON CODE
|
|
(function(window, undefined) {
|
|
// = Class: Test
|
|
//
|
|
// = Description:
|
|
//
|
|
var Test = new Class({
|
|
|
|
});
|
|
|
|
// = Class: Test2
|
|
// = Extends: Test
|
|
//
|
|
// = Description:
|
|
//
|
|
var Test2 = new Class({
|
|
initialize: function() {
|
|
},
|
|
|
|
// = Method: blah
|
|
//
|
|
// = Description: description
|
|
//
|
|
contrls: function() {
|
|
while(true) {
|
|
}
|
|
|
|
do {
|
|
} while(true);
|
|
|
|
with(x) {
|
|
}
|
|
|
|
if (true) {
|
|
} else if(true) {
|
|
} else {
|
|
}
|
|
|
|
for (var i = 0; i < blah.length; i++) {
|
|
}
|
|
|
|
switch(true) {
|
|
case 'case1': break;
|
|
case 'case2': break;
|
|
default:
|
|
}
|
|
|
|
try {
|
|
} catch (e) {
|
|
} finally {
|
|
}
|
|
}
|
|
});
|
|
})(this);
|
|
</script>
|
|
</body>
|
|
</html>
|