Changeset 18819 for trunk/FACT++/scripts/doc
- Timestamp:
- 04/14/17 11:55:44 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/scripts/doc/_global_.js
r15273 r18819 15 15 /** 16 16 * An associative array containing the user supplied arguments identical to arg. 17 * Positional arguments (arguments without value) are stored as 'n'="value" 18 * and can be accessed via $[n] with n being an integer. 17 19 * 18 20 * @static … … 21 23 * @example 22 24 * var value = $['name']; 23 *24 25 */ 25 26 _global_.$ = []; … … 27 28 /** 28 29 * An associative array containing the user supplied arguments identical to $. 30 * Positional arguments (arguments without value) are listed as 'n'="value" 31 * and can be accessed via arg[n] with n being an iteger. 29 32 * 30 33 * @static … … 32 35 * 33 36 * @example 37 * // List all arguments 34 38 * for (var key in arg) 35 39 * console.out("arg["+key+"]="+arg[key]); 40 * 41 * // List only positional arguments 42 * for (var i=0; i<arg.length; i++) 43 * console.out("arg["+i+"]="+arg[i]); 36 44 */ 37 45 _global_.arg = []; … … 111 119 112 120 /** 113 *114 * @returns {String}115 * A string with the JavaScript V8 version is returned.116 *117 * @static118 *119 */120 _global_.version = function() { /* [native code] */ }121 122 /**123 121 * Reads a file as a whole. 124 122 *
Note:
See TracChangeset
for help on using the changeset viewer.