Changeset 15092 for src/Pugs/Parser

Show
Ignore:
Timestamp:
01/18/07 18:46:43 (22 months ago)
Author:
lwall
Message:

Fixed s[] x= $n

Files:
1 modified

Legend:

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

    r14696 r15092  
    626626pseudoAssignment = verbatimRule "infix assignment" $ do 
    627627    ahead <- lookAhead (string ".=" <|> ruleInfixAssignment <|> string "=") 
    628     insertIntoPosition "$_" 
     628    insertIntoPosition "$_ " 
    629629    item <- parseExpWithTightOps 
    630630    return $ case ahead of