From 7374d3ab768e2159bcc882fe70ffc060b6be79d3 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Wed, 5 Feb 2014 18:07:58 +0400 Subject: [PATCH] Minor changes: drop the copyright comment from testData files. --- .../testFiles/classObject/cases/setVar.kt | 16 ---------------- .../testFiles/classObject/cases/simple.kt | 16 ---------------- .../testFiles/classObject/cases/withExtension.kt | 16 ---------------- .../cases/closureFunctionByInnerFunction.kt | 16 ---------------- .../cases/closureLocalFunctionByInnerFunction.kt | 16 ---------------- ...eLocalFunctionByInnerFunctionInConstructor.kt | 16 ---------------- .../testFiles/closure/cases/simpleRecursion.kt | 16 ---------------- .../testFiles/java/arrayList/cases/retainAll.kt | 16 ---------------- .../testFiles/native/native/class.js | 16 ---------------- .../testFiles/native/native/classObject.js | 15 --------------- .../testFiles/native/native/kt1519.js | 16 ---------------- .../testFiles/native/native/kt2209.js | 15 --------------- .../testFiles/native/native/kt2323.js | 15 --------------- .../testFiles/native/native/library.js | 16 ---------------- .../native/nativePropertyWithCustomName.js | 16 ---------------- .../testFiles/native/native/simple.js | 16 ---------------- .../testFiles/native/native/simpleUndefined.js | 15 --------------- .../testFiles/native/native/vararg.js | 16 ---------------- .../outputPrefixPostfix/cases/simple.kt | 16 ---------------- .../cases/simpleWithPostfix.kt | 16 ---------------- .../cases/simpleWithPrefix.kt | 16 ---------------- .../cases/simpleWithPrefixAndPostfix.kt | 16 ---------------- .../cases/nativePropertiesNameClashes.kt | 16 ---------------- .../testFiles/propertyAccess/enumerate.js | 16 ---------------- 24 files changed, 380 deletions(-) diff --git a/js/js.translator/testFiles/classObject/cases/setVar.kt b/js/js.translator/testFiles/classObject/cases/setVar.kt index 0f5b35b1bd8..e4fc6c91501 100644 --- a/js/js.translator/testFiles/classObject/cases/setVar.kt +++ b/js/js.translator/testFiles/classObject/cases/setVar.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo class A { diff --git a/js/js.translator/testFiles/classObject/cases/simple.kt b/js/js.translator/testFiles/classObject/cases/simple.kt index d4c6d6badfa..e9bef55538c 100644 --- a/js/js.translator/testFiles/classObject/cases/simple.kt +++ b/js/js.translator/testFiles/classObject/cases/simple.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo class A { diff --git a/js/js.translator/testFiles/classObject/cases/withExtension.kt b/js/js.translator/testFiles/classObject/cases/withExtension.kt index f6251611db6..8a0553a8cdd 100644 --- a/js/js.translator/testFiles/classObject/cases/withExtension.kt +++ b/js/js.translator/testFiles/classObject/cases/withExtension.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo open class A { diff --git a/js/js.translator/testFiles/closure/cases/closureFunctionByInnerFunction.kt b/js/js.translator/testFiles/closure/cases/closureFunctionByInnerFunction.kt index e50d88dad4d..8d835fcc16a 100644 --- a/js/js.translator/testFiles/closure/cases/closureFunctionByInnerFunction.kt +++ b/js/js.translator/testFiles/closure/cases/closureFunctionByInnerFunction.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo fun run(f: () -> T) = f() diff --git a/js/js.translator/testFiles/closure/cases/closureLocalFunctionByInnerFunction.kt b/js/js.translator/testFiles/closure/cases/closureLocalFunctionByInnerFunction.kt index d00e2d3e274..45b137825b1 100644 --- a/js/js.translator/testFiles/closure/cases/closureLocalFunctionByInnerFunction.kt +++ b/js/js.translator/testFiles/closure/cases/closureLocalFunctionByInnerFunction.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo fun run(f: () -> T) = f() diff --git a/js/js.translator/testFiles/closure/cases/closureLocalFunctionByInnerFunctionInConstructor.kt b/js/js.translator/testFiles/closure/cases/closureLocalFunctionByInnerFunctionInConstructor.kt index 42d94b6ff75..b03de123a4e 100644 --- a/js/js.translator/testFiles/closure/cases/closureLocalFunctionByInnerFunctionInConstructor.kt +++ b/js/js.translator/testFiles/closure/cases/closureLocalFunctionByInnerFunctionInConstructor.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo fun run(f: () -> T) = f() diff --git a/js/js.translator/testFiles/closure/cases/simpleRecursion.kt b/js/js.translator/testFiles/closure/cases/simpleRecursion.kt index 020ea1a83c2..77d5bea05bb 100644 --- a/js/js.translator/testFiles/closure/cases/simpleRecursion.kt +++ b/js/js.translator/testFiles/closure/cases/simpleRecursion.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo fun bar(i: Int = 0): Int = if (i == 7) i else bar(i - 1) diff --git a/js/js.translator/testFiles/java/arrayList/cases/retainAll.kt b/js/js.translator/testFiles/java/arrayList/cases/retainAll.kt index b3f066bbdf9..5d3e3f20d99 100644 --- a/js/js.translator/testFiles/java/arrayList/cases/retainAll.kt +++ b/js/js.translator/testFiles/java/arrayList/cases/retainAll.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2014 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo import java.util.ArrayList; diff --git a/js/js.translator/testFiles/native/native/class.js b/js/js.translator/testFiles/native/native/class.js index 4914071c25f..b3a093c13f5 100644 --- a/js/js.translator/testFiles/native/native/class.js +++ b/js/js.translator/testFiles/native/native/class.js @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - function A(b) { this.g = function() { return 2 * b; diff --git a/js/js.translator/testFiles/native/native/classObject.js b/js/js.translator/testFiles/native/native/classObject.js index a5d529cec4b..d6598739fe2 100644 --- a/js/js.translator/testFiles/native/native/classObject.js +++ b/js/js.translator/testFiles/native/native/classObject.js @@ -1,18 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ function A(c) { this.c = c; } diff --git a/js/js.translator/testFiles/native/native/kt1519.js b/js/js.translator/testFiles/native/native/kt1519.js index fcaba100244..55fc8d9e433 100644 --- a/js/js.translator/testFiles/native/native/kt1519.js +++ b/js/js.translator/testFiles/native/native/kt1519.js @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - function Wow() { this.x = 1; this.y = 2; diff --git a/js/js.translator/testFiles/native/native/kt2209.js b/js/js.translator/testFiles/native/native/kt2209.js index 63faed6a32e..9c1c4b865ca 100644 --- a/js/js.translator/testFiles/native/native/kt2209.js +++ b/js/js.translator/testFiles/native/native/kt2209.js @@ -1,16 +1 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ var chrome = {extension: {lastError:null}} diff --git a/js/js.translator/testFiles/native/native/kt2323.js b/js/js.translator/testFiles/native/native/kt2323.js index bb266af9a59..56857253173 100644 --- a/js/js.translator/testFiles/native/native/kt2323.js +++ b/js/js.translator/testFiles/native/native/kt2323.js @@ -1,16 +1 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ var classes = {"answer": 42}, classesMutable = {}; diff --git a/js/js.translator/testFiles/native/native/library.js b/js/js.translator/testFiles/native/native/library.js index a9e95d801cd..4b604330213 100644 --- a/js/js.translator/testFiles/native/native/library.js +++ b/js/js.translator/testFiles/native/native/library.js @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - (function () { var c = 0; diff --git a/js/js.translator/testFiles/native/native/nativePropertyWithCustomName.js b/js/js.translator/testFiles/native/native/nativePropertyWithCustomName.js index 8ec804d6a80..14cbfbbf3af 100644 --- a/js/js.translator/testFiles/native/native/nativePropertyWithCustomName.js +++ b/js/js.translator/testFiles/native/native/nativePropertyWithCustomName.js @@ -1,17 +1 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - var boo = "K"; \ No newline at end of file diff --git a/js/js.translator/testFiles/native/native/simple.js b/js/js.translator/testFiles/native/native/simple.js index ec723b7f70d..feeda189ad2 100644 --- a/js/js.translator/testFiles/native/native/simple.js +++ b/js/js.translator/testFiles/native/native/simple.js @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - function returnFalse() { return false; } \ No newline at end of file diff --git a/js/js.translator/testFiles/native/native/simpleUndefined.js b/js/js.translator/testFiles/native/native/simpleUndefined.js index 6ddfc256875..318eaada4f8 100644 --- a/js/js.translator/testFiles/native/native/simpleUndefined.js +++ b/js/js.translator/testFiles/native/native/simpleUndefined.js @@ -1,16 +1 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ var c = undefined; diff --git a/js/js.translator/testFiles/native/native/vararg.js b/js/js.translator/testFiles/native/native/vararg.js index cbc084f5902..e8b64248b4d 100644 --- a/js/js.translator/testFiles/native/native/vararg.js +++ b/js/js.translator/testFiles/native/native/vararg.js @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2012 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - function paramCount() { return arguments.length } diff --git a/js/js.translator/testFiles/outputPrefixPostfix/cases/simple.kt b/js/js.translator/testFiles/outputPrefixPostfix/cases/simple.kt index 326708020f8..930f3608e04 100644 --- a/js/js.translator/testFiles/outputPrefixPostfix/cases/simple.kt +++ b/js/js.translator/testFiles/outputPrefixPostfix/cases/simple.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo fun box(): String { diff --git a/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPostfix.kt b/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPostfix.kt index 326708020f8..930f3608e04 100644 --- a/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPostfix.kt +++ b/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPostfix.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo fun box(): String { diff --git a/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPrefix.kt b/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPrefix.kt index 326708020f8..930f3608e04 100644 --- a/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPrefix.kt +++ b/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPrefix.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo fun box(): String { diff --git a/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPrefixAndPostfix.kt b/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPrefixAndPostfix.kt index 326708020f8..930f3608e04 100644 --- a/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPrefixAndPostfix.kt +++ b/js/js.translator/testFiles/outputPrefixPostfix/cases/simpleWithPrefixAndPostfix.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo fun box(): String { diff --git a/js/js.translator/testFiles/propertyAccess/cases/nativePropertiesNameClashes.kt b/js/js.translator/testFiles/propertyAccess/cases/nativePropertiesNameClashes.kt index adba75a6a67..10bc66cda15 100644 --- a/js/js.translator/testFiles/propertyAccess/cases/nativePropertiesNameClashes.kt +++ b/js/js.translator/testFiles/propertyAccess/cases/nativePropertiesNameClashes.kt @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - package foo val PACKAGE = "Kotlin.modules.JS_TESTS.foo" diff --git a/js/js.translator/testFiles/propertyAccess/enumerate.js b/js/js.translator/testFiles/propertyAccess/enumerate.js index 68523245657..9e0800c158b 100644 --- a/js/js.translator/testFiles/propertyAccess/enumerate.js +++ b/js/js.translator/testFiles/propertyAccess/enumerate.js @@ -1,19 +1,3 @@ -/* - * Copyright 2010-2013 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - function _enumerate(o) { var r = {}; for (var p in o) {