Changeset 14625 for src/Pugs/Parser
- Timestamp:
- 11/05/06 03:30:55 (2 years ago)
- svk:copy_cache_prev:
- 41990
- Files:
-
- 1 modified
-
src/Pugs/Parser/Operator.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Pugs/Parser/Operator.hs
r14541 r14625 427 427 makeOp2DotAssign prec _ con = (`Infix` prec) $ do 428 428 symbol ".=" 429 insertIntoPosition '.'-- "$x .= foo" becomes "$x .= .foo"429 insertIntoPosition "." -- "$x .= foo" becomes "$x .= .foo" 430 430 return $ \invExp argExp -> case argExp of 431 431 -- XXX - App meth _ args -> stateAssignHack (con ".=" [invExp, App meth Nothing args])
