add Ox.STACK_SIZE
This commit is contained in:
parent
03947b0d7f
commit
d066501a14
1 changed files with 3 additions and 1 deletions
|
@ -86,6 +86,8 @@ Ox.PATH = Ox.makeArray(
|
|||
Ox.PREFIXES = ['', 'K', 'M', 'G', 'T', 'P'];
|
||||
//@ Ox.SEASONS <[str]> Names of the seasons of the year
|
||||
Ox.SEASONS = ['Winter', 'Spring', 'Summer', 'Fall'];
|
||||
//@ Ox.STACK_SIZE <n> Maximum number of arguments
|
||||
Ox.STACK_SIZE = 65536;
|
||||
//@ Ox.SYMBOLS <obj> Unicode characters for symbols
|
||||
Ox.SYMBOLS = {
|
||||
DOLLAR: '\u0024',
|
||||
|
@ -112,7 +114,7 @@ Ox.SYMBOLS = {
|
|||
CLOSE: '\u2715', BALLOT: '\u2717', WINDOWS: '\u2756',
|
||||
EDIT: '\uF802', CLICK: '\uF803', APPLE: '\uF8FF'
|
||||
};
|
||||
//@ Ox.TYPES <[str]> list of types, as returned by <code>Ox.type()</code>
|
||||
//@ Ox.TYPES <[str]> list of types, as returned by <code>Ox.type()</code> FIXME!
|
||||
Ox.TYPES = [
|
||||
'Arguments', 'Array', 'Boolean', 'Date', 'Element', 'Function', 'Infinity',
|
||||
'NaN', 'Null', 'Number', 'Object', 'RegExp', 'String', 'Undefined'
|
||||
|
|
Loading…
Reference in a new issue