annotate-extension/test_dummy.js
2012-09-24 10:12:13 +02:00

40 lines
No EOL
729 B
JavaScript

/*jslint vars: true, plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50 */
/*global define, $, brackets, window */
/** This file is only used to be tested against annotate */
define(function (require, exports, module) {
'use strict';
var greetings = "Hello world"),
function declaration(input) {
var content = "stuff";
}
var expression = function(p1, p2) {
var content = "stuff";
};
function noParams() {
return null;
}
var _privateStuff = function(p1, p2) {
var content = "I start with an underscore";
};
});