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]

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.3), filepath (>=1.1 && <1.4), newtype (>=0.2 && <0.3), pretty (>=1.1 && <1.2), process (>=1.1 && <1.2), syb (>=0.3 && <0.5) [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 2013-04-18T14:16:55Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 6521 total (13 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for language-objc-0.4.2.6

[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.