Changeset 1458
- Timestamp:
- 04/03/05 06:01:43 (4 years ago)
- svk:copy_cache_prev:
- 2941
- Location:
- src
- Files:
-
- 40 modified
-
Bind.hs (modified) (1 diff)
-
Compile.hs (modified) (1 diff)
-
Compile/Haskell.hs (modified) (1 diff)
-
Compile/Parrot.hs (modified) (1 diff)
-
Compile/Parrot/AST.hs (modified) (1 diff)
-
Compile/Pugs.hs (modified) (1 diff)
-
Cont.hs (modified) (1 diff)
-
Context.hs (modified) (1 diff)
-
Embed.hs (modified) (1 diff)
-
Embed/Perl5.hs (modified) (1 diff)
-
Eval.hs (modified) (1 diff)
-
External.hs (modified) (1 diff)
-
External/Haskell.hs (modified) (1 diff)
-
External/Haskell/DynamicLoader.hs (modified) (1 diff)
-
External/Haskell/NameLoader.hs (modified) (1 diff)
-
External/Haskell/PathLoader.hs (modified) (1 diff)
-
Help.hs (modified) (1 diff)
-
IMC.hs (modified) (1 diff)
-
IMC/Lexer.hs (modified) (1 diff)
-
Internals.hs (modified) (1 diff)
-
Junc.hs (modified) (1 diff)
-
Lexer.hs (modified) (1 diff)
-
Main.hs (modified) (1 diff)
-
Monads.hs (modified) (1 diff)
-
Parser.hs (modified) (1 diff)
-
Posix.hs (modified) (1 diff)
-
Prim.hs (modified) (1 diff)
-
RRegex.hs (modified) (1 diff)
-
RRegex/PCRE.hs (modified) (1 diff)
-
Rule/Char.hs (modified) (1 diff)
-
Rule/Combinator.hs (modified) (1 diff)
-
Rule/Error.hs (modified) (1 diff)
-
Rule/Expr.hs (modified) (1 diff)
-
Rule/Language.hs (modified) (1 diff)
-
Rule/Perm.hs (modified) (1 diff)
-
Rule/Pos.hs (modified) (1 diff)
-
Rule/Prim.hs (modified) (1 diff)
-
Run/Args.hs (modified) (1 diff)
-
Shell.hs (modified) (1 diff)
-
Unicode.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Bind.hs
r1427 r1458 158 158 , subParams = newParams 159 159 } 160 -
src/Compile.hs
r1427 r1458 19 19 compile "Parrot" = genPIR 20 20 compile s = \_ -> error $ "Cannot compile to " ++ s 21 -
src/Compile/Haskell.hs
r1427 r1458 39 39 40 40 #endif 41 -
src/Compile/Parrot.hs
r1427 r1458 141 141 showText :: (Show a) => a -> Doc 142 142 showText = text . show 143 -
src/Compile/Parrot/AST.hs
r1427 r1458 12 12 , noteUpContext :: ParrotContext 13 13 } 14 -
src/Compile/Pugs.hs
r1427 r1458 14 14 , "mainCC = runAST $ " ++ show exp 15 15 ] 16 -
src/Cont.hs
r1427 r1458 45 45 resetT :: Monad m => ContT a m a -> ContT r m a 46 46 resetT e = C.lift $ e `runContT` return 47 -
src/Context.hs
r1430 r1458 111 111 , Node "Trait" 112 112 [ Node "PkgTrait" [] ] ] 113 -
src/Embed.hs
r1427 r1458 17 17 -- import Embed.Parrot 18 18 -- import Embed.Ponie 19 -
src/Embed/Perl5.hs
r1427 r1458 67 67 68 68 #endif 69 -
src/Eval.hs
r1427 r1458 734 734 | otherwise 735 735 = Nothing 736 -
src/External.hs
r1427 r1458 51 51 , subFun = (Prim fun) 52 52 } 53 -
src/External/Haskell.hs
r1427 r1458 69 69 70 70 #endif 71 -
src/External/Haskell/DynamicLoader.hs
r1427 r1458 372 372 encode_ch '%' = "zv" 373 373 encode_ch c = 'z' : shows (ord c) "U" 374 -
src/External/Haskell/NameLoader.hs
r1063 r1458 360 360 Just val -> return val 361 361 Nothing -> return val 362 -
src/External/Haskell/PathLoader.hs
r1248 r1458 357 357 Just val -> return val 358 358 Nothing -> return val 359 -
src/Help.hs
r1447 r1458 94 94 , "Type :h for help" 95 95 ] 96 -
src/IMC.hs
r1427 r1458 26 26 prog' <- runFoo 27 27 $( imcX prog' ) -- how to get str into prog? 28 -
src/IMC/Lexer.hs
r1427 r1458 50 50 ws = oneOf "\t\f\r\x1A " 51 51 sp = char ' ' 52 -
src/Internals.hs
r1430 r1458 156 156 where 157 157 bytes = map (toEnum . ord) str 158 -
src/Junc.hs
r1427 r1458 119 119 | otherwise = opEval emptyEnv $ "? " ++ out ++ "( " ++ b ++ ", " ++ a ++ ", " ++ c ++ ")" 120 120 -} 121 -
src/Lexer.hs
r1427 r1458 334 334 splitOp (Postfix op) (rassoc,lassoc,nassoc,prefix,postfix) 335 335 = (rassoc,lassoc,nassoc,prefix,op:postfix) 336 336 -
src/Main.hs
r1427 r1458 239 239 printConfigInfo (item:_) = do 240 240 putStrLn $ createConfigLine item 241 -
src/Monads.hs
r1427 r1458 294 294 295 295 returnScope = callerReturn 0 . VStr 296 -
src/Parser.hs
r1429 r1458 992 992 retSyn sym args = do 993 993 return $ Syn sym args 994 -
src/Posix.hs
r1427 r1458 72 72 argv <- peek p_argv 73 73 peekCString =<< peekElemOff argv 0 74 -
src/Prim.hs
r1457 r1458 1010 1010 \\n Bool pre yield (Thread)\ 1011 1011 \\n" 1012 -
src/RRegex.hs
r1427 r1458 84 84 matchRegexAll p str = fmap f (str =~~ p) where 85 85 f MR { mrBefore = b, mrAfter = a, mrSubList = sl, mrMatch = m } = (b,m,a,sl) 86 -
src/RRegex/PCRE.hs
r1427 r1458 186 186 pcreInfoLastliteral = 6 187 187 -} 188 -
src/Rule/Char.hs
r1427 r1458 76 76 string :: String -> CharParser st String 77 77 string s = tokens show updatePosString s 78 -
src/Rule/Combinator.hs
r1427 r1458 153 153 ; return x 154 154 } 155 -
src/Rule/Error.hs
r342 r1458 162 162 163 163 clean = nub . filter (not.null) 164 164 -
src/Rule/Expr.hs
r342 r1458 121 121 splitOp (Postfix op) (rassoc,lassoc,nassoc,prefix,postfix) 122 122 = (rassoc,lassoc,nassoc,prefix,op:postfix) 123 123 -
src/Rule/Language.hs
r1427 r1458 124 124 } 125 125 126 -
src/Rule/Perm.hs
r1427 r1458 123 123 mapBranch f (Branch perm p) 124 124 = Branch (mapPerms (f.) perm) p 125 -
src/Rule/Pos.hs
r630 r1458 78 78 show (SourcePos name line column) = 79 79 unwords ["SourcePos", show name, show line, show column] 80 -
src/Rule/Prim.hs
r1427 r1458 456 456 in walk1 s input) 457 457 458 -
src/Run/Args.hs
r1446 r1458 135 135 combined = a++"\n"++b 136 136 joinDashE (x:xs) = [ x ] ++ joinDashE xs 137 -
src/Shell.hs
r1427 r1458 88 88 addHistory _ = return () 89 89 #endif 90 -
src/Unicode.hs
r1427 r1458 272 272 foreign import ccall unsafe "u_gencat" 273 273 wgencat :: CInt -> Int 274
