Changeset 12473 for src/Pugs/Lexer.hs

Show
Ignore:
Timestamp:
08/19/06 20:14:41 (2 years ago)
Author:
audreyt
Message:

* Introduce Circumfix and circumfix:<\( )>.

It's all gaal++'s code, I just made it compile :)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Lexer.hs

    r12430 r12473  
    209209    aheadSym '-' '>' = False -- XXX hardcode 
    210210    aheadSym '!' '~' = False -- XXX hardcode 
     211    aheadSym '\\''(' = False -- XXX hardcode 
    211212    aheadSym x   '=' = not (x `elem` "!~+-*&/|.%^") 
    212213    aheadSym '?' y   = not (y `elem` "&|^?")