All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.ir.interpreter.IrInterpreterConfiguration.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-RC
Show newest version
/*
 * Copyright 2010-2021 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.ir.interpreter

import org.jetbrains.kotlin.platform.TargetPlatform

/**
 * @param platform is used to apply unique platform rules. For example, for JS we must handle `Float` values in special way.
 * @param maxStack describes the maximum allowed call stack size
 * @param maxCommands describes the maximum allowed number of simple instructions performed
 * @param createNonCompileTimeObjects
 *      'true' - interpreter will construct object and initialize its properties despite the fact it is not marked as compile time;
 *      'false' - interpreter will create a representation of empty object, that can be used to get const properties
 */
// TODO maybe create some sort of builder
data class IrInterpreterConfiguration(
    val platform: TargetPlatform? = null,
    val maxStack: Int = 10_000,
    val maxCommands: Int = 1_000_000,
    val createNonCompileTimeObjects: Boolean = false,
    val printOnlyExceptionMessage: Boolean = false,
    val collapseStackTraceFromJDK: Boolean = true,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy