improved PHP Scanner
[phpeclipse.git] / net.sourceforge.phpeclipse / src / junit / sourceforge / phpeclipse / PHPParserTestCase.java
index 9e6855d..adf4c17 100644 (file)
@@ -8,6 +8,7 @@ http://www.eclipse.org/legal/cpl-v10.html
 **********************************************************************/
 
 import net.sourceforge.phpdt.internal.compiler.parser.Parser;
+import net.sourceforge.phpdt.internal.compiler.parser.Scanner;
 
 import org.eclipse.core.runtime.CoreException;
 import junit.framework.TestCase;
@@ -134,7 +135,7 @@ public class PHPParserTestCase extends TestCase {
 
   private void checkPHP(String strEval) {
     try {
-      if (Parser.DEBUG) {
+      if (Scanner.DEBUG) {
         System.out.println("\n------------------------------------");
         System.out.println(strEval);
       }
@@ -145,7 +146,7 @@ public class PHPParserTestCase extends TestCase {
 
   private void checkHTML(String strEval) {
     try {
-      if (Parser.DEBUG) {
+      if (Scanner.DEBUG) {
         System.out.println("\n------------------------------------");
         System.out.println(strEval);
       }