d7e6146bc6
The external project is effectively abandoned. Fork and move it in-tree for easier maintenance and Python 3 migration. Bug: chromium:1296209 Change-Id: I4ff97749acb2895bd8433c08b2a4ff109c90cda2 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3475086 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Reviewed-by: Adam Klein <adamk@chromium.org> Commit-Queue: Shu-yu Guo <syg@chromium.org> Cr-Commit-Position: refs/heads/main@{#79240}
20 lines
508 B
JavaScript
20 lines
508 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The production Block { } in strict code can't contain function
|
|
* declaration;
|
|
*
|
|
* @path bestPractice/Sbp_A1_T1.js
|
|
* @description Trying to declare function at the Block statement
|
|
* @onlyStrict
|
|
* @negative SyntaxError
|
|
* @bestPractice http://wiki.ecmascript.org/doku.php?id=conventions:no_non_standard_strict_decls
|
|
*/
|
|
|
|
"use strict";
|
|
{
|
|
function __func(){}
|
|
}
|
|
|