Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add languages extension groups to grammar #9584

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/quick-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,10 @@ jobs:
restore-keys: linux-store-buildinfo-doc-diff
- name: Build buildinfo-reference-generator
run: ${{ env.cabal_build }}
- name: Are buildinfo docs up to date?
run: make doc/buildinfo-fields-reference.rst
- name: Are cabal package syntax docs up to date?
run: make doc/cabal-package-syntax.rst
- name: Are language extensions docs up to date?
run: make doc/language-extensions.rst
- name: Cache dependencies
uses: actions/cache/save@v4
if: always() && steps.cache.outputs.cache-hit != 'true'
Expand Down
1 change: 1 addition & 0 deletions Cabal-described/Cabal-described.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ library

exposed-modules:
Distribution.Described
Distribution.Described.Extension
Distribution.Utils.CharSet
Distribution.Utils.GrammarRegex
3 changes: 0 additions & 3 deletions Cabal-described/src/Distribution/Described.hs
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,6 @@ instance Described ExeDependency where
instance Described ExposedModule where
describe _ = RETodo

instance Described Extension where
describe _ = RETodo

instance Described FlagAssignment where
describe _ = REMunch RESpaces1 $
REUnion [fromString "+", fromString "-"] <> describe (Proxy :: Proxy FlagName)
Expand Down
Loading
Loading