throw new Error("Description for built in functions. Must not be included!"); /** * @fileOverview * Documentation of dim namespace. */ /** * @namespace * * Namespace for general extension functions * * @author Thomas Bretz */ var v8 = { }; /** * Sleep for a while. This can be used to just wait or give time * back to the operating system to produce less CPU load if the * main purpose of a loop is, e.g., to wait for something to happen. * * @param {Integer} [milliseconds=0] * Number of millliseconds to sleep. Note that even 0 will always * sleep at least one millisecond. * */ v8.sleep = function() { /* [native code] */ } /** * Version number of the V8 JavaScript engine. * * @constant * @type String */ v8.version = "";