File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ import c from "./grammars/c"
7
7
import coffeescript from "./grammars/coffeescript"
8
8
import database from "./grammars/database"
9
9
import doc from "./grammars/doc"
10
- import * as haskell from "./grammars/haskell"
11
10
import fortran from "./grammars/fortran"
11
+ import haskell from "./grammars/haskell"
12
12
import * as java from "./grammars/java"
13
13
import * as js from "./grammars/javascript"
14
14
import lisp from "./grammars/lisp"
Original file line number Diff line number Diff line change 1
1
"use babel"
2
2
3
- export const Haskell = {
3
+ const Haskell = {
4
4
"Selection Based" : {
5
5
command : "ghc" ,
6
6
args ( context ) {
@@ -16,4 +16,10 @@ export const Haskell = {
16
16
} ,
17
17
}
18
18
19
- exports [ "Literate Haskell" ] = { "File Based" : exports . Haskell [ "File Based" ] }
19
+ const LiterateHaskell = { "File Based" : Haskell [ "File Based" ] }
20
+
21
+ const HaskellGrammars = {
22
+ Haskell,
23
+ "Literate Haskell" : LiterateHaskell ,
24
+ }
25
+ export default HaskellGrammars
You can’t perform that action at this time.
0 commit comments