Diagnostics rewritten in Kotlin

This commit is contained in:
Andrey Breslav
2014-04-24 15:39:10 +04:00
parent 71ad59fdf8
commit cb127a5a62
2 changed files with 43 additions and 70 deletions
@@ -1,70 +0,0 @@
/*
* 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 org.jetbrains.jet.lang.resolve;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.jet.lang.diagnostics.Diagnostic;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
public interface Diagnostics extends Iterable<Diagnostic> {
@NotNull
Collection<Diagnostic> all();
@NotNull
Collection<Diagnostic> forElement(@NotNull PsiElement psiElement);
boolean isEmpty();
@NotNull
Diagnostics noSuppression();
Diagnostics EMPTY = new Diagnostics() {
@NotNull
@Override
public Collection<Diagnostic> all() {
return Collections.emptyList();
}
@NotNull
@Override
public Collection<Diagnostic> forElement(@NotNull PsiElement psiElement) {
return Collections.emptyList();
}
@Override
public boolean isEmpty() {
return true;
}
@NotNull
@Override
public Diagnostics noSuppression() {
return this;
}
@NotNull
@Override
public Iterator<Diagnostic> iterator() {
return all().iterator();
}
};
}
@@ -0,0 +1,43 @@
/*
* 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 org.jetbrains.jet.lang.resolve
import com.intellij.psi.PsiElement
import org.jetbrains.annotations.ReadOnly
import org.jetbrains.jet.lang.diagnostics.Diagnostic
import java.util.Collections
public trait Diagnostics : Iterable<Diagnostic> {
fun all(): Collection<Diagnostic>
fun forElement(psiElement: PsiElement): Collection<Diagnostic>
fun isEmpty(): Boolean
fun noSuppression(): Diagnostics
class object {
public val EMPTY: Diagnostics = object : Diagnostics {
override fun all() = listOf<Diagnostic>()
override fun forElement(psiElement: PsiElement) = listOf<Diagnostic>()
override fun isEmpty() = true
override fun noSuppression() = this
override fun iterator() = all().iterator()
}
}
}