From 6cc797ad31e70f803b28efb4d937adfd68c77a61 Mon Sep 17 00:00:00 2001 From: "Vitaliy.Bibaev" Date: Tue, 19 Dec 2017 15:56:45 +0300 Subject: [PATCH] Update copyright header for new files --- .../streams/kotlin/lib/KotlinCollectionLibrarySupport.kt | 1 + .../debugger/streams/kotlin/psi/CallTypeExtractor.kt | 1 + .../streams/kotlin/psi/impl/JavaStreamChainTypeExtractor.kt | 1 + .../kotlin/psi/impl/KotlinCollectionsTypeExtractor.kt | 1 + .../debugger/streams/kotlin/trace/dsl/JavaPeekCallFactory.kt | 1 + .../kotlin/trace/dsl/KotlinCollectionsPeekCallFactory.kt | 1 + .../debugger/streams/kotlin/trace/dsl/PeekCallFactory.kt | 1 + .../debugger/streams/kotlin/trace/impl/handler/CallUtils.kt | 1 + .../debugger/streams/kotlin/trace/impl/handler/OnEachCall.kt | 1 + .../impl/handler/collections/BothSemanticHandlerWrapper.kt | 1 + .../trace/impl/handler/collections/BothSemanticsHandler.kt | 1 + .../trace/impl/handler/collections/CollectionHandlerBase.kt | 1 + .../handler/collections/CollectionIntermediateHandler.kt | 1 + .../impl/handler/collections/CollectionTerminatorHandler.kt | 1 + .../trace/impl/handler/collections/FilterCallHandler.kt | 1 + .../kotlin/trace/impl/interpret/FilterTraceInterpreter.kt | 5 +++-- .../streams/kotlin/trace/impl/interpret/InterpreterUtil.kt | 1 + .../streams/kotlin/trace/impl/interpret/ValuesOrder.kt | 1 + .../debugger/streams/kotlin/exec/collection/ChecksTest.kt | 1 + .../streams/kotlin/exec/collection/CollectionTestCase.kt | 1 + .../streams/kotlin/exec/collection/DifferentSourceTest.kt | 1 + .../streams/kotlin/exec/collection/DistinctOperationsTest.kt | 1 + .../streams/kotlin/exec/collection/FilterOperationsTest.kt | 1 + .../streams/kotlin/exec/collection/FinalOperationsTest.kt | 1 + .../streams/kotlin/exec/collection/FlatMapOperationsTest.kt | 1 + .../streams/kotlin/exec/collection/GroupingOperationsTest.kt | 1 + .../streams/kotlin/exec/collection/MapOperationsTest.kt | 1 + .../streams/kotlin/exec/collection/MiscOperationsTest.kt | 1 + .../streams/kotlin/exec/collection/ZipOperationsTest.kt | 1 + .../debugger/streams/kotlin/psi/TypedChainTestCase.kt | 1 + .../kotlin/psi/collection/PositiveCollectionBuildTest.kt | 1 + .../kotlin/psi/collection/TypedCollectionChainTest.kt | 1 + .../debugger/streams/kotlin/psi/java/AmbiguousChainsTest.kt | 1 + .../streams/kotlin/psi/java/LocationPositiveChainTest.kt | 1 + .../debugger/streams/kotlin/psi/java/TypedJavaChainTest.kt | 1 + 35 files changed, 37 insertions(+), 2 deletions(-) diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/lib/KotlinCollectionLibrarySupport.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/lib/KotlinCollectionLibrarySupport.kt index 0c5384ba8d9..6f5ef943f2a 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/lib/KotlinCollectionLibrarySupport.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/lib/KotlinCollectionLibrarySupport.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.lib import com.intellij.debugger.streams.kotlin.trace.impl.handler.collections.* diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/CallTypeExtractor.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/CallTypeExtractor.kt index e29e2c015b0..bec65f6c87c 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/CallTypeExtractor.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/CallTypeExtractor.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi import com.intellij.debugger.streams.trace.impl.handler.type.GenericType diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/impl/JavaStreamChainTypeExtractor.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/impl/JavaStreamChainTypeExtractor.kt index 1836f18bc2b..107dd0054f9 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/impl/JavaStreamChainTypeExtractor.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/impl/JavaStreamChainTypeExtractor.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi.impl import com.intellij.debugger.streams.kotlin.psi.CallTypeExtractor diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/impl/KotlinCollectionsTypeExtractor.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/impl/KotlinCollectionsTypeExtractor.kt index 97f34411c30..10d7d75b1c7 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/impl/KotlinCollectionsTypeExtractor.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/psi/impl/KotlinCollectionsTypeExtractor.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi.impl import com.intellij.debugger.streams.kotlin.psi.CallTypeExtractor diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/JavaPeekCallFactory.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/JavaPeekCallFactory.kt index 5c883b3d39f..8cc3c385116 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/JavaPeekCallFactory.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/JavaPeekCallFactory.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.dsl import com.intellij.debugger.streams.trace.impl.handler.PeekCall diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/KotlinCollectionsPeekCallFactory.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/KotlinCollectionsPeekCallFactory.kt index 69ae04ee31a..6b78c669dde 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/KotlinCollectionsPeekCallFactory.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/KotlinCollectionsPeekCallFactory.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.dsl import com.intellij.debugger.streams.kotlin.trace.impl.handler.OnEachCall diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/PeekCallFactory.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/PeekCallFactory.kt index e6144dc4ff6..2c7d0f08cfa 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/PeekCallFactory.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/dsl/PeekCallFactory.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.dsl import com.intellij.debugger.streams.trace.impl.handler.type.GenericType diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/CallUtils.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/CallUtils.kt index 5c82dd0473f..438b1d6bfd1 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/CallUtils.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/CallUtils.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.handler import com.intellij.debugger.streams.kotlin.trace.dsl.KotlinTypes diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/OnEachCall.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/OnEachCall.kt index b0bf153bd29..3239bf5d4a0 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/OnEachCall.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/OnEachCall.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.handler import com.intellij.debugger.streams.kotlin.trace.dsl.KotlinTypes diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/BothSemanticHandlerWrapper.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/BothSemanticHandlerWrapper.kt index 32b2bdab2ca..96c5b0e04bc 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/BothSemanticHandlerWrapper.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/BothSemanticHandlerWrapper.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.handler.collections import com.intellij.debugger.streams.trace.IntermediateCallHandler diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/BothSemanticsHandler.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/BothSemanticsHandler.kt index c8b1ad0e53f..de8aea7680e 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/BothSemanticsHandler.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/BothSemanticsHandler.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.handler.collections import com.intellij.debugger.streams.trace.dsl.* diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionHandlerBase.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionHandlerBase.kt index c3981503c13..4affc98cf87 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionHandlerBase.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionHandlerBase.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.handler.collections import com.intellij.debugger.streams.trace.TraceHandler diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionIntermediateHandler.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionIntermediateHandler.kt index 693327a5a49..ed3e7b3d130 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionIntermediateHandler.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionIntermediateHandler.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.handler.collections import com.intellij.debugger.streams.trace.IntermediateCallHandler diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionTerminatorHandler.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionTerminatorHandler.kt index 69128a19cf0..a5893285985 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionTerminatorHandler.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/CollectionTerminatorHandler.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.handler.collections import com.intellij.debugger.streams.trace.TerminatorCallHandler diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/FilterCallHandler.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/FilterCallHandler.kt index b3ebbba3735..b1b407b7432 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/FilterCallHandler.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/handler/collections/FilterCallHandler.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.handler.collections import com.intellij.debugger.streams.kotlin.trace.impl.handler.typeBefore diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/FilterTraceInterpreter.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/FilterTraceInterpreter.kt index d508de00e3a..902dc8e6a12 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/FilterTraceInterpreter.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/FilterTraceInterpreter.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.interpret import com.intellij.debugger.streams.trace.CallTraceInterpreter @@ -40,10 +41,10 @@ class FilterTraceInterpreter(private val predicateValueToAccept: Boolean) : Call private fun resolveValuesAfter(before: Map, filteringMap: Value): Map { val predicateValues = extractPredicateValues(filteringMap) val result = linkedMapOf() - for ((beforeTime, value) in before) { + for ((beforeTime, element) in before) { val predicateValue = predicateValues[beforeTime] if (predicateValue == predicateValueToAccept) { - result[beforeTime + 1] = value + result[beforeTime + 1] = TraceElementImpl(beforeTime + 1, element.value) } } diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/InterpreterUtil.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/InterpreterUtil.kt index e1c293cd2ba..8d7278ec1bf 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/InterpreterUtil.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/InterpreterUtil.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.interpret import com.intellij.debugger.streams.trace.TraceElement diff --git a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/ValuesOrder.kt b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/ValuesOrder.kt index d43ff0ee187..6f31b28cb93 100644 --- a/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/ValuesOrder.kt +++ b/idea/idea-jvm/src/com/intellij/debugger/streams/kotlin/trace/impl/interpret/ValuesOrder.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.trace.impl.interpret import com.intellij.debugger.streams.trace.TraceElement diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/ChecksTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/ChecksTest.kt index a74de903d76..d08bc31654a 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/ChecksTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/ChecksTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/CollectionTestCase.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/CollectionTestCase.kt index 61d1653950b..1410bfa4fc0 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/CollectionTestCase.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/CollectionTestCase.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection import com.intellij.debugger.streams.kotlin.exec.KotlinTraceEvaluationTestCase diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/DifferentSourceTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/DifferentSourceTest.kt index a6cceee8fa0..ad746fe89dc 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/DifferentSourceTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/DifferentSourceTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/DistinctOperationsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/DistinctOperationsTest.kt index 39b58f19e4b..0e75931d860 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/DistinctOperationsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/DistinctOperationsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FilterOperationsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FilterOperationsTest.kt index 0a8943054d1..f027985c893 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FilterOperationsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FilterOperationsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FinalOperationsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FinalOperationsTest.kt index 26c4bad7bba..0e28c3a982e 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FinalOperationsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FinalOperationsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FlatMapOperationsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FlatMapOperationsTest.kt index 2d37b48e7e5..b0632d22b5d 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FlatMapOperationsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/FlatMapOperationsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/GroupingOperationsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/GroupingOperationsTest.kt index 278c877ad42..4601d836dd7 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/GroupingOperationsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/GroupingOperationsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/MapOperationsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/MapOperationsTest.kt index f7e760f4b8a..a20173e2c32 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/MapOperationsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/MapOperationsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/MiscOperationsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/MiscOperationsTest.kt index a3a90da65fa..93a526e05a5 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/MiscOperationsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/MiscOperationsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/ZipOperationsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/ZipOperationsTest.kt index befbc9bf215..294d4584051 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/ZipOperationsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/exec/collection/ZipOperationsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.exec.collection /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/TypedChainTestCase.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/TypedChainTestCase.kt index b658dd87925..f02623dfd39 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/TypedChainTestCase.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/TypedChainTestCase.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi import com.intellij.debugger.streams.kotlin.KotlinPsiChainBuilderTestCase diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/collection/PositiveCollectionBuildTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/collection/PositiveCollectionBuildTest.kt index 8dbc40f643d..02dac02490a 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/collection/PositiveCollectionBuildTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/collection/PositiveCollectionBuildTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi.collection import com.intellij.debugger.streams.kotlin.KotlinPsiChainBuilderTestCase diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/collection/TypedCollectionChainTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/collection/TypedCollectionChainTest.kt index 867bb15f64f..6f4d1157a28 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/collection/TypedCollectionChainTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/collection/TypedCollectionChainTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi.collection import com.intellij.debugger.streams.kotlin.lib.KotlinCollectionSupportProvider diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/AmbiguousChainsTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/AmbiguousChainsTest.kt index 604eb6f3d54..c64f53e8354 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/AmbiguousChainsTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/AmbiguousChainsTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi.java /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/LocationPositiveChainTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/LocationPositiveChainTest.kt index af53459a97f..525f089324a 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/LocationPositiveChainTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/LocationPositiveChainTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi.java /** diff --git a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/TypedJavaChainTest.kt b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/TypedJavaChainTest.kt index ce526c9d7fb..7accb21bb89 100644 --- a/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/TypedJavaChainTest.kt +++ b/idea/tests/com/intellij/debugger/streams/kotlin/psi/java/TypedJavaChainTest.kt @@ -1,3 +1,4 @@ +// Copyright 2000-2017 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.debugger.streams.kotlin.psi.java import com.intellij.debugger.streams.kotlin.lib.JavaStandardLibrarySupportProvider