mirror of
https://github.com/photonstorm/phaser
synced 2024-11-16 09:48:18 +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,9 +26,13 @@
|
|||
{
|
||||
preg_match("/(@param)\s(\S*)\s{(\S*)}\s?(.*)?/", $line, $output);
|
||||
|
||||
// $this->processor->log("parsePixi parameter");
|
||||
$this->processor->log("parsePixi parameter - " . count($output));
|
||||
|
||||
if (count($output) > 0)
|
||||
{
|
||||
$this->parsePixi($output);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue