summaryrefslogtreecommitdiff
path: root/external/contributions/Google/sputnik_conformance_modified/bestPractice/Sbp_A5_T1.js
blob: 3aeced360d998b51bbab7d9a1a9582d9ab6a24db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * FunctionDeclaration within a "for-in" Statement is not allowed
 *
 * @description: Declaring function within a "for-in" Statement
 * @negative SyntaxError
 * @onlyStrict
 * @bestPractice
 * http://wiki.ecmascript.org/doku.php?id=conventions:no_non_standard_strict_decls
 */
"use strict";
for (x in this) {
    function __func(){};
}