Move *OutputFile to package org.jetbrains.kotlin.backend.common.output

This commit is contained in:
Alexander Udalov
2015-01-06 05:09:36 +03:00
parent 329d9da8c8
commit 759b5bd85c
28 changed files with 77 additions and 64 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2013 JetBrains s.r.o.
* Copyright 2010-2015 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.
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.jetbrains.jet
package org.jetbrains.kotlin.backend.common.output
import java.io.File
@@ -37,7 +37,7 @@ public trait OutputFile {
override fun toString() = "$relativePath (compiled from $sourceFiles)"
}
class SimpleOutputFile(
public class SimpleOutputFile(
override val sourceFiles: List<File>,
override val relativePath: String,
private val content: String