Reviewers: fschneider, Description: Fix typographical error in comment in r4056
Please review this at http://codereview.chromium.org/668258 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ast.h Index: src/ast.h =================================================================== --- src/ast.h (revision 4056) +++ src/ast.h (working copy) @@ -241,7 +241,7 @@ bitfields_ |= SideEffectFreeField::encode(is_side_effect_free); } - // Will ToInt32 ECMA 262-3 9.5) or ToUunt32 (ECMA 262-3 9.6) + // Will ToInt32 (ECMA 262-3 9.5) or ToUint32 (ECMA 262-3 9.6) // be applied to the value of this expression? // If so, we may be able to optimize the calculation of the value. bool to_int32() { return ToInt32Field::decode(bitfields_); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
