blob: 4396a56a7714f863f2d0fa0ff3d20ae3dbab8906 [file] [log] [blame]
Ben Murdochc5610432016-08-08 18:44:38 +01001// Copyright 2016 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5Error.prepareStackTrace = function(exception, frames) {
6 return frames[0].getEvalOrigin();
7}
8
9try {
10 Realm.eval(0, "throw new Error('boom');");
11} catch(e) {
12 print(e.stack);
13}