Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Unified Diff: test/mjsunit/regress/regress-convert-transition.js

Issue 11093026: Reapply descriptor array sharing. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: fix long line Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/regress/regress-cntl-descriptors-enum.js ('k') | test/mjsunit/regress/regress-crbug-148376.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-convert-transition.js
diff --git a/src/platform-posix.h b/test/mjsunit/regress/regress-convert-transition.js
similarity index 79%
copy from src/platform-posix.h
copy to test/mjsunit/regress/regress-convert-transition.js
index 7a982ed2ef3080dad77860d6f46b356a9067bf3b..057dc8045c0327afe3217b8eea898b4228c1ae0f 100644
--- a/src/platform-posix.h
+++ b/test/mjsunit/regress/regress-convert-transition.js
@@ -25,15 +25,16 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-#ifndef V8_PLATFORM_POSIX_H_
-#define V8_PLATFORM_POSIX_H_
+var input = '{ "a1":1, "a2":1, "a3":1, "a4":1, "a5":1, "a6":1, "a7":1,\
+ "a8":1, "a9":1, "a10":1, "a11":1, "a12":1, "a13":1}';
+var a = JSON.parse(input);
+a.a = function() { return 10; };
-namespace v8 {
-namespace internal {
+// Force conversion of field to slow mode.
+var b = JSON.parse(input);
+b.a = 10;
-// Used by platform implementation files during OS::PostSetUp().
-void POSIXPostSetUp();
-
-} } // namespace v8::internal
-
-#endif // V8_PLATFORM_POSIX_H_
+// Add another property to the object that would transition to a.
+var c = JSON.parse(input);
+c.x = 10;
+assertEquals(undefined, c.a);
« no previous file with comments | « test/mjsunit/regress/regress-cntl-descriptors-enum.js ('k') | test/mjsunit/regress/regress-crbug-148376.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698