- Mar 16, 2013
-
-
rswindell authored
slightly improved JSDOC descriptions. Updated JSDOC description of the 'js' object to be more general.
-
deuce authored
-
deuce authored
-
deuce authored
This is to deal with the fact that when you concatenate JS strings, the JS engine simply notes that they are concatenated, but keeps all the original strings around until something flattens them. This code: for(;;) { str += ascii(random(256)); log(str.length); } Fails when str reaches about 256KiB then crashes with out of memory but this code: for(;;) { str += ascii(random(256)); log(str.length); } Reaches a size of 4MB without stopping. Any time you actually paw through the string, it gets flattened, but when you do a bunch of concatenation, manually flattening can be a Good Thing.
-
- Feb 28, 2013
-
-
deuce authored
-
- Feb 17, 2013
-
-
rswindell authored
work-around door game bug reported by DeliriumTremens.
-
- Feb 14, 2013
-
-
rswindell authored
messages in the terminal server.
-
- Feb 13, 2013
- Feb 11, 2013
- Feb 10, 2013
-
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
Should fix random js_sprintf() failures.
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
the log() JS command.
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
returning it. Free the allocated buffer instead.
-
- Feb 08, 2013
-
-
deuce authored
-
deuce authored
functions.
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
Fix bug where multiple named queues with the same name could be created if their name is specified with more than 128 chars.
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
-
deuce authored
-