Changeset 18819 for trunk/FACT++


Ignore:
Timestamp:
04/14/17 11:55:44 (7 years ago)
Author:
tbretz
Message:
Improved comments, removed wrong 'version' property
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/scripts/doc/_global_.js

    r15273 r18819  
    1515/**
    1616 * 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.
    1719 *
    1820 * @static
     
    2123 * @example
    2224 *    var value = $['name'];
    23  *
    2425 */
    2526_global_.$ = [];
     
    2728/**
    2829 * 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.
    2932 *
    3033 * @static
     
    3235 *
    3336 * @example
     37 *    // List all arguments
    3438 *    for (var key in arg)
    3539 *        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]);
    3644 */
    3745_global_.arg = [];
     
    111119
    112120/**
    113  *
    114  * @returns {String}
    115  *    A string with the JavaScript V8 version is returned.
    116  *
    117  * @static
    118  *
    119  */
    120 _global_.version = function() { /* [native code] */  }
    121 
    122 /**
    123121 * Reads a file as a whole.
    124122 *
Note: See TracChangeset for help on using the changeset viewer.