Ignore:
Timestamp:
12/14/12 14:30:35 (11 years ago)
Author:
douglasz
Message:

Ticket #3236 - Melhorias de performance no codigo do Expresso.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/inc/nano/JSON.php

    r795 r7655  
    714714                            // found a comment start, and we are in an array, object, or slice 
    715715                            array_push($stk, array('what' => SERVICES_JSON_IN_CMT, 'where' => $c, 'delim' => false)); 
    716                             $c++; 
     716                            ++$c; 
    717717                            //print("Found start of comment at {$c}\n"); 
    718718 
     
    720720                            // found a comment end, and we're in one now 
    721721                            array_pop($stk); 
    722                             $c++; 
     722                            ++$c; 
    723723 
    724724                            for ($i = $top['where']; $i <= $c; ++$i) 
Note: See TracChangeset for help on using the changeset viewer.