Show
Ignore:
Timestamp:
03/25/06 14:19:56 (3 years ago)
Author:
bart
Message:
  • Source code is now shown in dasm.php
  • Added source-code lines to the returned opcode array in ea_dasm.c
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/ea_dasm.c

    • Property svn:keywords set to svn:eol-style
    r178 r189  
    188188 * array() { [0] .. [n] => 
    189189 *      array () { 
     190 *                      [lineno]                => // the line number in the source code 
    190191 *          [opcode]        => // the opcode 
    191192 *          [extended_value]=> // the extended value field 
     
    217218            MAKE_STD_ZVAL(el); 
    218219            array_init(el); 
     220 
     221                        /* lineno */ 
     222                        add_assoc_long(el, "lineno", opline->lineno); 
    219223            
    220224            /* opname */