作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 Unicode 语法的 Haskell 源文件:
{-# LANGUAGE UnicodeSyntax #-}
succ' :: Int → Int
succ' = succ
main :: IO ()
main = print $ succ' 1
import Language.Haskell.Exts (parseModule)
main = do
x <- readFile "test.hs"
print $ parseModule x
ParseFailed (SrcLoc {srcFilename = "<unknown>.hs", srcLine = 6, srcColumn = 1}) "TypeOperators is not enabled"
import Language.Haskell.Exts
main = do
x <- readFile "test.hs"
print $ parseModuleWithMode defaultParseMode
{ extensions = [UnicodeSyntax]
} x
parseFile "test.hs" >>= print
最佳答案
粗略看了一下源代码,它看起来不像 parseModule
在解析之前从源中提取语言编译指示( parseFile
通过调用 getExtensions
来做到这一点)。当解析开始时,启用 unicode 语法已经太晚了。
关于haskell - 使用 haskell-src-exts 解析 UnicodeSyntax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15784076/
我有一个使用 Unicode 语法的 Haskell 源文件: {-# LANGUAGE UnicodeSyntax #-} succ' :: Int → Int succ' = succ main
我是一名优秀的程序员,十分优秀!