summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/lastIndexOf/15.4.4.15-1-2.js
blob: 9df9406663cb1bcd020efea4929527b51a716bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.4.4.15-1-2
description: Array.prototype.lastIndexOf applied to null throws a TypeError
includes: [runTestCase.js]
---*/

function testcase() {

        try {
            Array.prototype.lastIndexOf.call(null);
            return false;
        } catch (e) {
            if (e instanceof TypeError) {
                return true;
            }
        }
    }
runTestCase(testcase);