Changeset 22313 for v6

Show
Ignore:
Timestamp:
09/22/08 19:30:53 (2 months ago)
Author:
pmurias
Message:

[pugs][smop]
lexical variable work in pugs -Cm0ld
Pugs.Compile.compile marks lexical delarations in PIL1 although not fully correctly

Location:
v6/smop
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • v6/smop/src/smop_s1p_hash.c

    r22017 r22313  
    7474      ret = SMOP_REFERENCE(interpreter,cell); 
    7575    } else { 
    76       fprintf(stderr,"wrong number of arguments to postrcicumfix:<{ }>\n"); 
     76      fprintf(stderr,"wrong number of arguments to postcircumfix:<{ }>\n"); 
    7777    } 
    7878 
  • v6/smop/src/smop_s1p_root_namespace.c

    r22281 r22313  
    3030  smop_s1p_root_namespace_insert(SMOP__GlobalInterpreter,"::MoldFrame", SMOP__Mold__Frame); 
    3131  smop_s1p_root_namespace_insert(SMOP__GlobalInterpreter,"::Code", SMOP__S1P__Code); 
     32  smop_s1p_root_namespace_insert(SMOP__GlobalInterpreter,"::Scalar", SMOP__S1P__Scalar); 
    3233} 
    3334 
  • v6/smop/test/33_pugs_simple.p6-pugs

    r22306 r22313  
    1 $*OUT.print("1..","1\n"); 
    2 $*OUT.print("ok 1\n"); 
     1my $one = "1"; 
     2$*OUT.print("1..1","\n"); 
     3$*OUT.print("ok ",$one,"\n");