/tags/jsdoc_toolkit-1.4.0/test/data/returns.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 27 lines · 7 code · 6 blank · 14 comment · 0 complexity · 2de9007aac1facc70f1953e7d73f8f53 MD5 · raw file
- /**
- * Process the text.
- * @return {Array,
- String}
- */
-
- function processText(text, processor) {
- return processor(text);
- }
-
- /**
- * @return {null} If there was a problem.
- * @return {number} The number of bytes written to disk.
- */
-
- function flush(buffer, filepath) {
- // do stuff
- }
-
- /**
- * @returns {Array} Characters from the file.
- */
-
- function readText(filepath) {
- // do stuff
- }