Changeset 7901 for src/Pugs/Lexer.hs

Show
Ignore:
Timestamp:
11/07/05 20:38:21 (3 years ago)
Author:
iblech
Message:

* t/builtins/numify.t: Added Larry's testcase posted to p6c (link to

nntp.perl.org included in the test).

* t/var/caller.t: "my $a is env" is spelled "env $a" now, according to latest S02 (r6537).
* Pugs.Parser: "+" is a valid twigil now.
* Pugs.AST.Scope, Pugs.Lexer: Added SEnv.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Lexer.hs

    r7752 r7901  
    275275    readScope "let"     = SLet 
    276276    readScope "temp"    = STemp 
     277    readScope "env"     = SEnv 
    277278    readScope _         = SGlobal 
    278279