Skip to content

Commit

Permalink
fix missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Frotty committed Jan 1, 2020
1 parent 386de8e commit 970eba9
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 0 deletions.
Expand Up @@ -10,6 +10,7 @@
import de.peeeq.wurstscript.jassIm.*;
import de.peeeq.wurstscript.translation.imtranslation.ImTranslator;
import de.peeeq.wurstscript.types.TypesHelper;
import static de.peeeq.wurstscript.jassAst.JassAst.*;

public class ExprTranslation {

Expand Down
Expand Up @@ -22,6 +22,8 @@
import java.util.regex.Pattern;
import java.util.stream.Collectors;

import static de.peeeq.wurstscript.jassAst.JassAst.*;

public class ImToJassTranslator {

private ImProg imProg;
Expand Down
Expand Up @@ -8,6 +8,8 @@

import java.util.List;

import static de.peeeq.wurstscript.jassAst.JassAst.*;

public class StatementTranslation {


Expand Down
Expand Up @@ -22,6 +22,7 @@
import java.util.stream.Collectors;

import static de.peeeq.wurstscript.attributes.SmallHelpers.superArgs;
import static de.peeeq.wurstscript.jassIm.JassIm.*;

public class ClassTranslator {

Expand Down
Expand Up @@ -23,6 +23,8 @@
import java.util.List;
import java.util.Map;

import static de.peeeq.wurstscript.jassIm.JassIm.*;

public class ExprTranslation {

public static ImExpr translate(ExprBinary e, ImTranslator t, ImFunction f) {
Expand Down
Expand Up @@ -33,6 +33,8 @@
import java.util.Collections;
import java.util.List;

import static de.peeeq.wurstscript.jassIm.JassIm.*;

/**
* flattening expressions and statements
* after flattening there will be no more StatementExprs
Expand Down
Expand Up @@ -52,6 +52,7 @@

import static de.peeeq.wurstscript.translation.imtranslation.FunctionFlagEnum.*;
import static de.peeeq.wurstscript.utils.Utils.elementNameWithPath;
import static de.peeeq.wurstscript.jassIm.JassIm.*;

public class ImTranslator {

Expand Down
Expand Up @@ -22,6 +22,8 @@
import java.util.List;
import java.util.Optional;

import static de.peeeq.wurstscript.jassIm.JassIm.*;

public class StmtTranslation {

public static ImStmt translate(Expr s, ImTranslator t, ImFunction f) {
Expand Down

0 comments on commit 970eba9

Please sign in to comment.