File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const FortranModern = FortranFreeForm
25
25
const FortranPunchcard = FortranFixedForm
26
26
27
27
const Fortran = {
28
- " Fortran" : FortranModern ,
28
+ Fortran : FortranModern ,
29
29
"Fortran - Fixed Form" : FortranFixedForm ,
30
30
"Fortran - Free Form" : FortranFreeForm ,
31
31
"Fortran - Modern" : FortranModern ,
Original file line number Diff line number Diff line change 3
3
import _ from "underscore"
4
4
import GrammarUtils from "../grammar-utils"
5
5
6
- export default {
6
+ const LispGrammars = {
7
7
"Common Lisp" : {
8
8
"File Based" : {
9
9
command : "clisp" ,
@@ -62,3 +62,4 @@ export default {
62
62
} ,
63
63
} ,
64
64
}
65
+ export default LispGrammars
Original file line number Diff line number Diff line change 8
8
import GrammarUtils from "../grammar-utils"
9
9
const { command } = GrammarUtils
10
10
11
- const windows = GrammarUtils . OperatingSystem . isWindows ( )
11
+ // const windows = GrammarUtils.OperatingSystem.isWindows()
12
12
13
- export default {
13
+ const MLGrammars = {
14
14
BuckleScript : {
15
15
"Selection Based" : {
16
16
command : "bsc" ,
@@ -66,3 +66,4 @@ export default {
66
66
} ,
67
67
} ,
68
68
}
69
+ export default MLGrammars
Original file line number Diff line number Diff line change 2
2
3
3
import GrammarUtils from "../grammar-utils"
4
4
5
- export default {
5
+ const PerlGrammars = {
6
6
"Behat Feature" : {
7
7
"File Based" : {
8
8
command : "behat" ,
@@ -37,3 +37,4 @@ export default {
37
37
} ,
38
38
} ,
39
39
}
40
+ export default PerlGrammars
Original file line number Diff line number Diff line change 1
1
"use babel"
2
2
3
- export default {
3
+ const RubyGrammars = {
4
4
RSpec : {
5
5
"Selection Based" : {
6
6
command : "ruby" ,
@@ -56,3 +56,4 @@ export default {
56
56
} ,
57
57
} ,
58
58
}
59
+ export default RubyGrammars
You can’t perform that action at this time.
0 commit comments