Skip to content

Commit 729f176

Browse files
committed
1 parent 4fad962 commit 729f176

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

perl/gherkin-perl.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ use warnings;
3535

3636
use base 'Gherkin::ParserBase';
3737

38-
our %states_to_match_names = (
38+
my %states_to_match_names = (
3939
@foreach(var state in Model.States.Values.Where(s => !s.IsEndState)) //..
4040
{
4141
@: @state.Id => "match_token_at_@(state.Id)",

perl/lib/Gherkin/Generated/Parser.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use warnings;
66

77
use base 'Gherkin::ParserBase';
88

9-
our %states_to_match_names = (
9+
my %states_to_match_names = (
1010
0 => "match_token_at_0",
1111
1 => "match_token_at_1",
1212
2 => "match_token_at_2",

0 commit comments

Comments
 (0)