File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import js from "./grammars/javascript"
14
14
import lisp from "./grammars/lisp"
15
15
import lua from "./grammars/lua"
16
16
import ml from "./grammars/ml"
17
- import * as perl from "./grammars/perl"
17
+ import perl from "./grammars/perl"
18
18
import php from "./grammars/php"
19
19
import * as python from "./grammars/python"
20
20
import ruby from "./grammars/ruby"
Original file line number Diff line number Diff line change 2
2
3
3
import GrammarUtils from "../grammar-utils"
4
4
5
- export const Perl = {
5
+ const Perl = {
6
6
"Selection Based" : {
7
7
command : "perl" ,
8
8
args ( context ) {
@@ -20,7 +20,7 @@ export const Perl = {
20
20
} ,
21
21
}
22
22
23
- exports . Raku = {
23
+ const Raku = {
24
24
"Selection Based" : {
25
25
command : "raku" ,
26
26
args ( context ) {
@@ -36,4 +36,11 @@ exports.Raku = {
36
36
} ,
37
37
}
38
38
39
- exports [ "Perl 6" ] = exports . Raku
39
+ const Perl6 = Raku
40
+
41
+ const PerlGrammars = {
42
+ Perl,
43
+ Raku,
44
+ "Perl 6" : Perl6 ,
45
+ }
46
+ export default PerlGrammars
You can’t perform that action at this time.
0 commit comments