Implement Function.prototype.bind().
Fix regex.c test function printouts.
Check bounds of date elements in Date.parse().
Always use ISO 8601 formats for date string formatting.
Fix fmod use with negative (pre-1970) times.
Make date formatting and parsing re-entrant and libc independent.
Use gettimeofday/_ftime if available for more accurate times.
Handle malloc failure by throwing exceptions.
Fix ToNumber from strings and parseInt and parseFloat.
Parse \0 and \x00 and \u0000 in regular expressions.
Check for invalid character escapes in regular expressions.
Move nelem() macro into jsi.h
Nul-terminate strings created by toUpper/LowerCase.
Fix relational equality with NaN.
Handle two-digit backreferences and captures.
Check for infinite loops matching the empty string at parse time.
Use explicit backtracking stack rather than recursion.
Use macro for magic number indicating an infinite number of repeats.
Potential win32 MSVC compilation fixes.
Always open files in binary mode.
Don't recurse on second branch of "split" instruction.
Some -pedantic warning fixes.
Use clang by default and enable more warnings.
Change C functions to not have a return value.
Fix unreachable code warnings.
Fix signed/unsigned comparison warnings.
Oops. Forgot to emit "setprop" for assignment operators.
Rename some regex opcodes.
typeof X when X in not declared should return undefined rather than throw.
More robust character class parser.
Regular expression implementation.
Prepare for regular expression library.
Silence scan-build warnings about maybe uninitialized variables.
Rename jump to emitjump in compiler.
Fix bug in comment lexing.
Make array length helper public.
Check in auto-generated headers for ease of building.
Prune unused UTF-8 and rune string functions.
Improve jsV_stringtonumber.
Compile pre/post increment/decrement as special opcodes.
Fix boolean equality tests.
Revert "Handle js_tostring on objects without toString or toValue methods."
Never compile scripts as lightweight functions.
Add "jsone" makefile target.
Clean up for one.c compilation.
Fix eval() return value when no arguments are passed.
Handle variable shadowing.
Implement lightweight functions.
Separate generic AST_IDENTIFIER and EXP_IDENTIFIER.
UTF string index/pointer juggling.
Quote strings properly in jsdump.
Simplify string-buffer function API.
Expose magic properties in Object.keys and Object.getOwnPropertyNames.
Add virtual string array index properties for characters.
Make argc/undefined checks more resilient.
Implement ES5 array functions.
Use length property of cfunctions to make sure we have at least N args.
Handle js_tostring on objects without toString or toValue methods.
Implement Function constructor.
Implement extensible object attribute.
Implement ES5 prototype descriptor and misc object functions.
Add decode/encode URI functions.
Use getter/setter also for properties used by the with statement.
Check list of future reserved words for primary expression identifiers.
Add functions to let C bindings define setters and getters.
Rename DontDelete flag to DontConf.
Implement getters and setters.
Compile ES5 getters and setters.
Auto-generate the AST name list.
Check for value stack overflow.
Reset the lastIndex property in String.match() and replace().
Special case handling of regexp source, flags and lastIndex properties.
Encapsulate all regexp state in js_Regexp struct.
Handle global flag in RexExp.exec() and .test().
Fix bug where do/while continue statement jumped to the wrong location.
The typeof operator should return 'function' for callable objects.
Calculate exponent the same way as fractions for symmetry in the lexer.
Abort main.c with return status if a script fails.