Changeset 14625 for src/Pugs/Parser

Show
Ignore:
Timestamp:
11/05/06 03:30:55 (2 years ago)
Author:
audreyt
svk:copy_cache_prev:
41990
Message:

* Pugs.Parser: Adjust for the insertIntoPosition change.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Parser/Operator.hs

    r14541 r14625  
    427427makeOp2DotAssign prec _ con = (`Infix` prec) $ do 
    428428    symbol ".=" 
    429     insertIntoPosition '.' -- "$x .= foo" becomes "$x .= .foo" 
     429    insertIntoPosition "." -- "$x .= foo" becomes "$x .= .foo" 
    430430    return $ \invExp argExp -> case argExp of 
    431431        -- XXX - App meth _ args -> stateAssignHack (con ".=" [invExp, App meth Nothing args])