Code style issues: use iterable instead of enum set, remove public in interface.

Adapted from https://github.com/develar/kotlin/commit/a9e0a42fb1347fa8e21c86b5a073ef8a7c873da0.
This commit is contained in:
Pavel V. Talanov
2012-08-13 15:48:45 +04:00
parent fe9a2b6e5e
commit a7c6776876
2 changed files with 3 additions and 7 deletions
@@ -23,5 +23,5 @@ import org.mozilla.javascript.Scriptable;
* @author Pavel Talanov
*/
public interface RhinoResultChecker {
public void runChecks(Context context, Scriptable scope) throws Exception;
void runChecks(Context context, Scriptable scope) throws Exception;
}
@@ -17,21 +17,17 @@
*/
package org.jetbrains.k2js.test.semantics;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.intellij.util.ArrayUtil;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.jet.cli.common.ExitCode;
import org.jetbrains.jet.cli.js.K2JSCompiler;
import org.jetbrains.jet.cli.js.K2JSCompilerArguments;
import org.jetbrains.k2js.config.Config;
import org.jetbrains.k2js.config.EcmaVersion;
import org.jetbrains.k2js.test.SingleFileTranslationTest;
import org.jetbrains.k2js.test.utils.LibraryFilePathsUtil;
import javax.annotation.Nullable;
import java.io.File;
import java.util.EnumSet;
import java.util.List;
@SuppressWarnings("UseOfSystemOutOrSystemErr")
@@ -41,13 +37,13 @@ abstract class StdLibTestBase extends SingleFileTranslationTest {
super("stdlib/");
}
protected void performStdLibTest(@NotNull EnumSet<EcmaVersion> ecmaVersions,
protected void performStdLibTest(@NotNull Iterable<EcmaVersion> ecmaVersions,
@NotNull String sourceDir, @NotNull String... stdLibFiles) throws Exception {
List<String> files = constructFilesToCompileList(sourceDir, stdLibFiles);
compileFiles(ecmaVersions, files);
}
private void compileFiles(@NotNull EnumSet<EcmaVersion> ecmaVersions, @NotNull List<String> files) throws Exception {
private void compileFiles(@NotNull Iterable<EcmaVersion> ecmaVersions, @NotNull List<String> files) throws Exception {
List<String> libFiles = LibraryFilePathsUtil.getBasicLibraryFiles();
for (EcmaVersion version : ecmaVersions) {
String outputFilePath = getOutputFilePath(getTestName(false) + ".compiler.kt", version);