blob: 2b1aaa798e990de90ea38b8f2c964b0db6aef789 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 15.4.3.2-1-12
description: Array.isArray applied to Error object
---*/
assert.sameValue(Array.isArray(new SyntaxError()), false, 'Array.isArray(new SyntaxError())');