Skip to content

Commit

Permalink
Fix copyright build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Moore (CHAKRA) committed Jan 5, 2018
1 parent 2281a73 commit 7b59f02
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/Optimizer/bug41530.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------

function opt(arr) {
if (arr.length <= 15)
return;
Expand Down
5 changes: 5 additions & 0 deletions test/Optimizer/bug42111.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------

function opt(arr, start, end) {
for (let i = start; i < end; i++) {
if (i === 10) {
Expand Down
5 changes: 5 additions & 0 deletions test/es6/function-expr-capture.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------

(function func(arg = function () {
return func;
}()) {
Expand Down
5 changes: 5 additions & 0 deletions test/es6/function-expr-capture2.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------

eval(
'(function f() {' +
' with({}) {' +
Expand Down

0 comments on commit 7b59f02

Please sign in to comment.