2016-04-04 08:35:12 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
try {
|
|
|
|
var o = {};
|
|
|
|
var p = new Proxy({}, o);
|
|
|
|
Error.captureStackTrace(p);
|
|
|
|
} catch(e) {
|
2016-07-20 13:02:36 +00:00
|
|
|
assertEquals("invalid_argument", e.message);
|
2016-04-04 08:35:12 +00:00
|
|
|
}
|