diff options
author | Griffin Smith <root@gws.fyi> | 2018-03-29T22·10-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2018-03-29T22·10-0400 |
commit | d88fb3194f2a50efa6d407e85d47d14da3700ff3 (patch) | |
tree | 3aa434e148f4f767a992c87b144d536c0e10b689 /snippets/haskell-mode/benchmark-module |
Initial commit
Diffstat (limited to 'snippets/haskell-mode/benchmark-module')
-rw-r--r-- | snippets/haskell-mode/benchmark-module | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/snippets/haskell-mode/benchmark-module b/snippets/haskell-mode/benchmark-module new file mode 100644 index 000000000000..cbb1646e41d1 --- /dev/null +++ b/snippets/haskell-mode/benchmark-module @@ -0,0 +1,26 @@ +# key: bench +# name: benchmark-module +# expand-env: ((yas-indent-line (quote fixed))) +# -- +-------------------------------------------------------------------------------- +module ${1:`(if (not buffer-file-name) "Module" + (let ((name (file-name-sans-extension (buffer-file-name))) + (case-fold-search nil)) + (if (cl-search "bench/" name) + (replace-regexp-in-string "/" "." + (replace-regexp-in-string "^\/[^A-Z]*" "" + (car (last (split-string name "src"))))) + (file-name-nondirectory name))))`} ( benchmark, main ) where +-------------------------------------------------------------------------------- +import Bench.Prelude +-------------------------------------------------------------------------------- +import ${1:$(s-chop-suffix "Bench" yas-text)} +-------------------------------------------------------------------------------- + +main :: IO () +main = defaultMain [benchmark] + +-------------------------------------------------------------------------------- + +benchmark :: Benchmark +benchmark = bgroup "${1:$(->> yas-text (s-chop-suffix "Bench") (s-split ".") -last-item)}" [bench "something dumb" $ nf (1 +) (1 :: Int)] |