Index: trunk/phase3/includes/parser/Preprocessor_DOM.php |
— | — | @@ -830,6 +830,7 @@ |
831 | 831 | if ( is_string( $root ) ) { |
832 | 832 | return $root; |
833 | 833 | } |
| 834 | + wfProfileIn( __METHOD__ ); |
834 | 835 | |
835 | 836 | if ( ++$this->parser->mPPNodeCount > $this->parser->mOptions->mMaxPPNodeCount ) |
836 | 837 | { |
— | — | @@ -1005,6 +1006,7 @@ |
1006 | 1007 | $newIterator = $contextNode->childNodes; |
1007 | 1008 | } |
1008 | 1009 | } else { |
| 1010 | + wfProfileOut( __METHOD__ ); |
1009 | 1011 | throw new MWException( __METHOD__.': Invalid parameter type' ); |
1010 | 1012 | } |
1011 | 1013 | |
— | — | @@ -1028,6 +1030,7 @@ |
1029 | 1031 | } |
1030 | 1032 | } |
1031 | 1033 | --$depth; |
| 1034 | + wfProfileOut( __METHOD__ ); |
1032 | 1035 | return $outStack[0]; |
1033 | 1036 | } |
1034 | 1037 | |