summaryrefslogtreecommitdiff
path: root/test/built-ins/Error/prototype/name/15.11.4.2-1.js
blob: de519ef06da70dfd621d95c07fd4d5a4de1ca6ac (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.11.4.2-1
description: Error.prototype.name is not enumerable.
---*/

for (var i in Error.prototype) {
  assert.notSameValue(i, "name", 'i');
}