1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
4 * Any copyright is dedicated to the Public Domain.
5 * http://creativecommons.org/licenses/publicdomain/
8 /* Verify that GETTHISPROP does not update the frame's |this| slot. */
10 var f = String.prototype.m = function () {
13 // The GETTHISPROP should not cause |this| to become wrapped.
14 return [this.m, this];
20 reportCompare(true, true);
22 var successfullyParsed = true;