throw new Error("Description for built in functions. Must not be included!"); /***************************************************************************/ /*** ***/ /*** JsDoc: http://code.google.com/p/jsdoc-toolkit/w/list ***/ /*** ***/ /*** jsdoc -d=html/dimctrl scripts/doc/ ***/ /*** ***/ /***************************************************************************/ /** * @fileOverview * Documentation of the native functions built into dimctrl's * global namespace. */ /** * An associative array containing the user supplied arguments identical to arg. * Positional arguments (arguments without value) are stored as 'n'="value" * and can be accessed via $[n] with n being an integer. * * @static * @type Array * * @example * var value = $['name']; */ _global_.$ = []; /** * An associative array containing the user supplied arguments identical to $. * Positional arguments (arguments without value) are listed as 'n'="value" * and can be accessed via arg[n] with n being an iteger. * * @static * @type Array * * @example * // List all arguments * for (var key in arg) * console.out("arg["+key+"]="+arg[key]); * * // List only positional arguments * for (var i=0; i If number or type of arguments is wrong *
  • If there was an error reading the file, the system error is thrown * * @example * var string = File("fact++.rc"); * var array = File("fact++.rc", "\n"); */ _global_.File = function() { /* [native code] */ }