Module: Cucumber::TreetopParser::Feature

Includes:
Treetop::Runtime
Included in:
FeatureParser
Defined in:
lib/cucumber/treetop_parser/feature_da.rb,
lib/cucumber/treetop_parser/feature_de.rb,
lib/cucumber/treetop_parser/feature_en.rb,
lib/cucumber/treetop_parser/feature_es.rb,
lib/cucumber/treetop_parser/feature_et.rb,
lib/cucumber/treetop_parser/feature_fr.rb,
lib/cucumber/treetop_parser/feature_ja.rb,
lib/cucumber/treetop_parser/feature_nl.rb,
lib/cucumber/treetop_parser/feature_no.rb,
lib/cucumber/treetop_parser/feature_pt.rb,
lib/cucumber/treetop_parser/feature_ru.rb,
lib/cucumber/treetop_parser/feature_se.rb,
lib/cucumber/treetop_parser/feature_en-tx.rb,
lib/cucumber/treetop_parser/feature_zh-CN.rb,
lib/cucumber/treetop_parser/feature_parser.rb

Overview

:nodoc:

Defined Under Namespace

Modules: CellValue0, CommentToEol0, Eol0, GivenScenario0, GivenScenario1, GivenScenarioKeyword0, Header0, LineToEol0, MoreExamples0, MoreExamples1, MoreExamplesKeyword0, MultilineString0, MultilineString1, MultilineString2, PlainStep0, PlainStep1, PlainStep2, Root0, Root1, Scenario0, Scenario1, Scenario2, ScenarioKeyword0, ScenarioSequence0, ScenarioSequence1, ScenarioSequence2, StepSequence0, StepSequence1, StepSequence2, Table0, Table1, Table2, TableLine0, TableLine1, TableLine2 Classes: SyntaxError

Class Attribute Summary collapse

Instance Method Summary collapse

Class Attribute Details

.last_scenarioObject

Returns the value of attribute last_scenario.



19
20
21
# File 'lib/cucumber/treetop_parser/feature_parser.rb', line 19

def last_scenario
  @last_scenario
end

Instance Method Details

#_nt_blankObject

:nodoc:



1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1283

def _nt_blank #:nodoc:
  start_index = index
  if node_cache[:blank].has_key?(index)
    cached = node_cache[:blank][index]
    @index = cached.interval.end if cached
    return cached
  end

  if input.index(Regexp.new('[ \\t]'), index) == index
    r0 = (SyntaxNode).new(input, index...(index + 1))
    @index += 1
  else
    r0 = nil
  end

  node_cache[:blank][start_index] = r0

  return r0
end

#_nt_cell_valueObject

:nodoc:



641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 641

def _nt_cell_value #:nodoc:
  start_index = index
  if node_cache[:cell_value].has_key?(index)
    cached = node_cache[:cell_value][index]
    @index = cached.interval.end if cached
    return cached
  end

  s0, i0 = [], index
  loop do
    i1, s1 = index, []
    i2 = index
    i3 = index
    r4 = _nt_separator
    if r4
      r3 = r4
    else
      r5 = _nt_eol
      if r5
        r3 = r5
      else
        self.index = i3
        r3 = nil
      end
    end
    if r3
      r2 = nil
    else
      self.index = i2
      r2 = SyntaxNode.new(input, index...index)
    end
    s1 << r2
    if r2
      if index < input_length
        r6 = (SyntaxNode).new(input, index...(index + 1))
        @index += 1
      else
        terminal_parse_failure("any character")
        r6 = nil
      end
      s1 << r6
    end
    if s1.last
      r1 = (SyntaxNode).new(input, i1...index, s1)
      r1.extend(CellValue0)
    else
      self.index = i1
      r1 = nil
    end
    if r1
      s0 << r1
    else
      break
    end
  end
  r0 = SyntaxNode.new(input, i0...index, s0)

  node_cache[:cell_value][start_index] = r0

  return r0
