X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/Parser.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/Parser.java index 73d504e..dfb95ea 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/Parser.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/Parser.java @@ -1,6 +1,6 @@ /*********************************************************************************************************************************** - * Copyright (c) 2002 www.phpeclipse.de All rights reserved. This program and the accompanying material are - * made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at + * Copyright (c) 2002 www.phpeclipse.de All rights reserved. This program and the accompanying material are made available under the + * terms of the Common Public License v1.0 which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html * * Contributors: www.phpeclipse.de @@ -3397,9 +3397,11 @@ public class Parser //extends PHPParserSuperclass IProject project = resource.getProject(); if (project != null) { if (PHPFileUtil.determineFilePath(includeNameString, resource, project) == null) { - reportSyntaxError("File: " + expression.toStringExpression() + " doesn't exist in project: " - + project.getLocation().toString(), literal.sourceStart, literal.sourceEnd); - // System.out.println(path.toString() + " - " + expression.toStringExpression()); + // reportSyntaxError("File: " + expression.toStringExpression() + " doesn't exist in project: " + // + project.getLocation().toString(), literal.sourceStart, literal.sourceEnd); + String[] args = { expression.toStringExpression(), project.getLocation().toString() }; + problemReporter.phpIncludeNotExistWarning(args, literal.sourceStart, literal.sourceEnd, referenceContext, + compilationUnit.compilationResult); } } }