private -> internal where it's necessary: synchronize OperationsMapGenerated and GenerateOperationsMap.

This commit is contained in:
Ilya Gorbunov
2015-09-26 00:26:59 +03:00
parent 0a24ba77b5
commit ee44717a41
2 changed files with 2 additions and 2 deletions
@@ -17,7 +17,7 @@
package org.jetbrains.kotlin.resolve.constants.evaluate
import java.math.BigInteger
import java.util.*
import java.util.HashMap
/** This file is generated by org.jetbrains.kotlin.generators.evaluate:generate(). DO NOT MODIFY MANUALLY */
@@ -94,7 +94,7 @@ fun generate(): String {
p.println()
p.println("private val binaryOperations: HashMap<BinaryOperationKey<*, *>, Pair<Function2<Any?, Any?, Any>, Function2<BigInteger, BigInteger, BigInteger>>>")
p.println("internal val binaryOperations: HashMap<BinaryOperationKey<*, *>, Pair<Function2<Any?, Any?, Any>, Function2<BigInteger, BigInteger, BigInteger>>>")
p.println(" = hashMapOf<BinaryOperationKey<*, *>, Pair<Function2<Any?, Any?, Any>, Function2<BigInteger, BigInteger, BigInteger>>>(")
p.pushIndent()