Changeset 3362 for src/Pugs/Parser.hs

Show
Ignore:
Timestamp:
05/17/05 23:22:58 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
4945
Message:

* iblech reported that € doesn't work for some reason. fixed.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Parser.hs

    r3360 r3362  
    943943 
    944944doAppSym :: String -> [Exp] -> Exp 
     945doAppSym name@(_:'p':'r':'e':'f':'i':'x':':':_) args = App (Var name) args [] 
    945946doAppSym (sigil:name) args = App (Var (sigil:("prefix:"++name))) args [] 
    946947doAppSym _ _ = error "doAppSym: bad name"