Line | |
---|
1 | throw new Error("Description for built in functions. Must not be included!");
|
---|
2 | /**
|
---|
3 | * @fileOverview
|
---|
4 | * Documentation of dim namespace.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /**
|
---|
8 | * @namespace
|
---|
9 | *
|
---|
10 | * Namespace for general extension functions
|
---|
11 | *
|
---|
12 | * @author <a href="mailto:thomas.bretz@epfl.ch">Thomas Bretz</a>
|
---|
13 | */
|
---|
14 | var v8 = { };
|
---|
15 |
|
---|
16 | /**
|
---|
17 | * Sleep for a while. This can be used to just wait or give time
|
---|
18 | * back to the operating system to produce less CPU load if the
|
---|
19 | * main purpose of a loop is, e.g., to wait for something to happen.
|
---|
20 | *
|
---|
21 | * @param {Integer} [milliseconds=0]
|
---|
22 | * Number of millliseconds to sleep. Note that even 0 will always
|
---|
23 | * sleep at least one millisecond.
|
---|
24 | *
|
---|
25 | */
|
---|
26 | v8.sleep = function() { /* [native code] */ }
|
---|
27 |
|
---|
28 | /**
|
---|
29 | * Version number of the V8 JavaScript engine.
|
---|
30 | *
|
---|
31 | * @constant
|
---|
32 | * @type String
|
---|
33 | */
|
---|
34 | v8.version = "";
|
---|
Note:
See
TracBrowser
for help on using the repository browser.