Explorar o código

Fix copyright build error

Thomas Moore (CHAKRA) %!s(int64=8) %!d(string=hai) anos
pai
achega
7b59f023ed

+ 5 - 0
test/Optimizer/bug41530.js

@@ -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;

+ 5 - 0
test/Optimizer/bug42111.js

@@ -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) {

+ 5 - 0
test/es6/function-expr-capture.js

@@ -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;
                      }()) {

+ 5 - 0
test/es6/function-expr-capture2.js

@@ -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({}) {' +