Replace "jet" with KotlinBuiltIns.FQ_NAME
#KT-2896 Fixed
This commit is contained in:
@@ -17,17 +17,19 @@
|
||||
package org.jetbrains.jet.cli.jvm.compiler;
|
||||
|
||||
import org.jetbrains.jet.lang.resolve.AnalyzerScriptParameter;
|
||||
import org.jetbrains.jet.lang.resolve.name.FqName;
|
||||
import org.jetbrains.jet.lang.resolve.name.Name;
|
||||
import org.jetbrains.jet.lang.types.ref.JetTypeName;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
public class CommandLineScriptUtils {
|
||||
import static org.jetbrains.jet.lang.types.lang.KotlinBuiltIns.BUILT_INS_PACKAGE_FQ_NAME;
|
||||
|
||||
public class CommandLineScriptUtils {
|
||||
private static final Name ARGS_NAME = Name.identifier("args");
|
||||
private static final JetTypeName ARGS_TYPE = JetTypeName.parse("jet.Array<jet.String>");
|
||||
|
||||
private static final JetTypeName ARGS_TYPE =
|
||||
JetTypeName.parse(BUILT_INS_PACKAGE_FQ_NAME + ".Array<" + BUILT_INS_PACKAGE_FQ_NAME + ".String>");
|
||||
|
||||
private CommandLineScriptUtils() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user