diff --git a/spec/fixtures/sample-with-comments.js b/spec/fixtures/sample-with-comments.js new file mode 100644 index 000000000..f23c07972 --- /dev/null +++ b/spec/fixtures/sample-with-comments.js @@ -0,0 +1,20 @@ +var quicksort = function () { + /* + this is a multiline comment + it is, I promise + */ + var sort = function(items) { + // This is a collection of + // single line comments. + // Wowza + if (items.length <= 1) return items; + var pivot = items.shift(), current, left = [], right = []; + while(items.length > 0) { + current = items.shift(); + current < pivot ? left.push(current) : right.push(current); + } + return sort(left).concat(pivot).concat(sort(right)); + }; + + return sort(Array.apply(this, arguments)); +}; \ No newline at end of file