prepare for decompile if/else
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@792 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
parent
597c9b743a
commit
b7ce02e3d6
|
@ -270,13 +270,22 @@ catch (OuterException $e) {
|
|||
echo $e;
|
||||
}
|
||||
|
||||
if ($a) {
|
||||
echo 'if ($a)';
|
||||
if (if_()) {
|
||||
echo 'if';
|
||||
if (innerIf_()) {
|
||||
echo 'if innerIf';
|
||||
}
|
||||
}
|
||||
else if ($b) {
|
||||
echo 'else if ($b)';
|
||||
else if (elseif_()) {
|
||||
echo 'else if';
|
||||
if (innerIf_()) {
|
||||
echo 'if innerIf';
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (innerIf_()) {
|
||||
echo 'if innerIf';
|
||||
}
|
||||
echo 'else';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue