Fixed string length bug on ARM (issue 171).

Made most methods in the API const.

Optimized object literals by improving data locality.

Fixed bug that caused incomplete functions to be cached in case of stack overflow exceptions.

Fixed bugs that caused catch variables and variables introduced by eval to behave incorrectly when using accessors (issues 186, 190 and 191).


git-svn-id: http://v8.googlecode.com/svn/trunk@1095 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/parser.h b/src/parser.h
index 6e86f09..ee303b4 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -153,7 +153,7 @@
 // Support for doing lazy compilation. The script is the script containing full
 // source of the script where the function is declared. The start_position and
 // end_position specifies the part of the script source which has the source
-// for the function decleration in the form:
+// for the function declaration in the form:
 //
 //    (<formal parameters>) { <function body> }
 //