end

#_nt_comment_to_eolObject

:nodoc:



1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1222

def _nt_comment_to_eol #:nodoc:
  start_index = index
  if node_cache[:comment_to_eol].has_key?(index)
    cached = node_cache[:comment_to_eol][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  if input.index('#', index) == index
    r1 = (SyntaxNode).new(input, index...(index + 1))
    @index += 1
  else
    terminal_parse_failure('#')
    r1 = nil
  end
  s0 << r1
  if r1
    r2 = _nt_line_to_eol
    s0 << r2
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(CommentToEol0)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:comment_to_eol][start_index] = r0

  return r0
end

#_nt_eolObject

:nodoc:



1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1306

def _nt_eol #:nodoc:
  start_index = index
  if node_cache[:eol].has_key?(index)
    cached = node_cache[:eol][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0 = index
  i1, s1 = index, []
  if input.index("\r", index) == index
    r2 = (SyntaxNode).new(input, index...(index + 1))
    @index += 1
  else
    terminal_parse_failure("\r")
    r2 = nil
  end
  s1 << r2
  if r2
    if input.index("\n", index) == index
      r4 = (SyntaxNode).new(input, index...(index + 1))
      @index += 1
    else
      terminal_parse_failure("\n")
      r4 = nil
    end
    if r4
      r3 = r4
    else
      r3 = SyntaxNode.new(input, index...index)
    end
    s1 << r3
  end
  if s1.last
    r1 = (SyntaxNode).new(input, i1...index, s1)
    r1.extend(Eol0)
  else
    self.index = i1
    r1 = nil
  end
  if r1
    r0 = r1
  else
    if input.index("\n", index) == index
      r5 = (SyntaxNode).new(input, index...(index + 1))
      @index += 1
    else
      terminal_parse_failure("\n")
      r5 = nil
    end
    if r5
      r0 = r5
    else
      self.index = i0
      r0 = nil
    end
  end

  node_cache[:eol][start_index] = r0

  return r0
end

#_nt_given_scenarioObject

:nodoc:



830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 830

def _nt_given_scenario #:nodoc:
  start_index = index
  if node_cache[:given_scenario].has_key?(index)
    cached = node_cache[:given_scenario][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_given_scenario_keyword
  s0 << r1
  if r1
    r3 = _nt_space
    if r3
      r2 = r3
    else
      r2 = SyntaxNode.new(input, index...index)
    end
    s0 << r2
    if r2
      r4 = _nt_line_to_eol
      s0 << r4
    end
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(GivenScenario0)
    r0.extend(GivenScenario1)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:given_scenario][start_index] = r0

  return r0
end

#_nt_given_scenario_keywordObject

:nodoc:



1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1540

def _nt_given_scenario_keyword #:nodoc:
  start_index = index
  if node_cache[:given_scenario_keyword].has_key?(index)
    cached = node_cache[:given_scenario_keyword][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  if input.index("GivetScenarie", index) == index
    r1 = (SyntaxNode).new(input, index...(index + 13))
    @index += 13
  else
    terminal_parse_failure("GivetScenarie")
    r1 = nil
  end
  s0 << r1
  if r1
    if input.index(":", index) == index
      r3 = (SyntaxNode).new(input, index...(index + 1))
      @index += 1
    else
      terminal_parse_failure(":")
      r3 = nil
    end
    if r3
      r2 = r3
    else
      r2 = SyntaxNode.new(input, index...index)
    end
    s0 << r2
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(GivenScenarioKeyword0)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:given_scenario_keyword][start_index] = r0

  return r0
end

#_nt_headerObject

:nodoc:



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 80

def _nt_header #:nodoc:
  start_index = index
  if node_cache[:header].has_key?(index)
    cached = node_cache[:header][index]
    @index = cached.interval.end if cached
    return cached
  end

  s0, i0 = [], index
  loop do
    i1, s1 = index, []
    i2 = index
    i3 = index
    r4 = _nt_scenario_keyword
    if r4
      r3 = r4
    else
      r5 = _nt_comment_to_eol
      if r5
        r3 = r5
      else
        self.index = i3
        r3 = nil
      end
    end
    if r3
      r2 = nil
    else
      self.index = i2
      r2 = SyntaxNode.new(input, index...index)
    end
    s1 << r2
    if r2
      if index < input_length
        r6 = (SyntaxNode).new(input, index...(index + 1))
        @index += 1
      else
        terminal_parse_failure("any character")
        r6 = nil
      end
      s1 << r6
    end
    if s1.last
      r1 = (SyntaxNode).new(input, i1...index, s1)
      r1.extend(Header0)
    else
      self.index = i1
      r1 = nil
    end
    if r1
      s0 << r1
    else
      break
    end
  end
  if s0.empty?
    self.index = i0
    r0 = nil
  else
    r0 = SyntaxNode.new(input, i0...index, s0)
  end

  node_cache[:header][start_index] = r0

  return r0
end

#_nt_line_to_eolObject

:nodoc:



1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1166

def _nt_line_to_eol #:nodoc:
  start_index = index
  if node_cache[:line_to_eol].has_key?(index)
    cached = node_cache[:line_to_eol][index]
    @index = cached.interval.end if cached
    return cached
  end

  s0, i0 = [], index
  loop do
    i1, s1 = index, []
    i2 = index
    r3 = _nt_eol
    if r3
      r2 = nil
    else
      self.index = i2
      r2 = SyntaxNode.new(input, index...index)
    end
    s1 << r2
    if r2
      if index < input_length
        r4 = (SyntaxNode).new(input, index...(index + 1))
        @index += 1
      else
        terminal_parse_failure("any character")
        r4 = nil
      end
      s1 << r4
    end
    if s1.last
      r1 = (SyntaxNode).new(input, i1...index, s1)
      r1.extend(LineToEol0)
    else
      self.index = i1
      r1 = nil
    end
    if r1
      s0 << r1
    else
      break
    end
  end
  r0 = SyntaxNode.new(input, i0...index, s0)

  node_cache[:line_to_eol][start_index] = r0

  return r0
end

#_nt_more_examplesObject

:nodoc:



377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 377

def _nt_more_examples #:nodoc:
  start_index = index
  if node_cache[:more_examples].has_key?(index)
    cached = node_cache[:more_examples][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_more_examples_keyword
  s0 << r1
  if r1
    r2 = _nt_space
    s0 << r2
    if r2
      r3 = _nt_table
      s0 << r3
    end
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(MoreExamples0)
    r0.extend(MoreExamples1)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:more_examples][start_index] = r0

  return r0
end

#_nt_more_examples_keywordObject

:nodoc:



1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1492

def _nt_more_examples_keyword #:nodoc:
  start_index = index
  if node_cache[:more_examples_keyword].has_key?(index)
    cached = node_cache[:more_examples_keyword][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  if input.index("More Examples", index) == index
    r1 = (SyntaxNode).new(input, index...(index + 13))
    @index += 13
  else
    terminal_parse_failure("More Examples")
    r1 = nil
  end
  s0 << r1
  if r1
    if input.index(":", index) == index
      r3 = (SyntaxNode).new(input, index...(index + 1))
      @index += 1
    else
      terminal_parse_failure(":")
      r3 = nil
    end
    if r3
      r2 = r3
    else
      r2 = SyntaxNode.new(input, index...index)
    end
    s0 << r2
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(MoreExamplesKeyword0)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:more_examples_keyword][start_index] = r0

  return r0
end

#_nt_multiline_argObject

:nodoc:



962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 962

def _nt_multiline_arg #:nodoc:
  start_index = index
  if node_cache[:multiline_arg].has_key?(index)
    cached = node_cache[:multiline_arg][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0 = index
  r1 = _nt_table
  if r1
    r0 = r1
  else
    r2 = _nt_multiline_string
    if r2
      r0 = r2
    else
      self.index = i0
      r0 = nil
    end
  end

  node_cache[:multiline_arg][start_index] = r0

  return r0
end

#_nt_multiline_stringObject

:nodoc:



1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1012

def _nt_multiline_string #:nodoc:
  start_index = index
  if node_cache[:multiline_string].has_key?(index)
    cached = node_cache[:multiline_string][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_quote
  s0 << r1
  if r1
    s2, i2 = [], index
    loop do
      i3, s3 = index, []
      i4 = index
      r5 = _nt_quote
      if r5
        r4 = nil
      else
        self.index = i4
        r4 = SyntaxNode.new(input, index...index)
      end
      s3 << r4
      if r4
        if index < input_length
          r6 = (SyntaxNode).new(input, index...(index + 1))
          @index += 1
        else
          terminal_parse_failure("any character")
          r6 = nil
        end
        s3 << r6
      end
      if s3.last
        r3 = (SyntaxNode).new(input, i3...index, s3)
        r3.extend(MultilineString0)
      else
        self.index = i3
        r3 = nil
      end
      if r3
        s2 << r3
      else
        break
      end
    end
    r2 = SyntaxNode.new(input, i2...index, s2)
    s0 << r2
    if r2
      r7 = _nt_quote
      s0 << r7
    end
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(MultilineString1)
    r0.extend(MultilineString2)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:multiline_string][start_index] = r0

  return r0
end

#_nt_plain_stepObject

:nodoc:



902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 902

def _nt_plain_step #:nodoc:
  start_index = index
  if node_cache[:plain_step].has_key?(index)
    cached = node_cache[:plain_step][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_step_keyword
  s0 << r1
  if r1
    r3 = _nt_space
    if r3
      r2 = r3
    else
      r2 = SyntaxNode.new(input, index...index)
    end
    s0 << r2
    if r2
      r4 = _nt_line_to_eol
      s0 << r4
      if r4
        i6, s6 = index, []
        r7 = _nt_space
        s6 << r7
        if r7
          r8 = _nt_multiline_arg
          s6 << r8
        end
        if s6.last
          r6 = (SyntaxNode).new(input, i6...index, s6)
          r6.extend(PlainStep0)
        else
          self.index = i6
          r6 = nil
        end
        if r6
          r5 = r6
        else
          r5 = SyntaxNode.new(input, index...index)
        end
        s0 << r5
      end
    end
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(PlainStep1)
    r0.extend(PlainStep2)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:plain_step][start_index] = r0

  return r0
end

#_nt_quoteObject

:nodoc:



1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1080

def _nt_quote #:nodoc:
  start_index = index
  if node_cache[:quote].has_key?(index)
    cached = node_cache[:quote][index]
    @index = cached.interval.end if cached
    return cached
  end

  if input.index('"', index) == index
    r0 = (SyntaxNode).new(input, index...(index + 1))
    @index += 1
  else
    terminal_parse_failure('"')
    r0 = nil
  end

  node_cache[:quote][start_index] = r0

  return r0
end

#_nt_rootObject

:nodoc:



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 30

def _nt_root #:nodoc:
  start_index = index
  if node_cache[:root].has_key?(index)
    cached = node_cache[:root][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r2 = _nt_space
  if r2
    r1 = r2
  else
    r1 = SyntaxNode.new(input, index...index)
  end
  s0 << r1
  if r1
    r3 = _nt_header
    s0 << r3
    if r3
      r4 = _nt_scenario_sequence
      s0 << r4
      if r4
        r6 = _nt_space
        if r6
          r5 = r6
        else
          r5 = SyntaxNode.new(input, index...index)
        end
        s0 << r5
      end
    end
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(Root0)
    r0.extend(Root1)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:root][start_index] = r0

  return r0
end

#_nt_scenarioObject

:nodoc:



270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 270

def _nt_scenario #:nodoc:
  start_index = index
  if node_cache[:scenario].has_key?(index)
    cached = node_cache[:scenario][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_scenario_keyword
  s0 << r1
  if r1
    r3 = _nt_space
    if r3
      r2 = r3
    else
      r2 = SyntaxNode.new(input, index...index)
    end
    s0 << r2
    if r2
      r4 = _nt_line_to_eol
      s0 << r4
      if r4
        i6, s6 = index, []
        r7 = _nt_space
        s6 << r7
        if r7
          r8 = _nt_step_sequence
          s6 << r8
        end
        if s6.last
          r6 = (SyntaxNode).new(input, i6...index, s6)
          r6.extend(Scenario0)
        else
          self.index = i6
          r6 = nil
        end
        if r6
          r5 = r6
        else
          r5 = SyntaxNode.new(input, index...index)
        end
        s0 << r5
      end
    end
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(Scenario1)
    r0.extend(Scenario2)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:scenario][start_index] = r0

  return r0
end

#_nt_scenario_keywordObject

:nodoc:



1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1444

def _nt_scenario_keyword #:nodoc:
  start_index = index
  if node_cache[:scenario_keyword].has_key?(index)
    cached = node_cache[:scenario_keyword][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  if input.index("Scenarie", index) == index
    r1 = (SyntaxNode).new(input, index...(index + 8))
    @index += 8
  else
    terminal_parse_failure("Scenarie")
    r1 = nil
  end
  s0 << r1
  if r1
    if input.index(":", index) == index
      r3 = (SyntaxNode).new(input, index...(index + 1))
      @index += 1
    else
      terminal_parse_failure(":")
      r3 = nil
    end
    if r3
      r2 = r3
    else
      r2 = SyntaxNode.new(input, index...index)
    end
    s0 << r2
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(ScenarioKeyword0)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:scenario_keyword][start_index] = r0

  return r0
end

#_nt_scenario_or_tableObject

:nodoc:



330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 330

def _nt_scenario_or_table #:nodoc:
  start_index = index
  if node_cache[:scenario_or_table].has_key?(index)
    cached = node_cache[:scenario_or_table][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0 = index
  r1 = _nt_scenario
  if r1
    r0 = r1
  else
    r2 = _nt_more_examples
    if r2
      r0 = r2
    else
      self.index = i0
      r0 = nil
    end
  end

  node_cache[:scenario_or_table][start_index] = r0

  return r0
end

#_nt_scenario_sequenceObject

:nodoc:



179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 179

def _nt_scenario_sequence #:nodoc:
  start_index = index
  if node_cache[:scenario_sequence].has_key?(index)
    cached = node_cache[:scenario_sequence][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r2 = _nt_scenario
  if r2
    r1 = r2
  else
    r1 = SyntaxNode.new(input, index...index)
  end
  s0 << r1
  if r1
    s3, i3 = [], index
    loop do
      i4, s4 = index, []
      r5 = _nt_space
      s4 << r5
      if r5
        r6 = _nt_scenario_or_table
        s4 << r6
      end
      if s4.last
        r4 = (SyntaxNode).new(input, i4...index, s4)
        r4.extend(ScenarioSequence0)
      else
        self.index = i4
        r4 = nil
      end
      if r4
        s3 << r4
      else
        break
      end
    end
    r3 = SyntaxNode.new(input, i3...index, s3)
    s0 << r3
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(ScenarioSequence1)
    r0.extend(ScenarioSequence2)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:scenario_sequence][start_index] = r0

  return r0
end

#_nt_separatorObject

:nodoc:



1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1101

def _nt_separator #:nodoc:
  start_index = index
  if node_cache[:separator].has_key?(index)
    cached = node_cache[:separator][index]
    @index = cached.interval.end if cached
    return cached
  end

  if input.index('|', index) == index
    r0 = (SyntaxNode).new(input, index...(index + 1))
    @index += 1
  else
    terminal_parse_failure('|')
    r0 = nil
  end

  node_cache[:separator][start_index] = r0

  return r0
end

#_nt_spaceObject

:nodoc:



1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1122

def _nt_space #:nodoc:
  start_index = index
  if node_cache[:space].has_key?(index)
    cached = node_cache[:space][index]
    @index = cached.interval.end if cached
    return cached
  end

  s0, i0 = [], index
  loop do
    i1 = index
    r2 = _nt_white
    if r2
      r1 = r2
    else
      r3 = _nt_comment_to_eol
      if r3
        r1 = r3
      else
        self.index = i1
        r1 = nil
      end
    end
    if r1
      s0 << r1
    else
      break
    end
  end
  if s0.empty?
    self.index = i0
    r0 = nil
  else
    r0 = SyntaxNode.new(input, i0...index, s0)
  end

  node_cache[:space][start_index] = r0

  return r0
end

#_nt_stepObject

:nodoc:



786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 786

def _nt_step #:nodoc:
  start_index = index
  if node_cache[:step].has_key?(index)
    cached = node_cache[:step][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0 = index
  r1 = _nt_given_scenario
  if r1
    r0 = r1
  else
    r2 = _nt_plain_step
    if r2
      r0 = r2
    else
      self.index = i0
      r0 = nil
    end
  end

  node_cache[:step][start_index] = r0

  return r0
end

#_nt_step_keywordObject

:nodoc:



1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1369

def _nt_step_keyword #:nodoc:
  start_index = index
  if node_cache[:step_keyword].has_key?(index)
    cached = node_cache[:step_keyword][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0 = index
  if input.index("Givet", index) == index
    r1 = (SyntaxNode).new(input, index...(index + 5))
    @index += 5
  else
    terminal_parse_failure("Givet")
    r1 = nil
  end
  if r1
    r0 = r1
  else
    if input.index("Når", index) == index
      r2 = (SyntaxNode).new(input, index...(index + 4))
      @index += 4
    else
      terminal_parse_failure("Når")
      r2 = nil
    end
    if r2
      r0 = r2
    else
      if input.index("", index) == index
        r3 = (SyntaxNode).new(input, index...(index + 3))
        @index += 3
      else
        terminal_parse_failure("")
        r3 = nil
      end
      if r3
        r0 = r3
      else
        if input.index("Og", index) == index
          r4 = (SyntaxNode).new(input, index...(index + 2))
          @index += 2
        else
          terminal_parse_failure("Og")
          r4 = nil
        end
        if r4
          r0 = r4
        else
          if input.index("Men", index) == index
            r5 = (SyntaxNode).new(input, index...(index + 3))
            @index += 3
          else
            terminal_parse_failure("Men")
            r5 = nil
          end
          if r5
            r0 = r5
          else
            self.index = i0
            r0 = nil
          end
        end
      end
    end
  end

  node_cache[:step_keyword][start_index] = r0

  return r0
end

#_nt_step_sequenceObject

:nodoc:



735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 735

def _nt_step_sequence #:nodoc:
  start_index = index
  if node_cache[:step_sequence].has_key?(index)
    cached = node_cache[:step_sequence][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_step
  s0 << r1
  if r1
    s2, i2 = [], index
    loop do
      i3, s3 = index, []
      r4 = _nt_space
      s3 << r4
      if r4
        r5 = _nt_step
        s3 << r5
      end
      if s3.last
        r3 = (SyntaxNode).new(input, i3...index, s3)
        r3.extend(StepSequence0)
      else
        self.index = i3
        r3 = nil
      end
      if r3
        s2 << r3
      else
        break
      end
    end
    r2 = SyntaxNode.new(input, i2...index, s2)
    s0 << r2
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(StepSequence1)
    r0.extend(StepSequence2)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:step_sequence][start_index] = r0

  return r0
end

#_nt_tableObject

:nodoc:



453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 453

def _nt_table #:nodoc:
  start_index = index
  if node_cache[:table].has_key?(index)
    cached = node_cache[:table][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_table_line
  s0 << r1
  if r1
    s2, i2 = [], index
    loop do
      i3, s3 = index, []
      s4, i4 = [], index
      loop do
        r5 = _nt_blank
        if r5
          s4 << r5
        else
          break
        end
      end
      r4 = SyntaxNode.new(input, i4...index, s4)
      s3 << r4
      if r4
        r6 = _nt_eol
        s3 << r6
        if r6
          r8 = _nt_space
          if r8
            r7 = r8
          else
            r7 = SyntaxNode.new(input, index...index)
          end
          s3 << r7
          if r7
            r9 = _nt_table_line
            s3 << r9
          end
        end
      end
      if s3.last
        r3 = (SyntaxNode).new(input, i3...index, s3)
        r3.extend(Table0)
      else
        self.index = i3
        r3 = nil
      end
      if r3
        s2 << r3
      else
        break
      end
    end
    r2 = SyntaxNode.new(input, i2...index, s2)
    s0 << r2
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(Table1)
    r0.extend(Table2)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:table][start_index] = r0

  return r0
end

#_nt_table_lineObject

:nodoc:



556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 556

def _nt_table_line #:nodoc:
  start_index = index
  if node_cache[:table_line].has_key?(index)
    cached = node_cache[:table_line][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0, s0 = index, []
  r1 = _nt_separator
  s0 << r1
  if r1
    s2, i2 = [], index
    loop do
      i3, s3 = index, []
      s4, i4 = [], index
      loop do
        r5 = _nt_blank
        if r5
          s4 << r5
        else
          break
        end
      end
      r4 = SyntaxNode.new(input, i4...index, s4)
      s3 << r4
      if r4
        r6 = _nt_cell_value
        s3 << r6
        if r6
          s7, i7 = [], index
          loop do
            r8 = _nt_blank
            if r8
              s7 << r8
            else
              break
            end
          end
          r7 = SyntaxNode.new(input, i7...index, s7)
          s3 << r7
          if r7
            r9 = _nt_separator
            s3 << r9
          end
        end
      end
      if s3.last
        r3 = (SyntaxNode).new(input, i3...index, s3)
        r3.extend(TableLine0)
      else
        self.index = i3
        r3 = nil
      end
      if r3
        s2 << r3
      else
        break
      end
    end
    if s2.empty?
      self.index = i2
      r2 = nil
    else
      r2 = SyntaxNode.new(input, i2...index, s2)
    end
    s0 << r2
  end
  if s0.last
    r0 = (SyntaxNode).new(input, i0...index, s0)
    r0.extend(TableLine1)
    r0.extend(TableLine2)
  else
    self.index = i0
    r0 = nil
  end

  node_cache[:table_line][start_index] = r0

  return r0
end

#_nt_whiteObject

:nodoc:



1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 1256

def _nt_white #:nodoc:
  start_index = index
  if node_cache[:white].has_key?(index)
    cached = node_cache[:white][index]
    @index = cached.interval.end if cached
    return cached
  end

  i0 = index
  r1 = _nt_blank
  if r1
    r0 = r1
  else
    r2 = _nt_eol
    if r2
      r0 = r2
    else
      self.index = i0
      r0 = nil
    end
  end

  node_cache[:white][start_index] = r0

  return r0
end

#parse_feature(file) ⇒ Object



22
23
24
25
26
27
28
29
30
31
# File 'lib/cucumber/treetop_parser/feature_parser.rb', line 22

def parse_feature(file)
  ast = parse(IO.read(file))
  if ast.nil?
    raise SyntaxError.new(file, self)
  else
    feature = ast.compile
    feature.file = file
    feature
  end
end

#rootObject

:nodoc:



7
8
9
# File 'lib/cucumber/treetop_parser/feature_da.rb', line 7

def root #:nodoc:
  @root || :root
end