Create simple renderer for old frontend

It uses DescriptorRendererImpl that isn't quite good.
This commit is contained in:
Ivan Cilcic
2019-08-09 12:05:06 +03:00
committed by Mikhail Glukhikh
parent e69e6a1eeb
commit 1879fd19eb
2 changed files with 83 additions and 0 deletions
@@ -0,0 +1,10 @@
/*
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.compiler.visualizer
interface BaseRenderer {
fun render(): String
}