language-objc: Analysis and generation of Objective C code

[ bsd3, language, library ] [ Propose Tags ]

Language-ObjC is a haskell library for the analysis and generation of Objective C code. It features a complete, well tested parser and pretty printer.


[Skip to Readme]

Modules

[Last Documentation]

  • Language
    • Language.ObjC
      • Language.ObjC.Analysis
        • Language.ObjC.Analysis.AstAnalysis
        • Language.ObjC.Analysis.Builtins
        • Language.ObjC.Analysis.ConstEval
        • Language.ObjC.Analysis.Debug
        • Language.ObjC.Analysis.DeclAnalysis
        • Language.ObjC.Analysis.DefTable
        • Language.ObjC.Analysis.Export
        • Language.ObjC.Analysis.NameSpaceMap
        • Language.ObjC.Analysis.SemError
        • Language.ObjC.Analysis.SemRep
        • Language.ObjC.Analysis.TravMonad
        • Language.ObjC.Analysis.TypeCheck
        • Language.ObjC.Analysis.TypeConversions
        • Language.ObjC.Analysis.TypeUtils
      • Language.ObjC.Data
        • Language.ObjC.Data.Error
        • Language.ObjC.Data.Ident
        • Language.ObjC.Data.InputStream
        • Language.ObjC.Data.Name
        • Language.ObjC.Data.Node
        • Language.ObjC.Data.Position
      • Language.ObjC.Parser
      • Language.ObjC.Pretty
      • Language.ObjC.Syntax
        • Language.ObjC.Syntax.AST
        • Language.ObjC.Syntax.Builders
        • Language.ObjC.Syntax.Constants
        • Language.ObjC.Syntax.Ops
        • Language.ObjC.Syntax.Utils
      • Language.ObjC.System
        • Language.ObjC.System.GCC
        • Language.ObjC.System.Preprocess

Flags

Automatic Flags
NameDescriptionDefault
usebytestrings

Use ByteString as InputStream datatype

Enabled
separatesyb

Data.Generics available in separate package.

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.4.2.0, 0.4.2.1, 0.4.2.2, 0.4.2.3, 0.4.2.4, 0.4.2.5, 0.4.2.6, 0.4.2.7, 0.4.2.8
Change log ChangeLog
Dependencies array (>=0.4 && <0.5), base (>=3 && <5), bytestring (>=0.9.0), containers (>=0.4 && <0.6), directory (>=1.1 && <1.2), filepath (>=1.1 && <1.4), newtype (>=0.2 && <0.3), pretty (>=1.1 && <1.2), process (>=1.1 && <1.2), syb (>=0.3 && <0.4) [details]
License BSD-3-Clause
Copyright LICENSE
Author AUTHORS
Maintainer jwlato@gmail.com
Category Language
Home page http://www.tiresiaspress.us/haskell/language-objc
Source repo head: git clone http://github.com/JohnLato/language-objc.git
Uploaded by JohnLato at 2012-09-26T13:51:32Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 6553 total (21 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-24 [all 6 reports]

Readme for language-objc-0.4.2.4

[back to package description]
= Language.C =

Language.C is a parser and pretty-printer framework for C99 and the extensions of gcc.

See http://www.sivity.net/projects/language.c/

== Build and Install ==

cabal install

-- or --

runhaskell Setup configure FLAGS
runhaskell Setup build
runhaskell Setup install

Provide the set of flags passing
 --flags="<flags-seperated-by-space>"
to configure.

== Compatibility ==

Tested with ghc-6.12 (Ubuntu), ghc-7.0 (OSX 10.5, Linux) and ghc-7.2 (Linux).
It is recommended to use the most recent platform release: http://hackage.haskell.org/platform/.

== Sources ==

see src/README

== Examples ==

A couple of small examples are available in /examples

== Testing ==

A couple of regression tests can be run via
> cd test/harness; make

For more tests, see test/README.