language-cil 0.2.0 → 0.2.1
raw patch · 2 files changed
+6/−5 lines, 2 files
Files
- language-cil.cabal +5/−4
- src/Language/Cil/Pretty.hs +1/−1
language-cil.cabal view
@@ -1,5 +1,6 @@ name: language-cil-version: 0.2.0+version: 0.2.1+homepage: https://github.com/tomlokhorst/language-cil synopsis: Manipulating Common Intermediate Language AST description: Language-Cil is a Haskell library for manipulating CIL abstract syntax and generating .il files.@@ -8,11 +9,11 @@ Microsoft Intermediate Language (MSIL), is the lowest level language that runs on Microsoft .NET and Mono. .- Read more on Wikipedia:- <http://en.wikipedia.org/wiki/Common_Intermediate_Language>- . This library is still under development, it only supports a small subset of the full CIL.+ .+ See <https://github.com/tomlokhorst/language-cil#readme>+ for an example of how to quickly get started. license: BSD3 license-file: LICENSE author: Jeroen Leeuwestein,
src/Language/Cil/Pretty.hs view
@@ -26,7 +26,7 @@ -- or '<Thunk>'). prName :: DottedName -> ShowS prName "" = error "Language.Cil.Pretty.prName: Name cannot be empty"-prName n = if n `elem` keywords -- || '<' `elem` n -- temp disabled, fix later: stfld class Lazy<!0>::func+prName n = if n `elem` keywords -- OR '<' `elem` n -- temp disabled, fix later: stfld class Lazy<!0>::func then (escape n ++) else (n ++) where