Code coverage for case.li


///////////////////////////////////////////////////////////////////////////////
//                             Lisaac Compiler                               //
//                                                                           //
//                   LSIIT - ULP - CNRS - INRIA - FRANCE                     //
//                                                                           //
//   This program is free software: you can redistribute it and/or modify    //
//   it under the terms of the GNU General Public License as published by    //
//   the Free Software Foundation, either version 3 of the License, or       //
//   (at your option) any later version.                                     //
//                                                                           //
//   This program is distributed in the hope that it will be useful,         //
//   but WITHOUT ANY WARRANTY; without even the implied warranty of          //
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           //
//   GNU General Public License for more details.                            //
//                                                                           //
//   You should have received a copy of the GNU General Public License       //
//   along with this program.  If not, see <http://www.gnu.org/licenses/>.   //
//                                                                           //
//                     http://isaacproject.u-strasbg.fr/                     //
///////////////////////////////////////////////////////////////////////////////
Section Header

  + name        := CASE;

  - copyright   := "2003-2007 Benoit Sonntag";


  - author      := "Sonntag Benoit (bsonntag@loria.fr)";
  - comment     := "Case for Switch.";

Section Inherit

  - parent_any:ANY := ANY;

Section Public

  + id:TYPE;

  + code:LIST;

  - set_code new_code:LIST <-
  (
    code := new_code;
  )
;

  //
  // Creation.
  //

  - create val:TYPE with c:LIST :SELF <-
  ( + result:SELF;

    result := clone;
    result.make val with c;
    result
  )
;

  - make val:TYPE with c:LIST <-
  ( + tb:PROFIL_BLOCK;
    id   := val;
    code := c;
    //
    tb ?= val;
    (tb != NULL).if {
      tb.inc_id;
    }
;
  )
;

  - my_copy:SELF <-
  ( + result:SELF;

    result := SELF.create id with (code.my_copy);
    result
  )
;

  - remove <-
  ( + tb:PROFIL_BLOCK;
    code.remove;
    tb ?= id;
    (tb != NULL).if {
      tb.dec_id;
    }
;
  )
;

  //
  // Comparaison.
  //

  - Self:SELF '~=' other:CASE :BOOLEAN <-
  // BSBS : Naive implantation...
  ( + result:BOOLEAN;
    + wrt1,wrt2:WRITE_LOCAL;

    ((code.count = 1) && {code.count = other.code.count}).if {
      wrt1 ?= code.first;
      wrt2 ?= other.code.first;
      result := (
        (wrt1 != NULL) &&
        {wrt2 != NULL} &&
        {wrt1.variable = wrt2.variable} &&
        {wrt1.value ~= wrt2.value}
      )
;
    }
;
    result
  )
;

  //
  // Execute
  //

  - execute <-
  (
    id.set_late_binding;
    code.execute_case;
  )
;

  //
  // Genere
  //

  - genere buffer:STRING <-
  (
    code.genere buffer;
  )
;