Subversion Repositories fastphp

Compare Revisions

Regard whitespace Rev 82 → Rev 81

/trunk/codeexplorer.php
1,4 → 1,4
<?php
<?php
 
// TODO: show full signature of each element?
 
245,7 → 245,7
}
 
 
private static /*final*/ function array_peek($array) {
private static final function array_peek($array) {
if (!isset($array[count($array)-1])) return null;
return $array[count($array)-1];
}
/trunk/FastPHPTreeView.pas
1,4 → 1,4
unit FastPHPTreeView;
unit FastPHPTreeView;
 
interface
 
56,7 → 56,7
 
const
MAGIC_V100 = 'FAST100!';
UTF8_BOM = #$EF#$BB#$BF;
UTF8_BOM = '';
LEN_ICON = 4;
LEN_LINENO = 8;
LEN_DESCLEN = 4;
134,8 → 134,7
end
else
begin
// Can happen if codeexplorer.php did output a warning
raise EFastNodeException.CreateFmt('FastNode version "%s" not supported. More content: %s', [magic, Read(ptr,1000)]);
raise EFastNodeException.CreateFmt('FastNode version "%s" not supported.', [magic]);
end;
{$ENDREGION}