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

org.jetbrains.jet.cli.jvm.JVMConfigurationKeys Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 * Copyright 2010-2013 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.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.jetbrains.jet.cli.jvm;

import org.jetbrains.jet.config.CompilerConfigurationKey;
import org.jetbrains.jet.lang.resolve.AnalyzerScriptParameter;

import java.io.File;
import java.util.List;

public class JVMConfigurationKeys {
    private JVMConfigurationKeys() {
    }

    public static final CompilerConfigurationKey> CLASSPATH_KEY = CompilerConfigurationKey.create("classpath");
    public static final CompilerConfigurationKey> ANNOTATIONS_PATH_KEY = CompilerConfigurationKey.create("annotations path");

    public static final CompilerConfigurationKey> SCRIPT_PARAMETERS = CompilerConfigurationKey.create("script");

    public static final CompilerConfigurationKey GENERATE_NOT_NULL_ASSERTIONS =
            CompilerConfigurationKey.create("generate not-null assertions");
    public static final CompilerConfigurationKey GENERATE_NOT_NULL_PARAMETER_ASSERTIONS =
            CompilerConfigurationKey.create("generate not-null parameter assertions");

    public static final CompilerConfigurationKey ENABLE_INLINE =
            CompilerConfigurationKey.create("enable inline");

    public static final CompilerConfigurationKey ENABLE_OPTIMIZATION =
            CompilerConfigurationKey.create("enable optimization");

    public static final CompilerConfigurationKey INCREMENTAL_CACHE_BASE_DIR =
            CompilerConfigurationKey.create("incremental cache base dir");

    public static final CompilerConfigurationKey> MODULE_IDS =
            CompilerConfigurationKey.create("module id strings");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy