mirror of
https://github.com/photonstorm/phaser
synced 2024-11-16 17:58:23 +00:00
Now parses the whole codebase without throwing any errors :)
This commit is contained in:
parent
e945defb86
commit
090e550964
1 changed files with 6 additions and 2 deletions
|
@ -26,8 +26,12 @@
|
||||||
{
|
{
|
||||||
preg_match("/(@param)\s(\S*)\s{(\S*)}\s?(.*)?/", $line, $output);
|
preg_match("/(@param)\s(\S*)\s{(\S*)}\s?(.*)?/", $line, $output);
|
||||||
|
|
||||||
// $this->processor->log("parsePixi parameter");
|
$this->processor->log("parsePixi parameter - " . count($output));
|
||||||
$this->parsePixi($output);
|
|
||||||
|
if (count($output) > 0)
|
||||||
|
{
|
||||||
|
$this->parsePixi($output);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue