Changeset 7844
- Timestamp:
- 03/29/07 17:55:03 (20 months ago)
- Location:
- trunk/docscripts
- Files:
-
- 2 modified
-
docparser.php (modified) (1 diff)
-
inc/DojoObject.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/docscripts/docparser.php
r7516 r7844 96 96 $init = $args[3]->getFunction(); 97 97 } 98 if ($args[3]->isA(DojoObject)) { 99 $args[4] = $args[3]; 100 $args[3] = null; 101 } 98 102 } 99 103 else { -
trunk/docscripts/inc/DojoObject.php
r6381 r7844 71 71 break; 72 72 } 73 if (preg_match('%^(\s*)([a-zA-Z0-9_$]+|"\s+") :%', $line, $match)) {73 if (preg_match('%^(\s*)([a-zA-Z0-9_$]+|"\s+")\s*:%', $line, $match)) { 74 74 if ($end[0] != $this->start[0] && $end[1] != $this->start[1]) { 75 75 $between_lines = Text::chop($this->package->getSource(), $end[0], $end[1], $line_number, strlen($match[1]), true);