Skip to content

Commit

Permalink
feat: Add support for doxygen @note.
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Sep 3, 2023
1 parent 66eef12 commit adf9446
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ haskell_library(
],
),
src_strip_prefix = "src",
version = "0.0.17",
version = "0.0.18",
visibility = ["//visibility:public"],
deps = [
":ast",
Expand Down
4 changes: 2 additions & 2 deletions cimple.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cimple
version: 0.0.17
version: 0.0.18
synopsis: Simple C-like programming language
homepage: https://toktok.github.io/
license: GPL-3
Expand Down Expand Up @@ -127,7 +127,7 @@ test-suite testsuite
, Language.Cimple.PrettySpec
ghc-options:
-Wall
-fno-warn-unused-imports
-Wno-unused-imports
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
Expand Down
1 change: 1 addition & 0 deletions src/Language/Cimple/CommentParser.y
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import Language.Cimple.Tokens (LexemeClass (..))
'@deprecated' { L _ CmtCommand "@deprecated" }
'@extends' { L _ CmtCommand "@extends" }
'@implements' { L _ CmtCommand "@implements" }
'@note' { L _ CmtCommand "@note" }
'@param' { L _ CmtCommand "@param" }
'@private' { L _ CmtCommand "@private" }
'@ref' { L _ CmtCommand "@ref" }
Expand Down
1 change: 1 addition & 0 deletions test/Language/Cimple/AstSpec.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ViewPatterns #-}
Expand Down

0 comments on commit adf9446

Please sign in to comment.