Status: Accepted
Owner: ----
Labels: Type-Bug Priority-High

New issue 681 by [email protected]: Crash introduced in r4426
http://code.google.com/p/v8/issues/detail?id=681

Running the following code crashes V8 in r4426, but not r4425.

function tryItOut(code) {
  try {
    eval("(function(){" + code + "})")();
  } catch (e) {
    print(e)
  }
}

tryItOut("this.x()");
constructor = {};  // Or constructor = this
tryItOut("return this.__defineGetter__(\"y\", function(){});");
tryItOut("y = 1;");
constructor = 1;
tryItOut("y = 1;");



--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to