Changeset 12636

Show
Ignore:
Timestamp:
02/22/08 18:52:07 (11 months ago)
Author:
pottedmeat
Message:

Refs #5602. More fixes for variable resolving

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • util/trunk/docscripts/lib/parser/DojoFunctionBody.php

    r12632 r12636  
    253253              $found = false; 
    254254              foreach ($internals as $internal_name => $external_name) { 
     255                if ($internal_name == 'this') continue; 
    255256                if (strpos($match, $internal_name . '.') === 0) { 
    256257                  $last = $match; 
     
    470471          $found = false; 
    471472          foreach ($internals as $internal_name => $external_name) { 
     473            if ($internal_name == 'this') continue; 
    472474            if (strpos($name, $internal_name . '.') === 0) { 
    473475              if (!$external_name) continue 2;