Show
Ignore:
Timestamp:
09/28/05 23:08:26 (3 years ago)
Author:
autrijus
Message:

r7196@not: autrijus | 2005-09-28 11:04:59 +0300


r7197@not: autrijus | 2005-09-28 11:28:35 +0300

  • beginning of the main pugs cabal file r7198@not: autrijus | 2005-09-28 12:36:41 +0300
  • some more metadata for Pugs.cabal. r7211@not: autrijus | 2005-09-28 21:27:14 +0300
  • releng: normalize and todoize tests. r7221@not: autrijus | 2005-09-29 00:05:29 +0300
  • Remove the unreferenced Pugs.AST.Types.
  • Move the ill-named Pugs.Context back inside Pugs.Types.
  • Reuse its Tolkien quote for the underquoted Pugs.Version.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/var/refs_point_to_containers.t

    r6573 r7190  
    1414 
    1515  $num = 4; 
    16   is $$ref, 4, "refs to scalars point to containers, not cells or even values (1)"; 
     16  is $$ref, 4, "refs to scalars point to containers, not cells or even values (1)", :todo<bug>; 
    1717 
    1818  $num := 5; 
    19   is $$ref, 5, "refs to scalars point to containers, not cells or even values (2)"; 
     19  is $$ref, 5, "refs to scalars point to containers, not cells or even values (2)", :todo<bug>; 
    2020} 
    2121 
     
    2626 
    2727  @array[1] = 3; 
    28   is $$ref, 3, "refs to arrays point to containers, not cells or even values (1)"; 
     28  is $$ref, 3, "refs to arrays point to containers, not cells or even values (1)", :todo<bug>; 
    2929 
    3030  try { @array[1] := 4 }; 
    31   is $$ref, 4, "refs to arrays point to containers, not cells or even values (2)"; 
     31  is $$ref, 4, "refs to arrays point to containers, not cells or even values (2)", :todo<bug>; 
    3232} 
    3333 
     
    4242 
    4343    try { @array[1] := 4 }; 
    44     is $arrayref[1], 4, "automatically reffed arrays point to containers (2)"; 
     44    is $arrayref[1], 4, "automatically reffed arrays point to containers (2)", :todo<bug>; 
    4545  }; 
    4646 
     
    5252  my $arrayref = [1,2,3]; 
    5353  my $test  = sub (@array) { 
    54     is @array[1], 2, "automatically dereffed arrays"; 
     54    is @array[1], 2, "automatically dereffed arrays", :todo<bug>; 
    5555 
    5656    $arrayref[1] = 3; 
    57     is @array[1], 3, "automatically dereffed arrays point to containers (1)"; 
     57    is @array[1], 3, "automatically dereffed arrays point to containers (1)", :todo<bug>; 
    5858 
    5959    try { $arrayref[1] := 4 }; 
    60     is @array[1], 4, "automatically dereffed arrays point to containers (2)"; 
     60    is @array[1], 4, "automatically dereffed arrays point to containers (2)", :todo<bug>; 
    6161  }; 
    6262