From d066501a14141a3e255da9e3ea55c12f5395bf54 Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 19 May 2012 12:10:41 +0400 Subject: [PATCH] add Ox.STACK_SIZE --- source/Ox/js/Constants.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/Ox/js/Constants.js b/source/Ox/js/Constants.js index 7c2094ab..8fd17ade 100644 --- a/source/Ox/js/Constants.js +++ b/source/Ox/js/Constants.js @@ -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 Maximum number of arguments +Ox.STACK_SIZE = 65536; //@ Ox.SYMBOLS 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 Ox.type() +//@ Ox.TYPES <[str]> list of types, as returned by Ox.type() FIXME! Ox.TYPES = [ 'Arguments', 'Array', 'Boolean', 'Date', 'Element', 'Function', 'Infinity', 'NaN', 'Null', 'Number', 'Object', 'RegExp', 'String', 'Undefined'