// resolve the relative path from include path
String relativeLocationFromIncludePath = getFileName(
fileNames[i], sourceModule);
if (relativeLocationFromIncludePath != null) {
Include include = ast.newInclude(ast.newScalar("'" //$NON-NLS-1$
+ relativeLocationFromIncludePath.toString()
+ "'"), Include.IT_REQUIRE_ONCE); //$NON-NLS-1$
program.statements().add(i,
ast.newExpressionStatement(include));
TextEdit edits = program.rewrite(document, null);