Contributors:
Igor Malinin - initial contribution
- $Id: PHPPartitionScanner.java,v 1.34 2006-10-21 23:18:32 pombredanne Exp $
+ $Id: PHPPartitionScanner.java,v 1.35 2007-03-17 14:07:31 axelcl Exp $
**********************************************************************/
package net.sourceforge.phpeclipse.phpeditor.php;
return false;
}
ch = document.getChar(position++); // ignore escaped
- // character
+ // character
} else if (ch == '"') {
return true;
}
return false;
}
ch = document.getChar(position++); // ignore escaped
- // character
+ // character
} else if (ch == '\'') {
return true;
}
return false;
}
ch = document.getChar(position++);
+ // #1493165 start
+ while (ch == ' ') {
+ if (position >= end) {
+ return false;
+ }
+ ch = document.getChar(position++);
+ }
+ // #1493165 end
if (!Scanner.isPHPIdentifierStart(ch)) {
return false;
}
return true;
}
ch = document.getChar(position++); // ignore escaped
- // character
+ // character
if (ch != heredocIdent[pos]) {
break;
}