annotate-extension/test_dummy.js

40 lines
729 B
JavaScript
Raw Permalink Normal View History

2012-09-24 08:06:31 +00:00
/*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;
}
2012-09-24 08:12:13 +00:00
var _privateStuff = function(p1, p2) {
var content = "I start with an underscore";
};
2012-09-24 08:06:31 +00:00
});