aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-13 06:01:18 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-03-14 07:07:45 +0100
commite06061a2d5717bee9b0b4fcaf72d3c79923e4016 (patch)
treec0b9fee95e9b87d5602f162b34c0550064959881 /app
parentf63a777c07094af31c8841a3f50af8beca0aa369 (diff)
chore: drop unused app/Extract.hs
Diffstat (limited to 'app')
-rw-r--r--app/Extract.hs17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/Extract.hs b/app/Extract.hs
deleted file mode 100644
index e351898..0000000
--- a/app/Extract.hs
+++ /dev/null
@@ -1,17 +0,0 @@
-module Extract where
-
-data Comment = Comment
- { -- result fields
- file :: String,
- file_type :: FileType,
- -- match fields
- kind :: String,
- name :: String,
- text :: T.Text,
- start :: Position,
- end :: Position
- }
-
-extractComments :: T.Text -> IO [Comment]
-extractComments = do
- parer <- ts_parser_new