Fixed crash-bug in the code generation for case independent 16 bit backreferences.

Made shells more robust in the presence of string conversion failures (issue 224).

Fixed a potential infinite loop when attempting to resolve eval (issue 221).

Miscellaneous fixes to the new regular expression engine.

Reduced binary by stripping unneeded text from JavaScript library and minifying some JavaScript files.


git-svn-id: http://v8.googlecode.com/svn/trunk@1243 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/test/mjsunit/debug-step-stub-callfunction.js b/test/mjsunit/debug-step-stub-callfunction.js
index 991c62e..fbb8078 100644
--- a/test/mjsunit/debug-step-stub-callfunction.js
+++ b/test/mjsunit/debug-step-stub-callfunction.js
@@ -42,7 +42,7 @@
 };
 
 // Add the debug event listener.
-Debug.addListener(listener);
+Debug.setListener(listener);
 
 // Use 'eval' to ensure that the call to print is through CodeStub CallFunction.
 // See Ia32CodeGenerator::VisitCall and Ia32CodeGenerator::CallWithArguments.
@@ -70,4 +70,4 @@
 assertEquals(4, break_break_point_hit_count);
 
 // Get rid of the debug event listener.
-Debug.removeListener(listener);
+Debug.setListener(null);