[VISUALIZER] Remove ignore directive from correct test files

This commit is contained in:
Ivan Kylchik
2021-02-20 17:01:20 +03:00
committed by TeamCityServer
parent 59416f447e
commit 13ef126d4c
29 changed files with 5 additions and 31 deletions
@@ -1,4 +1,3 @@
// FIR_IGNORE
abstract class A {
abstract class Nested
}
@@ -1,4 +1,3 @@
// FIR_IGNORE
object A {
constructor()
init {}
@@ -1,4 +1,3 @@
// FIR_IGNORE
open class Base<T>(val x: T)
// constructor Base<T>(T)
@@ -1,4 +1,3 @@
// FIR_IGNORE
fun test() {
// <anonymous>
// │
@@ -1,4 +1,3 @@
// FIR_IGNORE
import my.println
enum class Order {
@@ -1,4 +1,3 @@
// FIR_IGNORE
interface Some
object O1 : Some
@@ -1,4 +1,3 @@
// FIR_IGNORE
// T fun (() -> T).invoke(): T
// │ │
fun <T> simpleRun(f: () -> T): T = f()
@@ -1,4 +1,3 @@
// FIR_IGNORE
class NoPrimary {
// String
// │
@@ -1,4 +1,3 @@
// FIR_IGNORE
//constructor annotation/Target(vararg annotation/AnnotationTarget)
//│ enum class annotation/AnnotationTarget: Enum<annotation/AnnotationTarget>
//│ │ enum entry annotation/AnnotationTarget.EXPRESSION
@@ -1,4 +1,3 @@
// FIR_IGNORE
// WITH_RUNTIME
// fun (Int).plus(Int): Int
// Int │ distance.y: Int
@@ -1,4 +1,3 @@
// FIR_IGNORE
//WITH_RUNTIME
package test
@@ -1,4 +1,3 @@
// FIR_IGNORE
annotation class Ann1(val arr: IntArray)
annotation class Ann2(val arr: DoubleArray)
@@ -1,4 +1,3 @@
// FIR_IGNORE
data class Some(val first: Int, val second: Double, val third: String)
fun foo(some: Some) {
@@ -1,4 +1,3 @@
// FIR_IGNORE
fun foo() {
// Int
// │fun (Int).rangeTo(Int): ranges/IntRange
@@ -1,4 +1,3 @@
// FIR_IGNORE
// Nothing?
// │ Nothing?
// │ │
@@ -1,4 +1,3 @@
// FIR_IGNORE
class WithInit(x: Int) {
// Int
// │
@@ -1,4 +1,3 @@
// FIR_IGNORE
// WITH_RUNTIME
fun simple() {
// Int Int
@@ -1,4 +1,3 @@
// FIR_IGNORE
fun test() {
// class Array<T>: Any, Cloneable, java/io/Serializable
// │
@@ -1,4 +1,3 @@
// FIR_IGNORE
interface A {
fun foo() {}
}
@@ -1,4 +1,3 @@
// FIR_IGNORE
class Some {
// Int
// │ Int
@@ -1,4 +1,3 @@
// FIR_IGNORE
fun foo() {
// Int Int
// │ │
@@ -1,4 +1,3 @@
// FIR_IGNORE
// WITH_RUNTIME
fun foo(limit: Int) {
// Int Int
@@ -1,4 +1,3 @@
// FIR_IGNORE
interface Base {
fun printMessage()
fun printMessageLine()
@@ -1,4 +1,3 @@
// FIR_IGNORE
package p
class A {
@@ -1,4 +1,3 @@
// FIR_IGNORE
package org.jetbrains.kotlin.test
// Int Int
@@ -1,4 +1,3 @@
// FIR_IGNORE
interface Source<out T> {
fun nextT(): T
}