pkgsrc/devel/hs-haskell-src-exts/PLIST

106 lines
8.9 KiB
Text
Raw Normal View History

Update to 1.17.0 CHANGELOG: 1.16.0.1 --> 1.17.0 =================== AST changes: * Replaced VarA with AppA in Asst (#168). * Promoted list/tuple members changed from Promoted to Type (#162). * Update PatBind, Match, and Alt from containing Binds to Maybe Binds to distinguish between empty where clauses and where clauses with no binds (#244). * Add RoleAnnotDecl and Role to support Role annotations (#215). * Move NameSpace field from EVar/IVar to EAbs/IAbs. Other changes: * Add standalone parsers for ImportDecl. * Fix pretty-printer bugs for HaRP (#160). * Insert parentheses when pretty-printing non-atomic bang types (#169). * Un-reverse confusion of left and right arrow (#175). * Prettyprint option pragmas like 1.15 (#172). * Conditionally insert lines when pretty-printing declarations (#171). * Distinguish deriving (Show) from deriving Show (#189). * Allow parsing of unicode subscript and superscript functions (#173). * Pretty print unboxed tuples with spaces (#193). * Improve performance when parsing long extension lists (#200). * Properly pretty print constructor and class operators (#204). * Read Haskell source files as UTF-8 (#223). * Fix ExplicitNamespaces parsing (#216). * PolyKinds implies KindSignatures (#220). * Preserve location information for infix binds (#205). * Preserve positional information in checkPattern (#231). * Maintain correct line numbers when parsing multiline GHC_OPTIONS (#218). * Correctly parse "*" with TypeOperators (#81). * Export the "pretty" method (#222). * Add javascript calling convention for foreign imports (#236). * Add non-greedy parsers for module heads (#191). * Add a flag to disable arity checking when parsing (#260). * Parse "-" in type signatures (#206). * Add support for type wildcards and expression holes (#252). * Add support for Pattern Synonyms (#197). * Bump the happy lower bound (#250). * Make test suite pass on GHC 7.12 (#224). * Support linking Haddock comments to AST nodes (#213). * Parse multiline LANGUAGE pragmas (#217). * Parse trailing where (#25). * Parse modules starting with pragmas and indented "module" keyword (#122). * Use pretty-show to get human readable test outputs. * Respect fixity declarations inside where/let/class in `applyFixities` (#212). * Correctly parse the combination of view patterns and bang patterns. (#276)
2015-11-18 22:31:14 +01:00
@comment $NetBSD: PLIST,v 1.2 2015/11/18 21:31:14 szptvlfn Exp $
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/HShaskell-src-exts-${PKGVERSION}.o
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Annotated.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Annotated/Build.hi
Update to 1.17.0 CHANGELOG: 1.16.0.1 --> 1.17.0 =================== AST changes: * Replaced VarA with AppA in Asst (#168). * Promoted list/tuple members changed from Promoted to Type (#162). * Update PatBind, Match, and Alt from containing Binds to Maybe Binds to distinguish between empty where clauses and where clauses with no binds (#244). * Add RoleAnnotDecl and Role to support Role annotations (#215). * Move NameSpace field from EVar/IVar to EAbs/IAbs. Other changes: * Add standalone parsers for ImportDecl. * Fix pretty-printer bugs for HaRP (#160). * Insert parentheses when pretty-printing non-atomic bang types (#169). * Un-reverse confusion of left and right arrow (#175). * Prettyprint option pragmas like 1.15 (#172). * Conditionally insert lines when pretty-printing declarations (#171). * Distinguish deriving (Show) from deriving Show (#189). * Allow parsing of unicode subscript and superscript functions (#173). * Pretty print unboxed tuples with spaces (#193). * Improve performance when parsing long extension lists (#200). * Properly pretty print constructor and class operators (#204). * Read Haskell source files as UTF-8 (#223). * Fix ExplicitNamespaces parsing (#216). * PolyKinds implies KindSignatures (#220). * Preserve location information for infix binds (#205). * Preserve positional information in checkPattern (#231). * Maintain correct line numbers when parsing multiline GHC_OPTIONS (#218). * Correctly parse "*" with TypeOperators (#81). * Export the "pretty" method (#222). * Add javascript calling convention for foreign imports (#236). * Add non-greedy parsers for module heads (#191). * Add a flag to disable arity checking when parsing (#260). * Parse "-" in type signatures (#206). * Add support for type wildcards and expression holes (#252). * Add support for Pattern Synonyms (#197). * Bump the happy lower bound (#250). * Make test suite pass on GHC 7.12 (#224). * Support linking Haddock comments to AST nodes (#213). * Parse multiline LANGUAGE pragmas (#217). * Parse trailing where (#25). * Parse modules starting with pragmas and indented "module" keyword (#122). * Use pretty-show to get human readable test outputs. * Respect fixity declarations inside where/let/class in `applyFixities` (#212). * Correctly parse the combination of view patterns and bang patterns. (#276)
2015-11-18 22:31:14 +01:00
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Annotated/Comments.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Annotated/ExactPrint.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Annotated/Fixity.hi
Update to 1.17.0 CHANGELOG: 1.16.0.1 --> 1.17.0 =================== AST changes: * Replaced VarA with AppA in Asst (#168). * Promoted list/tuple members changed from Promoted to Type (#162). * Update PatBind, Match, and Alt from containing Binds to Maybe Binds to distinguish between empty where clauses and where clauses with no binds (#244). * Add RoleAnnotDecl and Role to support Role annotations (#215). * Move NameSpace field from EVar/IVar to EAbs/IAbs. Other changes: * Add standalone parsers for ImportDecl. * Fix pretty-printer bugs for HaRP (#160). * Insert parentheses when pretty-printing non-atomic bang types (#169). * Un-reverse confusion of left and right arrow (#175). * Prettyprint option pragmas like 1.15 (#172). * Conditionally insert lines when pretty-printing declarations (#171). * Distinguish deriving (Show) from deriving Show (#189). * Allow parsing of unicode subscript and superscript functions (#173). * Pretty print unboxed tuples with spaces (#193). * Improve performance when parsing long extension lists (#200). * Properly pretty print constructor and class operators (#204). * Read Haskell source files as UTF-8 (#223). * Fix ExplicitNamespaces parsing (#216). * PolyKinds implies KindSignatures (#220). * Preserve location information for infix binds (#205). * Preserve positional information in checkPattern (#231). * Maintain correct line numbers when parsing multiline GHC_OPTIONS (#218). * Correctly parse "*" with TypeOperators (#81). * Export the "pretty" method (#222). * Add javascript calling convention for foreign imports (#236). * Add non-greedy parsers for module heads (#191). * Add a flag to disable arity checking when parsing (#260). * Parse "-" in type signatures (#206). * Add support for type wildcards and expression holes (#252). * Add support for Pattern Synonyms (#197). * Bump the happy lower bound (#250). * Make test suite pass on GHC 7.12 (#224). * Support linking Haddock comments to AST nodes (#213). * Parse multiline LANGUAGE pragmas (#217). * Parse trailing where (#25). * Parse modules starting with pragmas and indented "module" keyword (#122). * Use pretty-show to get human readable test outputs. * Respect fixity declarations inside where/let/class in `applyFixities` (#212). * Correctly parse the combination of view patterns and bang patterns. (#276)
2015-11-18 22:31:14 +01:00
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Annotated/Parser.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Annotated/Simplify.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Annotated/Syntax.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Build.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Comments.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/ExtScheme.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Extension.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Fixity.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/InternalLexer.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/InternalParser.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Lexer.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/ParseMonad.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/ParseSyntax.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/ParseUtils.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Parser.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Pretty.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/SrcLoc.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/Language/Haskell/Exts/Syntax.hi
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/libHShaskell-src-exts-${PKGVERSION}.a
lib/haskell-src-exts-${PKGVERSION}/${HASKELL_VERSION}/package-description
share/doc/haskell-src-exts-${PKGVERSION}/LICENSE
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Annotated-Build.html
Update to 1.17.0 CHANGELOG: 1.16.0.1 --> 1.17.0 =================== AST changes: * Replaced VarA with AppA in Asst (#168). * Promoted list/tuple members changed from Promoted to Type (#162). * Update PatBind, Match, and Alt from containing Binds to Maybe Binds to distinguish between empty where clauses and where clauses with no binds (#244). * Add RoleAnnotDecl and Role to support Role annotations (#215). * Move NameSpace field from EVar/IVar to EAbs/IAbs. Other changes: * Add standalone parsers for ImportDecl. * Fix pretty-printer bugs for HaRP (#160). * Insert parentheses when pretty-printing non-atomic bang types (#169). * Un-reverse confusion of left and right arrow (#175). * Prettyprint option pragmas like 1.15 (#172). * Conditionally insert lines when pretty-printing declarations (#171). * Distinguish deriving (Show) from deriving Show (#189). * Allow parsing of unicode subscript and superscript functions (#173). * Pretty print unboxed tuples with spaces (#193). * Improve performance when parsing long extension lists (#200). * Properly pretty print constructor and class operators (#204). * Read Haskell source files as UTF-8 (#223). * Fix ExplicitNamespaces parsing (#216). * PolyKinds implies KindSignatures (#220). * Preserve location information for infix binds (#205). * Preserve positional information in checkPattern (#231). * Maintain correct line numbers when parsing multiline GHC_OPTIONS (#218). * Correctly parse "*" with TypeOperators (#81). * Export the "pretty" method (#222). * Add javascript calling convention for foreign imports (#236). * Add non-greedy parsers for module heads (#191). * Add a flag to disable arity checking when parsing (#260). * Parse "-" in type signatures (#206). * Add support for type wildcards and expression holes (#252). * Add support for Pattern Synonyms (#197). * Bump the happy lower bound (#250). * Make test suite pass on GHC 7.12 (#224). * Support linking Haddock comments to AST nodes (#213). * Parse multiline LANGUAGE pragmas (#217). * Parse trailing where (#25). * Parse modules starting with pragmas and indented "module" keyword (#122). * Use pretty-show to get human readable test outputs. * Respect fixity declarations inside where/let/class in `applyFixities` (#212). * Correctly parse the combination of view patterns and bang patterns. (#276)
2015-11-18 22:31:14 +01:00
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Annotated-Comments.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Annotated-ExactPrint.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Annotated-Fixity.html
Update to 1.17.0 CHANGELOG: 1.16.0.1 --> 1.17.0 =================== AST changes: * Replaced VarA with AppA in Asst (#168). * Promoted list/tuple members changed from Promoted to Type (#162). * Update PatBind, Match, and Alt from containing Binds to Maybe Binds to distinguish between empty where clauses and where clauses with no binds (#244). * Add RoleAnnotDecl and Role to support Role annotations (#215). * Move NameSpace field from EVar/IVar to EAbs/IAbs. Other changes: * Add standalone parsers for ImportDecl. * Fix pretty-printer bugs for HaRP (#160). * Insert parentheses when pretty-printing non-atomic bang types (#169). * Un-reverse confusion of left and right arrow (#175). * Prettyprint option pragmas like 1.15 (#172). * Conditionally insert lines when pretty-printing declarations (#171). * Distinguish deriving (Show) from deriving Show (#189). * Allow parsing of unicode subscript and superscript functions (#173). * Pretty print unboxed tuples with spaces (#193). * Improve performance when parsing long extension lists (#200). * Properly pretty print constructor and class operators (#204). * Read Haskell source files as UTF-8 (#223). * Fix ExplicitNamespaces parsing (#216). * PolyKinds implies KindSignatures (#220). * Preserve location information for infix binds (#205). * Preserve positional information in checkPattern (#231). * Maintain correct line numbers when parsing multiline GHC_OPTIONS (#218). * Correctly parse "*" with TypeOperators (#81). * Export the "pretty" method (#222). * Add javascript calling convention for foreign imports (#236). * Add non-greedy parsers for module heads (#191). * Add a flag to disable arity checking when parsing (#260). * Parse "-" in type signatures (#206). * Add support for type wildcards and expression holes (#252). * Add support for Pattern Synonyms (#197). * Bump the happy lower bound (#250). * Make test suite pass on GHC 7.12 (#224). * Support linking Haddock comments to AST nodes (#213). * Parse multiline LANGUAGE pragmas (#217). * Parse trailing where (#25). * Parse modules starting with pragmas and indented "module" keyword (#122). * Use pretty-show to get human readable test outputs. * Respect fixity declarations inside where/let/class in `applyFixities` (#212). * Correctly parse the combination of view patterns and bang patterns. (#276)
2015-11-18 22:31:14 +01:00
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Annotated-Parser.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Annotated-Simplify.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Annotated-Syntax.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Annotated.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Build.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Comments.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Extension.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Fixity.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Lexer.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Parser.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Pretty.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-SrcLoc.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts-Syntax.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/Language-Haskell-Exts.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-60.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-61.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-A.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-All.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-B.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-C.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-D.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-E.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-F.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-G.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-H.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-I.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-J.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-K.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-L.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-M.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-N.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-O.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-P.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-Q.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-R.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-S.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-T.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-U.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-V.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-W.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-X.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-Y.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index-Z.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/doc-index.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/frames.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/haddock-util.js
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/haskell-src-exts.haddock
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/hslogo-16.png
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/index-frames.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/index.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Annotated-Build.html
Update to 1.17.0 CHANGELOG: 1.16.0.1 --> 1.17.0 =================== AST changes: * Replaced VarA with AppA in Asst (#168). * Promoted list/tuple members changed from Promoted to Type (#162). * Update PatBind, Match, and Alt from containing Binds to Maybe Binds to distinguish between empty where clauses and where clauses with no binds (#244). * Add RoleAnnotDecl and Role to support Role annotations (#215). * Move NameSpace field from EVar/IVar to EAbs/IAbs. Other changes: * Add standalone parsers for ImportDecl. * Fix pretty-printer bugs for HaRP (#160). * Insert parentheses when pretty-printing non-atomic bang types (#169). * Un-reverse confusion of left and right arrow (#175). * Prettyprint option pragmas like 1.15 (#172). * Conditionally insert lines when pretty-printing declarations (#171). * Distinguish deriving (Show) from deriving Show (#189). * Allow parsing of unicode subscript and superscript functions (#173). * Pretty print unboxed tuples with spaces (#193). * Improve performance when parsing long extension lists (#200). * Properly pretty print constructor and class operators (#204). * Read Haskell source files as UTF-8 (#223). * Fix ExplicitNamespaces parsing (#216). * PolyKinds implies KindSignatures (#220). * Preserve location information for infix binds (#205). * Preserve positional information in checkPattern (#231). * Maintain correct line numbers when parsing multiline GHC_OPTIONS (#218). * Correctly parse "*" with TypeOperators (#81). * Export the "pretty" method (#222). * Add javascript calling convention for foreign imports (#236). * Add non-greedy parsers for module heads (#191). * Add a flag to disable arity checking when parsing (#260). * Parse "-" in type signatures (#206). * Add support for type wildcards and expression holes (#252). * Add support for Pattern Synonyms (#197). * Bump the happy lower bound (#250). * Make test suite pass on GHC 7.12 (#224). * Support linking Haddock comments to AST nodes (#213). * Parse multiline LANGUAGE pragmas (#217). * Parse trailing where (#25). * Parse modules starting with pragmas and indented "module" keyword (#122). * Use pretty-show to get human readable test outputs. * Respect fixity declarations inside where/let/class in `applyFixities` (#212). * Correctly parse the combination of view patterns and bang patterns. (#276)
2015-11-18 22:31:14 +01:00
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Annotated-Comments.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Annotated-ExactPrint.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Annotated-Fixity.html
Update to 1.17.0 CHANGELOG: 1.16.0.1 --> 1.17.0 =================== AST changes: * Replaced VarA with AppA in Asst (#168). * Promoted list/tuple members changed from Promoted to Type (#162). * Update PatBind, Match, and Alt from containing Binds to Maybe Binds to distinguish between empty where clauses and where clauses with no binds (#244). * Add RoleAnnotDecl and Role to support Role annotations (#215). * Move NameSpace field from EVar/IVar to EAbs/IAbs. Other changes: * Add standalone parsers for ImportDecl. * Fix pretty-printer bugs for HaRP (#160). * Insert parentheses when pretty-printing non-atomic bang types (#169). * Un-reverse confusion of left and right arrow (#175). * Prettyprint option pragmas like 1.15 (#172). * Conditionally insert lines when pretty-printing declarations (#171). * Distinguish deriving (Show) from deriving Show (#189). * Allow parsing of unicode subscript and superscript functions (#173). * Pretty print unboxed tuples with spaces (#193). * Improve performance when parsing long extension lists (#200). * Properly pretty print constructor and class operators (#204). * Read Haskell source files as UTF-8 (#223). * Fix ExplicitNamespaces parsing (#216). * PolyKinds implies KindSignatures (#220). * Preserve location information for infix binds (#205). * Preserve positional information in checkPattern (#231). * Maintain correct line numbers when parsing multiline GHC_OPTIONS (#218). * Correctly parse "*" with TypeOperators (#81). * Export the "pretty" method (#222). * Add javascript calling convention for foreign imports (#236). * Add non-greedy parsers for module heads (#191). * Add a flag to disable arity checking when parsing (#260). * Parse "-" in type signatures (#206). * Add support for type wildcards and expression holes (#252). * Add support for Pattern Synonyms (#197). * Bump the happy lower bound (#250). * Make test suite pass on GHC 7.12 (#224). * Support linking Haddock comments to AST nodes (#213). * Parse multiline LANGUAGE pragmas (#217). * Parse trailing where (#25). * Parse modules starting with pragmas and indented "module" keyword (#122). * Use pretty-show to get human readable test outputs. * Respect fixity declarations inside where/let/class in `applyFixities` (#212). * Correctly parse the combination of view patterns and bang patterns. (#276)
2015-11-18 22:31:14 +01:00
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Annotated-Parser.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Annotated-Simplify.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Annotated-Syntax.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Annotated.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Build.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Comments.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Extension.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Fixity.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Lexer.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Parser.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Pretty.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-SrcLoc.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts-Syntax.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/mini_Language-Haskell-Exts.html
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/minus.gif
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/ocean.css
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/plus.gif
${PLIST.doc}share/doc/haskell-src-exts-${PKGVERSION}/html/synopsis.png