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.
Fix typo in CR/LF handling in lexer.
K&R style braces in pretty printer.
Add load() function to main.c
Handle global flag in String.match().
Handle String.replace() when the search matches the empty string.
Use precedence table when pretty-printing syntax.
Add js_pushlstring to avoid a lot of try/malloc/pushstring boilerplate.
Use POSIX regcomp/regexec.
Fix clang scan-build warning.
Add RegExp class (with no actual regex implementation hooked up).