summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/delete/11.4.1-5-3.js
blob: a9353540ca9e739fc7c2884c9dc04c234c4cabcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-delete-operator-runtime-semantics-evaluation
description: >
    delete operator returns false when deleting a direct reference to
    a function name
flags: [noStrict]
---*/

var foo = function() {};

// Now, deleting 'foo' directly should fail;
var d = delete foo;

assert.sameValue(d, false, 'd');
assert.sameValue(typeof foo, 'function', 'typeof foo');

reportCompare(0, 0);