All files / src/git zcl_abapgit_git_pack.clas.locals_imp.abap

100% Statements 25/25
100% Branches 0/0
100% Functions 0/0
100% Lines 25/25

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 261x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
*"* use this source file for the definition and implementation of
*"* local helper classes, interface definitions and type
*"* declarations
 
CLASS lcl_stream IMPLEMENTATION.
 
  METHOD constructor.
    mv_data = iv_data.
  ENDMETHOD.
 
  METHOD eat_byte.
    rv_x = mv_data(1).
    mv_data = mv_data+1.
  ENDMETHOD.
 
  METHOD get.
    rv_data = mv_data.
  ENDMETHOD.
 
  METHOD eat_bytes.
    rv_x = mv_data(iv_length).
    mv_data = mv_data+iv_length.
  ENDMETHOD.
 
ENDCLASS.