import net.sourceforge.phpdt.internal.compiler.batch.CompilationUnit;
import net.sourceforge.phpdt.internal.compiler.env.ICompilationUnit;
import net.sourceforge.phpdt.internal.compiler.impl.CompilerOptions;
+import net.sourceforge.phpdt.internal.compiler.parser.Scanner;
import net.sourceforge.phpdt.internal.compiler.parser.UnitParser;
import net.sourceforge.phpdt.internal.compiler.problem.DefaultProblem;
import net.sourceforge.phpdt.internal.compiler.problem.DefaultProblemFactory;
}
return name;
}
+ protected void checkHTML(String strEval) {
+ if (Scanner.DEBUG) {
+ System.out.println("\n------------------------------------");
+ System.out.println(strEval);
+ }
+ checkParseHTML(
+ strEval.toCharArray(),
+ "");
+ // parser.phpParserTester(strEval, 1);
+ }
+ // private void checkHTML(String strEval) {
+ // if (Scanner.DEBUG) {
+ // System.out.println("\n------------------------------------");
+ // System.out.println(strEval);
+ // }
+ // parser.parse(strEval);
+ // }
+ // /**
+ // * The JUnit setup method
+ // */
+ // protected void setUp() {
+ // parser = new Parser(null);
+ // }
// public void initialize(CompilerTestSetup setUp) {
// this.complianceLevel = setUp.complianceLevel;