benhamill-gherkin 2.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitattributes +2 -0
- data/.gitignore +11 -0
- data/.mailmap +2 -0
- data/.rspec +1 -0
- data/.rvmrc +1 -0
- data/Gemfile +7 -0
- data/History.txt +363 -0
- data/LICENSE +20 -0
- data/README.rdoc +149 -0
- data/Rakefile +19 -0
- data/VERSION +1 -0
- data/build_native_gems.sh +8 -0
- data/cucumber.yml +3 -0
- data/features/escaped_pipes.feature +8 -0
- data/features/feature_parser.feature +237 -0
- data/features/json_formatter.feature +377 -0
- data/features/json_parser.feature +318 -0
- data/features/native_lexer.feature +19 -0
- data/features/parser_with_native_lexer.feature +205 -0
- data/features/pretty_formatter.feature +15 -0
- data/features/step_definitions/eyeball_steps.rb +3 -0
- data/features/step_definitions/gherkin_steps.rb +29 -0
- data/features/step_definitions/json_formatter_steps.rb +28 -0
- data/features/step_definitions/json_parser_steps.rb +20 -0
- data/features/step_definitions/pretty_formatter_steps.rb +84 -0
- data/features/steps_parser.feature +46 -0
- data/features/support/env.rb +38 -0
- data/gherkin.gemspec +61 -0
- data/ikvm/.gitignore +3 -0
- data/java/.gitignore +5 -0
- data/java/src/main/java/gherkin/lexer/i18n/.gitignore +1 -0
- data/java/src/main/resources/gherkin/.gitignore +1 -0
- data/js/lib/gherkin/lexer/i18n/ar.js +1094 -0
- data/js/lib/gherkin/lexer/i18n/bg.js +1308 -0
- data/js/lib/gherkin/lexer/i18n/ca.js +1236 -0
- data/js/lib/gherkin/lexer/i18n/cs.js +1090 -0
- data/js/lib/gherkin/lexer/i18n/cy_gb.js +958 -0
- data/js/lib/gherkin/lexer/i18n/da.js +974 -0
- data/js/lib/gherkin/lexer/i18n/de.js +1082 -0
- data/js/lib/gherkin/lexer/i18n/en.js +965 -0
- data/js/lib/gherkin/lexer/i18n/en_au.js +902 -0
- data/js/lib/gherkin/lexer/i18n/en_lol.js +859 -0
- data/js/lib/gherkin/lexer/i18n/en_pirate.js +1136 -0
- data/js/lib/gherkin/lexer/i18n/en_scouse.js +1289 -0
- data/js/lib/gherkin/lexer/i18n/en_tx.js +942 -0
- data/js/lib/gherkin/lexer/i18n/eo.js +916 -0
- data/js/lib/gherkin/lexer/i18n/es.js +1049 -0
- data/js/lib/gherkin/lexer/i18n/et.js +915 -0
- data/js/lib/gherkin/lexer/i18n/fi.js +894 -0
- data/js/lib/gherkin/lexer/i18n/fr.js +1116 -0
- data/js/lib/gherkin/lexer/i18n/he.js +1044 -0
- data/js/lib/gherkin/lexer/i18n/hr.js +994 -0
- data/js/lib/gherkin/lexer/i18n/hu.js +1043 -0
- data/js/lib/gherkin/lexer/i18n/id.js +884 -0
- data/js/lib/gherkin/lexer/i18n/it.js +1007 -0
- data/js/lib/gherkin/lexer/i18n/ja.js +1344 -0
- data/js/lib/gherkin/lexer/i18n/ko.js +1028 -0
- data/js/lib/gherkin/lexer/i18n/lt.js +972 -0
- data/js/lib/gherkin/lexer/i18n/lu.js +1057 -0
- data/js/lib/gherkin/lexer/i18n/lv.js +1092 -0
- data/js/lib/gherkin/lexer/i18n/nl.js +1036 -0
- data/js/lib/gherkin/lexer/i18n/no.js +986 -0
- data/js/lib/gherkin/lexer/i18n/pl.js +1140 -0
- data/js/lib/gherkin/lexer/i18n/pt.js +1000 -0
- data/js/lib/gherkin/lexer/i18n/ro.js +1089 -0
- data/js/lib/gherkin/lexer/i18n/ru.js +1560 -0
- data/js/lib/gherkin/lexer/i18n/sk.js +972 -0
- data/js/lib/gherkin/lexer/i18n/sr_cyrl.js +1728 -0
- data/js/lib/gherkin/lexer/i18n/sr_latn.js +1220 -0
- data/js/lib/gherkin/lexer/i18n/sv.js +997 -0
- data/js/lib/gherkin/lexer/i18n/tr.js +1014 -0
- data/js/lib/gherkin/lexer/i18n/uk.js +1572 -0
- data/js/lib/gherkin/lexer/i18n/uz.js +1302 -0
- data/js/lib/gherkin/lexer/i18n/vi.js +1124 -0
- data/js/lib/gherkin/lexer/i18n/zh_cn.js +902 -0
- data/js/lib/gherkin/lexer/i18n/zh_tw.js +940 -0
- data/lib/.gitignore +4 -0
- data/lib/gherkin.rb +2 -0
- data/lib/gherkin/c_lexer.rb +17 -0
- data/lib/gherkin/formatter/ansi_escapes.rb +95 -0
- data/lib/gherkin/formatter/argument.rb +16 -0
- data/lib/gherkin/formatter/escaping.rb +15 -0
- data/lib/gherkin/formatter/filter_formatter.rb +136 -0
- data/lib/gherkin/formatter/hashable.rb +19 -0
- data/lib/gherkin/formatter/json_formatter.rb +102 -0
- data/lib/gherkin/formatter/line_filter.rb +26 -0
- data/lib/gherkin/formatter/model.rb +236 -0
- data/lib/gherkin/formatter/pretty_formatter.rb +243 -0
- data/lib/gherkin/formatter/regexp_filter.rb +21 -0
- data/lib/gherkin/formatter/step_printer.rb +17 -0
- data/lib/gherkin/formatter/tag_count_formatter.rb +47 -0
- data/lib/gherkin/formatter/tag_filter.rb +19 -0
- data/lib/gherkin/i18n.rb +175 -0
- data/lib/gherkin/i18n.yml +588 -0
- data/lib/gherkin/json_parser.rb +137 -0
- data/lib/gherkin/lexer/i18n_lexer.rb +47 -0
- data/lib/gherkin/listener/event.rb +45 -0
- data/lib/gherkin/listener/formatter_listener.rb +113 -0
- data/lib/gherkin/native.rb +7 -0
- data/lib/gherkin/native/ikvm.rb +55 -0
- data/lib/gherkin/native/java.rb +55 -0
- data/lib/gherkin/native/null.rb +9 -0
- data/lib/gherkin/parser/meta.txt +5 -0
- data/lib/gherkin/parser/parser.rb +164 -0
- data/lib/gherkin/parser/root.txt +11 -0
- data/lib/gherkin/parser/steps.txt +4 -0
- data/lib/gherkin/rb_lexer.rb +8 -0
- data/lib/gherkin/rb_lexer/.gitignore +1 -0
- data/lib/gherkin/rb_lexer/README.rdoc +8 -0
- data/lib/gherkin/rubify.rb +24 -0
- data/lib/gherkin/tag_expression.rb +62 -0
- data/lib/gherkin/version.rb +3 -0
- data/ragel/i18n/.gitignore +1 -0
- data/ragel/lexer.c.rl.erb +439 -0
- data/ragel/lexer.java.rl.erb +208 -0
- data/ragel/lexer.rb.rl.erb +167 -0
- data/ragel/lexer_common.rl.erb +50 -0
- data/spec/gherkin/c_lexer_spec.rb +21 -0
- data/spec/gherkin/fixtures/1.feature +8 -0
- data/spec/gherkin/fixtures/comments_in_table.feature +9 -0
- data/spec/gherkin/fixtures/complex.feature +45 -0
- data/spec/gherkin/fixtures/complex.json +143 -0
- data/spec/gherkin/fixtures/complex_for_filtering.feature +60 -0
- data/spec/gherkin/fixtures/complex_with_tags.feature +61 -0
- data/spec/gherkin/fixtures/dos_line_endings.feature +45 -0
- data/spec/gherkin/fixtures/hantu_pisang.feature +35 -0
- data/spec/gherkin/fixtures/i18n_fr.feature +14 -0
- data/spec/gherkin/fixtures/i18n_no.feature +7 -0
- data/spec/gherkin/fixtures/i18n_zh-CN.feature +9 -0
- data/spec/gherkin/fixtures/scenario_outline_with_tags.feature +13 -0
- data/spec/gherkin/fixtures/scenario_without_steps.feature +5 -0
- data/spec/gherkin/fixtures/simple_with_comments.feature +7 -0
- data/spec/gherkin/fixtures/simple_with_tags.feature +11 -0
- data/spec/gherkin/fixtures/with_bom.feature +3 -0
- data/spec/gherkin/formatter/ansi_escapes_spec.rb +19 -0
- data/spec/gherkin/formatter/filter_formatter_spec.rb +165 -0
- data/spec/gherkin/formatter/model_spec.rb +28 -0
- data/spec/gherkin/formatter/pretty_formatter_spec.rb +158 -0
- data/spec/gherkin/formatter/spaces.feature +9 -0
- data/spec/gherkin/formatter/step_printer_spec.rb +55 -0
- data/spec/gherkin/formatter/tabs.feature +9 -0
- data/spec/gherkin/formatter/tag_count_formatter_spec.rb +30 -0
- data/spec/gherkin/i18n_spec.rb +152 -0
- data/spec/gherkin/java_lexer_spec.rb +20 -0
- data/spec/gherkin/java_libs.rb +20 -0
- data/spec/gherkin/json_parser_spec.rb +113 -0
- data/spec/gherkin/lexer/i18n_lexer_spec.rb +43 -0
- data/spec/gherkin/output_stream_string_io.rb +20 -0
- data/spec/gherkin/parser/parser_spec.rb +16 -0
- data/spec/gherkin/rb_lexer_spec.rb +19 -0
- data/spec/gherkin/sexp_recorder.rb +56 -0
- data/spec/gherkin/shared/lexer_group.rb +593 -0
- data/spec/gherkin/shared/py_string_group.rb +153 -0
- data/spec/gherkin/shared/row_group.rb +125 -0
- data/spec/gherkin/shared/tags_group.rb +54 -0
- data/spec/gherkin/tag_expression_spec.rb +137 -0
- data/spec/spec_helper.rb +69 -0
- data/tasks/bench.rake +184 -0
- data/tasks/bench/feature_builder.rb +49 -0
- data/tasks/bench/generated/.gitignore +1 -0
- data/tasks/bench/null_listener.rb +4 -0
- data/tasks/compile.rake +102 -0
- data/tasks/cucumber.rake +20 -0
- data/tasks/gems.rake +35 -0
- data/tasks/ikvm.rake +79 -0
- data/tasks/ragel_task.rb +70 -0
- data/tasks/rdoc.rake +9 -0
- data/tasks/release.rake +30 -0
- data/tasks/rspec.rake +8 -0
- metadata +609 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
Feature: Pretty Formatter
|
2
|
+
In order to have pretty gherkin
|
3
|
+
I want to verify that all prettified cucumber features parse OK
|
4
|
+
|
5
|
+
Scenario: Parse all the features in Cucumber
|
6
|
+
Given I have Cucumber's source code next to Gherkin's
|
7
|
+
And I find all of the .feature files
|
8
|
+
When I send each prettified original through the "pretty" machinery
|
9
|
+
Then the machinery output should be identical to the prettified original
|
10
|
+
|
11
|
+
Scenario: Parse all the features in Cucumber with JSON
|
12
|
+
Given I have Cucumber's source code next to Gherkin's
|
13
|
+
And I find all of the .feature files
|
14
|
+
When I send each prettified original through the "json" machinery
|
15
|
+
Then the machinery output should be identical to the prettified original
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Given /^a "(ruby|native)" "([^\"]*)" parser$/ do |ruby_or_native, parser_name|
|
2
|
+
@parser = Gherkin::Parser::Parser.new(@formatter, false, parser_name, ruby_or_native=="ruby")
|
3
|
+
end
|
4
|
+
|
5
|
+
Given "the following text is parsed:" do |text|
|
6
|
+
@parser.parse(text, "test.feature", 0)
|
7
|
+
end
|
8
|
+
|
9
|
+
Then "there should be no parse errors" do
|
10
|
+
@formatter.errors.should == []
|
11
|
+
end
|
12
|
+
|
13
|
+
Then /^there should be a parse error on (line \d+)$/ do |line|
|
14
|
+
@formatter.line(line).should include(:syntax_error, line)
|
15
|
+
end
|
16
|
+
|
17
|
+
Then /^there should be parse errors on (lines .*)$/ do |lines|
|
18
|
+
lines.each do |line|
|
19
|
+
Then "there should be a parse error on line #{line}"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
Transform /^line \d+$/ do |step_arg|
|
24
|
+
tr_line_number(step_arg)
|
25
|
+
end
|
26
|
+
|
27
|
+
Transform /^lines .*$/ do |step_arg|
|
28
|
+
tr_line_numbers(step_arg)
|
29
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'ap' # awesome_print gem
|
2
|
+
require 'stringio'
|
3
|
+
require 'gherkin/formatter/json_formatter'
|
4
|
+
require 'gherkin/listener/formatter_listener'
|
5
|
+
|
6
|
+
# Monkey patching so that Hash.to_json has a predictable result.
|
7
|
+
class Hash
|
8
|
+
alias orig_keys keys
|
9
|
+
def keys
|
10
|
+
orig_keys.sort
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
Given /^a JSON formatter$/ do
|
15
|
+
@io = StringIO.new
|
16
|
+
@formatter = Gherkin::Formatter::JSONFormatter.new(@io)
|
17
|
+
end
|
18
|
+
|
19
|
+
Then /^the outputted JSON should be:$/ do |expected_json|
|
20
|
+
require 'json'
|
21
|
+
announce JSON.pretty_generate(JSON.parse(@io.string))
|
22
|
+
expected = JSON.parse(expected_json).ai
|
23
|
+
actual = JSON.parse(@io.string).ai
|
24
|
+
actual.should == expected
|
25
|
+
end
|
26
|
+
|
27
|
+
|
28
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'stringio'
|
2
|
+
require 'gherkin/formatter/pretty_formatter'
|
3
|
+
require 'gherkin/json_parser'
|
4
|
+
|
5
|
+
Given /^a PrettyFormatter$/ do
|
6
|
+
@io = StringIO.new
|
7
|
+
@formatter = Gherkin::Formatter::PrettyFormatter.new(@io, true, false)
|
8
|
+
end
|
9
|
+
|
10
|
+
Given /^a JSON lexer$/ do
|
11
|
+
@json_parser = Gherkin::JSONParser.new(@formatter)
|
12
|
+
end
|
13
|
+
|
14
|
+
Given /^the following JSON is parsed:$/ do |text|
|
15
|
+
@json_parser.parse(JSON.pretty_generate(JSON.parse(text)), "unknown.json", 0)
|
16
|
+
end
|
17
|
+
|
18
|
+
Then /^the outputted text should be:$/ do |expected_text|
|
19
|
+
@io.string.strip.should == expected_text
|
20
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
require 'stringio'
|
2
|
+
require 'fileutils'
|
3
|
+
require 'gherkin'
|
4
|
+
require 'gherkin/formatter/pretty_formatter'
|
5
|
+
require 'gherkin/formatter/json_formatter'
|
6
|
+
require 'gherkin/json_parser'
|
7
|
+
|
8
|
+
module PrettyPlease
|
9
|
+
|
10
|
+
def pretty_machinery(gherkin, feature_path)
|
11
|
+
io = StringIO.new
|
12
|
+
formatter = Gherkin::Formatter::PrettyFormatter.new(io, true, false)
|
13
|
+
parser = Gherkin::Parser::Parser.new(formatter, true)
|
14
|
+
parse(parser, gherkin, feature_path)
|
15
|
+
io.string
|
16
|
+
end
|
17
|
+
|
18
|
+
def json_machinery(gherkin, feature_path)
|
19
|
+
json = StringIO.new
|
20
|
+
json_formatter = Gherkin::Formatter::JSONFormatter.new(json)
|
21
|
+
gherkin_parser = Gherkin::Parser::Parser.new(json_formatter, true)
|
22
|
+
parse(gherkin_parser, gherkin, feature_path)
|
23
|
+
|
24
|
+
io = StringIO.new
|
25
|
+
pretty_formatter = Gherkin::Formatter::PrettyFormatter.new(io, true, false)
|
26
|
+
json_parser = Gherkin::JSONParser.new(pretty_formatter)
|
27
|
+
json_parser.parse(json.string, "#{feature_path}.json", 0)
|
28
|
+
|
29
|
+
io.string
|
30
|
+
end
|
31
|
+
|
32
|
+
def parse(parser, gherkin, feature_path)
|
33
|
+
begin
|
34
|
+
parser.parse(gherkin, feature_path, 0)
|
35
|
+
rescue => e
|
36
|
+
if e.message =~ /Lexing error/
|
37
|
+
FileUtils.mkdir "tmp" unless File.directory?("tmp")
|
38
|
+
written_path = "tmp/#{File.basename(feature_path)}"
|
39
|
+
File.open(written_path, "w") {|io| io.write(gherkin)}
|
40
|
+
e.message << "\nSee #{written_path}"
|
41
|
+
end
|
42
|
+
raise e
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
World(PrettyPlease)
|
48
|
+
|
49
|
+
Given /^I have Cucumber's source code next to Gherkin's$/ do
|
50
|
+
@cucumber_home = File.dirname(__FILE__) + '/../../../cucumber'
|
51
|
+
raise "No Cucumber source in #{@cucumber_home}" unless File.file?(@cucumber_home + '/bin/cucumber')
|
52
|
+
end
|
53
|
+
|
54
|
+
Given /^I find all of the \.feature files$/ do
|
55
|
+
@feature_paths = Dir["#{@cucumber_home}/**/*.feature"].sort
|
56
|
+
end
|
57
|
+
|
58
|
+
When /^I send each prettified original through the "([^"]*)" machinery$/ do |machinery|
|
59
|
+
@error = false
|
60
|
+
@feature_paths.each do |feature_path|
|
61
|
+
begin
|
62
|
+
next if feature_path =~ /iso-8859-1\.feature/
|
63
|
+
original = pretty_machinery(IO.read(feature_path), feature_path)
|
64
|
+
via_machinery = self.__send__("#{machinery}_machinery", original, feature_path)
|
65
|
+
via_machinery.should == original
|
66
|
+
rescue RSpec::Expectations::ExpectationNotMetError => e
|
67
|
+
announce "=========="
|
68
|
+
announce feature_path
|
69
|
+
if(e.message =~ /(@@.*)/m)
|
70
|
+
announce $1
|
71
|
+
@error = true
|
72
|
+
else
|
73
|
+
announce "Identical, except for newlines"
|
74
|
+
end
|
75
|
+
rescue => e
|
76
|
+
e.message << "\nFatal error happened when parsing #{feature_path}."
|
77
|
+
raise e
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
Then /^the machinery output should be identical to the prettified original$/ do
|
83
|
+
raise "Some features didn't make it through the machinery" if @error
|
84
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
Feature: Gherkin Steps parser
|
2
|
+
In order to save time and make my features clearer
|
3
|
+
As a Cucumber developer
|
4
|
+
I want a steps parser to make writing compound steps easier
|
5
|
+
|
6
|
+
Background:
|
7
|
+
Given a "ruby" "steps" parser
|
8
|
+
|
9
|
+
Scenario: Parsing steps
|
10
|
+
Given the following text is parsed:
|
11
|
+
"""
|
12
|
+
Given a one step
|
13
|
+
And a two step
|
14
|
+
\"\"\"
|
15
|
+
Here is a multiline string
|
16
|
+
That follows a step
|
17
|
+
With an argument #{arg}
|
18
|
+
\"\"\"
|
19
|
+
And a one two three step
|
20
|
+
When another step
|
21
|
+
Then there should be a table
|
22
|
+
| one | two | three |
|
23
|
+
| foo | bar | #{arg} |
|
24
|
+
"""
|
25
|
+
Then there should be no parse errors
|
26
|
+
|
27
|
+
Scenario: Trying to parse a full feature with the step parser
|
28
|
+
Given the following text is parsed:
|
29
|
+
"""
|
30
|
+
Feature: A Feature
|
31
|
+
Scenario: Yes, there is one
|
32
|
+
Given I have a step
|
33
|
+
When I execute this step
|
34
|
+
Then something should happen
|
35
|
+
"""
|
36
|
+
Then there should be parse errors on lines 1 and 2
|
37
|
+
|
38
|
+
Scenario: Tags
|
39
|
+
Given the following text is parsed:
|
40
|
+
"""
|
41
|
+
@a_tag
|
42
|
+
Given a step
|
43
|
+
When I trip
|
44
|
+
Then I should sign up for dancing lessons
|
45
|
+
"""
|
46
|
+
Then there should be a parse error on line 1
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'bundler'
|
3
|
+
Bundler.setup
|
4
|
+
|
5
|
+
# I'm sure there's a better way than this...
|
6
|
+
%w{ /../../spec /../../lib}.each do |path|
|
7
|
+
$LOAD_PATH << File.expand_path(File.dirname(__FILE__) + path)
|
8
|
+
end
|
9
|
+
require 'gherkin'
|
10
|
+
require 'gherkin/sexp_recorder'
|
11
|
+
require 'gherkin/output_stream_string_io'
|
12
|
+
require 'gherkin/java_libs'
|
13
|
+
|
14
|
+
module TransformHelpers
|
15
|
+
def tr_line_number(step_arg)
|
16
|
+
/(\d+)$/.match(step_arg)[0].to_i
|
17
|
+
end
|
18
|
+
|
19
|
+
def tr_line_numbers(step_arg)
|
20
|
+
if step_arg =~ /through/
|
21
|
+
Range.new(*step_arg.scan(/\d+/).collect { |i| i.to_i })
|
22
|
+
else
|
23
|
+
step_arg.scan(/\d+/).collect { |i| i.to_i }
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
class GherkinWorld
|
29
|
+
include TransformHelpers
|
30
|
+
|
31
|
+
def initialize
|
32
|
+
@formatter = Gherkin::SexpRecorder.new
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
World do
|
37
|
+
GherkinWorld.new
|
38
|
+
end
|
data/gherkin.gemspec
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
gherkin_dir = Dir.pwd =~ /gherkin\/tmp/ ? File.expand_path("../../../..", Dir.pwd) : File.expand_path("..", __FILE__)
|
3
|
+
$LOAD_PATH.unshift File.join(gherkin_dir, 'lib')
|
4
|
+
require "gherkin/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "benhamill-gherkin"
|
8
|
+
s.version = Gherkin::VERSION
|
9
|
+
s.authors = ["Mike Sassak", "Gregory Hnatiuk", "Aslak Hellesøy"]
|
10
|
+
s.description = "A fast Gherkin lexer/parser based on the Ragel State Machine Compiler."
|
11
|
+
s.summary = "gherkin-#{Gherkin::VERSION}"
|
12
|
+
s.email = "cukes@googlegroups.com"
|
13
|
+
s.homepage = "http://github.com/aslakhellesoy/gherkin"
|
14
|
+
|
15
|
+
s.rubygems_version = "1.3.7"
|
16
|
+
s.default_executable = "gherkin"
|
17
|
+
|
18
|
+
s.files = `git ls-files`.split("\n")
|
19
|
+
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
|
20
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
21
|
+
s.extra_rdoc_files = ["LICENSE", "README.rdoc", "History.txt"]
|
22
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
23
|
+
s.require_path = "lib"
|
24
|
+
|
25
|
+
s.files -= Dir['ikvm/**/*']
|
26
|
+
s.files -= Dir['java/**/*']
|
27
|
+
s.files -= Dir['ext/**/*']
|
28
|
+
s.files -= Dir['lib/gherkin.jar']
|
29
|
+
s.files -= Dir['lib/**/*.dll']
|
30
|
+
s.files -= Dir['lib/**/*.bundle']
|
31
|
+
s.files -= Dir['lib/**/*.so']
|
32
|
+
|
33
|
+
if ENV['GEM_PLATFORM']
|
34
|
+
puts "GEM_PLATFORM:#{ENV['GEM_PLATFORM']}"
|
35
|
+
end
|
36
|
+
s.platform = ENV['GEM_PLATFORM'] if ENV['GEM_PLATFORM']
|
37
|
+
case s.platform.to_s
|
38
|
+
when /java/
|
39
|
+
s.files += ['lib/gherkin.jar']
|
40
|
+
when /mswin|mingw32/
|
41
|
+
s.files += Dir['lib/*/*.so']
|
42
|
+
when /dotnet/
|
43
|
+
s.files += Dir['lib/*.dll']
|
44
|
+
else # MRI or Rubinius
|
45
|
+
s.files += Dir['lib/gherkin/rb_lexer/*.rb']
|
46
|
+
s.files += Dir['ext/**/*.c']
|
47
|
+
s.extensions = Dir['ext/**/extconf.rb']
|
48
|
+
s.add_development_dependency('rake-compiler', '~> 0.7.5')
|
49
|
+
end
|
50
|
+
|
51
|
+
s.add_dependency('json', '>= 1.4.6')
|
52
|
+
|
53
|
+
s.add_development_dependency('cucumber', '>= 0.10.0')
|
54
|
+
s.add_development_dependency('rake', '>= 0.8.7')
|
55
|
+
s.add_development_dependency('bundler', '>= 1.0.10')
|
56
|
+
s.add_development_dependency('rspec', '>= 2.5.0')
|
57
|
+
s.add_development_dependency('awesome_print', '>= 0.3')
|
58
|
+
# Only needed by Cucumber. Remove when Cucumber no longer needs those.
|
59
|
+
s.add_development_dependency('term-ansicolor', '>= 1.0.5')
|
60
|
+
s.add_development_dependency('builder', '>= 3.0.0')
|
61
|
+
end
|
data/ikvm/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
*.java
|
@@ -0,0 +1 @@
|
|
1
|
+
*.properties
|
@@ -0,0 +1,1094 @@
|
|
1
|
+
|
2
|
+
/* line 1 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
3
|
+
;(function() {
|
4
|
+
|
5
|
+
|
6
|
+
/* line 107 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
/* line 11 "js/lib/gherkin/lexer/i18n/ar.js" */
|
11
|
+
const _lexer_actions = [
|
12
|
+
0, 1, 0, 1, 1, 1, 2, 1,
|
13
|
+
3, 1, 4, 1, 5, 1, 6, 1,
|
14
|
+
7, 1, 8, 1, 9, 1, 10, 1,
|
15
|
+
11, 1, 14, 1, 15, 1, 16, 1,
|
16
|
+
17, 1, 18, 1, 19, 1, 20, 1,
|
17
|
+
21, 2, 2, 16, 2, 11, 0, 2,
|
18
|
+
12, 13, 2, 15, 0, 2, 15, 1,
|
19
|
+
2, 15, 14, 2, 15, 17, 2, 16,
|
20
|
+
4, 2, 16, 5, 2, 16, 6, 2,
|
21
|
+
16, 7, 2, 16, 8, 2, 16, 14,
|
22
|
+
2, 18, 19, 2, 20, 0, 2, 20,
|
23
|
+
1, 2, 20, 14, 2, 20, 17, 3,
|
24
|
+
3, 12, 13, 3, 9, 12, 13, 3,
|
25
|
+
10, 12, 13, 3, 11, 12, 13, 3,
|
26
|
+
12, 13, 16, 3, 15, 12, 13, 4,
|
27
|
+
2, 12, 13, 16, 4, 15, 0, 12,
|
28
|
+
13
|
29
|
+
];
|
30
|
+
|
31
|
+
const _lexer_key_offsets = [
|
32
|
+
0, 0, 13, 19, 21, 22, 23, 24,
|
33
|
+
25, 26, 27, 28, 30, 42, 45, 46,
|
34
|
+
47, 48, 49, 50, 51, 52, 53, 54,
|
35
|
+
55, 59, 64, 69, 74, 79, 83, 87,
|
36
|
+
89, 90, 91, 92, 93, 94, 95, 96,
|
37
|
+
97, 98, 99, 100, 101, 102, 103, 104,
|
38
|
+
109, 116, 121, 125, 131, 134, 136, 142,
|
39
|
+
154, 156, 157, 158, 159, 160, 161, 162,
|
40
|
+
163, 164, 165, 166, 167, 168, 169, 179,
|
41
|
+
186, 188, 190, 192, 194, 196, 198, 200,
|
42
|
+
212, 214, 216, 218, 220, 222, 224, 226,
|
43
|
+
228, 230, 232, 234, 236, 238, 240, 242,
|
44
|
+
244, 246, 248, 250, 252, 254, 256, 258,
|
45
|
+
260, 262, 264, 266, 268, 270, 273, 275,
|
46
|
+
277, 279, 281, 283, 285, 287, 289, 291,
|
47
|
+
293, 295, 297, 299, 301, 303, 305, 309,
|
48
|
+
311, 313, 315, 317, 319, 321, 323, 325,
|
49
|
+
327, 329, 331, 333, 335, 337, 339, 341,
|
50
|
+
343, 345, 347, 349, 351, 353, 354, 355,
|
51
|
+
356, 357, 358, 359, 360, 361, 362, 369,
|
52
|
+
371, 373, 375, 377, 379, 381, 383, 385,
|
53
|
+
387, 389, 390, 391, 392, 393, 394, 395,
|
54
|
+
396, 397, 398, 399, 400, 401, 402, 403,
|
55
|
+
404, 405, 406, 407, 408, 416, 420, 422,
|
56
|
+
425, 427, 429, 431, 433, 435, 437, 439,
|
57
|
+
441, 443, 445, 447, 449, 451, 453, 455,
|
58
|
+
457, 459, 461, 463, 465, 467, 469, 471,
|
59
|
+
473, 475, 477, 479, 481, 483, 485, 487,
|
60
|
+
490, 492, 494, 496, 498, 500, 502, 504,
|
61
|
+
506, 508, 510, 512, 514, 516, 518, 520,
|
62
|
+
522, 524, 526, 528, 530, 532, 534, 535,
|
63
|
+
536, 537, 538, 539, 540, 541, 542, 543,
|
64
|
+
544, 545, 546, 548, 549, 550, 551, 552,
|
65
|
+
553, 554, 555, 556, 557, 558, 559, 569,
|
66
|
+
576, 578, 580, 582, 584, 586, 588, 590,
|
67
|
+
592, 594, 596, 598, 600, 602, 604, 606,
|
68
|
+
608, 610, 612, 614, 616, 618, 620, 622,
|
69
|
+
624, 626, 628, 630, 632, 634, 636, 638,
|
70
|
+
640, 642, 644, 646, 648, 650, 652, 654,
|
71
|
+
656, 658, 660, 662, 664, 668, 670, 672,
|
72
|
+
674, 676, 678, 680, 682, 684, 686, 688,
|
73
|
+
690, 692, 694, 696, 698, 700, 702, 704,
|
74
|
+
706, 708, 710, 712, 713, 714, 724, 731,
|
75
|
+
734, 736, 738, 740, 742, 744, 746, 748,
|
76
|
+
750, 752, 754, 756, 758, 760, 762, 764,
|
77
|
+
766, 768, 770, 772, 774, 776, 778, 780,
|
78
|
+
782, 784, 786, 788, 790, 792, 794, 796,
|
79
|
+
798, 800, 802, 804, 806, 808, 810, 812,
|
80
|
+
814, 816, 818, 821, 823, 825, 827, 829,
|
81
|
+
831, 833, 835, 837, 839, 841, 843, 845,
|
82
|
+
847, 849, 851, 853, 857, 859, 861, 863,
|
83
|
+
865, 867, 869, 871, 873, 875, 877, 879,
|
84
|
+
881, 883, 885, 887, 889, 891, 893, 895,
|
85
|
+
897, 899, 901, 902, 903, 904, 905, 906,
|
86
|
+
907, 908, 909, 910, 911
|
87
|
+
];
|
88
|
+
|
89
|
+
const _lexer_trans_keys = [
|
90
|
+
-40, -39, 10, 32, 34, 35, 37, 42,
|
91
|
+
64, 124, 239, 9, 13, -89, -88, -85,
|
92
|
+
-82, -77, -71, -40, -39, -80, -40, -89,
|
93
|
+
-39, -117, 32, 10, 10, 13, -40, -39,
|
94
|
+
10, 32, 34, 35, 37, 42, 64, 124,
|
95
|
+
9, 13, -124, -123, -120, -39, -125, -39,
|
96
|
+
-122, -40, -86, -39, -119, 34, 34, 10,
|
97
|
+
32, 9, 13, 10, 32, 34, 9, 13,
|
98
|
+
10, 32, 34, 9, 13, 10, 32, 34,
|
99
|
+
9, 13, 10, 32, 34, 9, 13, 10,
|
100
|
+
32, 9, 13, 10, 32, 9, 13, 10,
|
101
|
+
13, 10, 95, 70, 69, 65, 84, 85,
|
102
|
+
82, 69, 95, 69, 78, 68, 95, 37,
|
103
|
+
13, 32, 64, 9, 10, 9, 10, 13,
|
104
|
+
32, 64, 11, 12, 10, 32, 64, 9,
|
105
|
+
13, 32, 124, 9, 13, 10, 32, 92,
|
106
|
+
124, 9, 13, 10, 92, 124, 10, 92,
|
107
|
+
10, 32, 92, 124, 9, 13, -40, -39,
|
108
|
+
10, 32, 34, 35, 37, 42, 64, 124,
|
109
|
+
9, 13, -124, -123, -40, -82, -39, -124,
|
110
|
+
-39, -127, -39, -118, -40, -87, 58, 10,
|
111
|
+
10, -40, -39, 10, 32, 35, 37, 42,
|
112
|
+
64, 9, 13, -89, -88, -85, -82, -77,
|
113
|
+
-71, 10, -40, 10, -80, 10, -40, 10,
|
114
|
+
-89, 10, -39, 10, -117, 10, 10, 32,
|
115
|
+
-40, -39, 10, 32, 34, 35, 37, 42,
|
116
|
+
64, 124, 9, 13, -39, 10, -127, 10,
|
117
|
+
-40, 10, -79, 10, -40, 10, -74, 10,
|
118
|
+
-39, 10, -123, 10, -40, 10, -89, 10,
|
119
|
+
-40, 10, -75, 10, -39, 10, -118, 10,
|
120
|
+
-40, 10, -87, 10, 10, 58, -39, 10,
|
121
|
+
-118, 10, -39, 10, -122, 10, -40, 10,
|
122
|
+
-89, 10, -40, 10, -79, 10, -39, 10,
|
123
|
+
-118, 10, -39, 10, -120, 10, 10, 32,
|
124
|
+
58, -39, 10, -123, 10, -40, 10, -82,
|
125
|
+
10, -40, 10, -73, 10, -40, 10, -73,
|
126
|
+
10, -39, 10, -122, 10, -40, 10, -81,
|
127
|
+
10, -39, 10, -123, 10, -40, 10, -89,
|
128
|
+
10, -124, -123, -120, 10, -39, 10, -125,
|
129
|
+
10, -39, 10, -122, 10, -40, 10, -86,
|
130
|
+
10, -39, 10, -119, 10, 10, 95, 10,
|
131
|
+
70, 10, 69, 10, 65, 10, 84, 10,
|
132
|
+
85, 10, 82, 10, 69, 10, 95, 10,
|
133
|
+
69, 10, 78, 10, 68, 10, 95, 10,
|
134
|
+
37, -40, -85, -39, -124, -40, -87, 58,
|
135
|
+
10, 10, -40, 10, 32, 35, 124, 9,
|
136
|
+
13, -82, 10, -40, 10, -89, 10, -40,
|
137
|
+
10, -75, 10, -39, 10, -118, 10, -40,
|
138
|
+
10, -87, 10, 10, 58, -39, -127, -40,
|
139
|
+
-79, -40, -74, -39, -123, -40, -89, -40,
|
140
|
+
-75, -39, -118, -40, -87, 58, 10, 10,
|
141
|
+
-40, 10, 32, 35, 37, 64, 9, 13,
|
142
|
+
-89, -82, -77, 10, -39, 10, -124, -123,
|
143
|
+
10, -40, 10, -82, 10, -39, 10, -124,
|
144
|
+
10, -39, 10, -127, 10, -39, 10, -118,
|
145
|
+
10, -40, 10, -87, 10, 10, 58, -40,
|
146
|
+
10, -85, 10, -39, 10, -124, 10, -40,
|
147
|
+
10, -89, 10, -40, 10, -75, 10, -39,
|
148
|
+
10, -118, 10, -39, 10, -122, 10, -40,
|
149
|
+
10, -89, 10, -40, 10, -79, 10, -39,
|
150
|
+
10, -118, 10, -39, 10, -120, 10, 10,
|
151
|
+
32, 58, -39, 10, -123, 10, -40, 10,
|
152
|
+
-82, 10, -40, 10, -73, 10, -40, 10,
|
153
|
+
-73, 10, 10, 95, 10, 70, 10, 69,
|
154
|
+
10, 65, 10, 84, 10, 85, 10, 82,
|
155
|
+
10, 69, 10, 95, 10, 69, 10, 78,
|
156
|
+
10, 68, 10, 95, 10, 37, -39, -118,
|
157
|
+
-39, -122, -40, -89, -40, -79, -39, -118,
|
158
|
+
-39, -120, 32, 58, -39, -123, -40, -82,
|
159
|
+
-40, -73, -40, -73, 58, 10, 10, -40,
|
160
|
+
-39, 10, 32, 35, 37, 42, 64, 9,
|
161
|
+
13, -89, -88, -85, -82, -77, -71, 10,
|
162
|
+
-40, 10, -80, 10, -40, 10, -89, 10,
|
163
|
+
-39, 10, -117, 10, 10, 32, -39, 10,
|
164
|
+
-127, 10, -40, 10, -79, 10, -40, 10,
|
165
|
+
-74, 10, -39, 10, -123, 10, -40, 10,
|
166
|
+
-89, 10, -40, 10, -75, 10, -39, 10,
|
167
|
+
-118, 10, -40, 10, -87, 10, 10, 58,
|
168
|
+
-39, 10, -118, 10, -39, 10, -122, 10,
|
169
|
+
-40, 10, -89, 10, -40, 10, -79, 10,
|
170
|
+
-39, 10, -118, 10, -39, 10, -120, 10,
|
171
|
+
-39, 10, -122, 10, -40, 10, -81, 10,
|
172
|
+
-39, 10, -123, 10, -40, 10, -89, 10,
|
173
|
+
-124, -123, -120, 10, -39, 10, -125, 10,
|
174
|
+
-39, 10, -122, 10, -40, 10, -86, 10,
|
175
|
+
-39, 10, -119, 10, 10, 95, 10, 70,
|
176
|
+
10, 69, 10, 65, 10, 84, 10, 85,
|
177
|
+
10, 82, 10, 69, 10, 95, 10, 69,
|
178
|
+
10, 78, 10, 68, 10, 95, 10, 37,
|
179
|
+
10, 10, -40, -39, 10, 32, 35, 37,
|
180
|
+
42, 64, 9, 13, -89, -88, -85, -82,
|
181
|
+
-77, -71, 10, -40, -39, 10, -80, 10,
|
182
|
+
-40, 10, -89, 10, -39, 10, -117, 10,
|
183
|
+
10, 32, -124, 10, -40, 10, -82, 10,
|
184
|
+
-39, 10, -124, 10, -39, 10, -127, 10,
|
185
|
+
-39, 10, -118, 10, -40, 10, -87, 10,
|
186
|
+
10, 58, -39, 10, -127, 10, -40, 10,
|
187
|
+
-79, 10, -40, 10, -74, 10, -39, 10,
|
188
|
+
-123, 10, -40, 10, -89, 10, -40, 10,
|
189
|
+
-75, 10, -39, 10, -118, 10, -39, 10,
|
190
|
+
-122, 10, -40, 10, -89, 10, -40, 10,
|
191
|
+
-79, 10, -39, 10, -118, 10, -39, 10,
|
192
|
+
-120, 10, 10, 32, 58, -39, 10, -123,
|
193
|
+
10, -40, 10, -82, 10, -40, 10, -73,
|
194
|
+
10, -40, 10, -73, 10, -39, 10, -122,
|
195
|
+
10, -40, 10, -81, 10, -39, 10, -123,
|
196
|
+
10, -40, 10, -89, 10, -124, -123, -120,
|
197
|
+
10, -39, 10, -125, 10, -39, 10, -122,
|
198
|
+
10, -40, 10, -86, 10, -39, 10, -119,
|
199
|
+
10, 10, 95, 10, 70, 10, 69, 10,
|
200
|
+
65, 10, 84, 10, 85, 10, 82, 10,
|
201
|
+
69, 10, 95, 10, 69, 10, 78, 10,
|
202
|
+
68, 10, 95, 10, 37, -39, -122, -40,
|
203
|
+
-81, -39, -123, -40, -89, 187, 191, 0
|
204
|
+
];
|
205
|
+
|
206
|
+
const _lexer_single_lengths = [
|
207
|
+
0, 11, 6, 2, 1, 1, 1, 1,
|
208
|
+
1, 1, 1, 2, 10, 3, 1, 1,
|
209
|
+
1, 1, 1, 1, 1, 1, 1, 1,
|
210
|
+
2, 3, 3, 3, 3, 2, 2, 2,
|
211
|
+
1, 1, 1, 1, 1, 1, 1, 1,
|
212
|
+
1, 1, 1, 1, 1, 1, 1, 3,
|
213
|
+
5, 3, 2, 4, 3, 2, 4, 10,
|
214
|
+
2, 1, 1, 1, 1, 1, 1, 1,
|
215
|
+
1, 1, 1, 1, 1, 1, 8, 7,
|
216
|
+
2, 2, 2, 2, 2, 2, 2, 10,
|
217
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
218
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
219
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
220
|
+
2, 2, 2, 2, 2, 3, 2, 2,
|
221
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
222
|
+
2, 2, 2, 2, 2, 2, 4, 2,
|
223
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
224
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
225
|
+
2, 2, 2, 2, 2, 1, 1, 1,
|
226
|
+
1, 1, 1, 1, 1, 1, 5, 2,
|
227
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
228
|
+
2, 1, 1, 1, 1, 1, 1, 1,
|
229
|
+
1, 1, 1, 1, 1, 1, 1, 1,
|
230
|
+
1, 1, 1, 1, 6, 4, 2, 3,
|
231
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
232
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
233
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
234
|
+
2, 2, 2, 2, 2, 2, 2, 3,
|
235
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
236
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
237
|
+
2, 2, 2, 2, 2, 2, 1, 1,
|
238
|
+
1, 1, 1, 1, 1, 1, 1, 1,
|
239
|
+
1, 1, 2, 1, 1, 1, 1, 1,
|
240
|
+
1, 1, 1, 1, 1, 1, 8, 7,
|
241
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
242
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
243
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
244
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
245
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
246
|
+
2, 2, 2, 2, 4, 2, 2, 2,
|
247
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
248
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
249
|
+
2, 2, 2, 1, 1, 8, 7, 3,
|
250
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
251
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
252
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
253
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
254
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
255
|
+
2, 2, 3, 2, 2, 2, 2, 2,
|
256
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
257
|
+
2, 2, 2, 4, 2, 2, 2, 2,
|
258
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
259
|
+
2, 2, 2, 2, 2, 2, 2, 2,
|
260
|
+
2, 2, 1, 1, 1, 1, 1, 1,
|
261
|
+
1, 1, 1, 1, 0
|
262
|
+
];
|
263
|
+
|
264
|
+
const _lexer_range_lengths = [
|
265
|
+
0, 1, 0, 0, 0, 0, 0, 0,
|
266
|
+
0, 0, 0, 0, 1, 0, 0, 0,
|
267
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
268
|
+
1, 1, 1, 1, 1, 1, 1, 0,
|
269
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
270
|
+
0, 0, 0, 0, 0, 0, 0, 1,
|
271
|
+
1, 1, 1, 1, 0, 0, 1, 1,
|
272
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
273
|
+
0, 0, 0, 0, 0, 0, 1, 0,
|
274
|
+
0, 0, 0, 0, 0, 0, 0, 1,
|
275
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
276
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
277
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
278
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
279
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
280
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
281
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
282
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
283
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
284
|
+
0, 0, 0, 0, 0, 0, 1, 0,
|
285
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
286
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
287
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
288
|
+
0, 0, 0, 0, 1, 0, 0, 0,
|
289
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
290
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
291
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
292
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
293
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
294
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
295
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
296
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
297
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
298
|
+
0, 0, 0, 0, 0, 0, 1, 0,
|
299
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
300
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
301
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
302
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
303
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
304
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
305
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
306
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
307
|
+
0, 0, 0, 0, 0, 1, 0, 0,
|
308
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
309
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
310
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
311
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
312
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
313
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
314
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
315
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
316
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
317
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
318
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
319
|
+
0, 0, 0, 0, 0
|
320
|
+
];
|
321
|
+
|
322
|
+
const _lexer_index_offsets = [
|
323
|
+
0, 0, 13, 20, 23, 25, 27, 29,
|
324
|
+
31, 33, 35, 37, 40, 52, 56, 58,
|
325
|
+
60, 62, 64, 66, 68, 70, 72, 74,
|
326
|
+
76, 80, 85, 90, 95, 100, 104, 108,
|
327
|
+
111, 113, 115, 117, 119, 121, 123, 125,
|
328
|
+
127, 129, 131, 133, 135, 137, 139, 141,
|
329
|
+
146, 153, 158, 162, 168, 172, 175, 181,
|
330
|
+
193, 196, 198, 200, 202, 204, 206, 208,
|
331
|
+
210, 212, 214, 216, 218, 220, 222, 232,
|
332
|
+
240, 243, 246, 249, 252, 255, 258, 261,
|
333
|
+
273, 276, 279, 282, 285, 288, 291, 294,
|
334
|
+
297, 300, 303, 306, 309, 312, 315, 318,
|
335
|
+
321, 324, 327, 330, 333, 336, 339, 342,
|
336
|
+
345, 348, 351, 354, 357, 360, 364, 367,
|
337
|
+
370, 373, 376, 379, 382, 385, 388, 391,
|
338
|
+
394, 397, 400, 403, 406, 409, 412, 417,
|
339
|
+
420, 423, 426, 429, 432, 435, 438, 441,
|
340
|
+
444, 447, 450, 453, 456, 459, 462, 465,
|
341
|
+
468, 471, 474, 477, 480, 483, 485, 487,
|
342
|
+
489, 491, 493, 495, 497, 499, 501, 508,
|
343
|
+
511, 514, 517, 520, 523, 526, 529, 532,
|
344
|
+
535, 538, 540, 542, 544, 546, 548, 550,
|
345
|
+
552, 554, 556, 558, 560, 562, 564, 566,
|
346
|
+
568, 570, 572, 574, 576, 584, 589, 592,
|
347
|
+
596, 599, 602, 605, 608, 611, 614, 617,
|
348
|
+
620, 623, 626, 629, 632, 635, 638, 641,
|
349
|
+
644, 647, 650, 653, 656, 659, 662, 665,
|
350
|
+
668, 671, 674, 677, 680, 683, 686, 689,
|
351
|
+
693, 696, 699, 702, 705, 708, 711, 714,
|
352
|
+
717, 720, 723, 726, 729, 732, 735, 738,
|
353
|
+
741, 744, 747, 750, 753, 756, 759, 761,
|
354
|
+
763, 765, 767, 769, 771, 773, 775, 777,
|
355
|
+
779, 781, 783, 786, 788, 790, 792, 794,
|
356
|
+
796, 798, 800, 802, 804, 806, 808, 818,
|
357
|
+
826, 829, 832, 835, 838, 841, 844, 847,
|
358
|
+
850, 853, 856, 859, 862, 865, 868, 871,
|
359
|
+
874, 877, 880, 883, 886, 889, 892, 895,
|
360
|
+
898, 901, 904, 907, 910, 913, 916, 919,
|
361
|
+
922, 925, 928, 931, 934, 937, 940, 943,
|
362
|
+
946, 949, 952, 955, 958, 963, 966, 969,
|
363
|
+
972, 975, 978, 981, 984, 987, 990, 993,
|
364
|
+
996, 999, 1002, 1005, 1008, 1011, 1014, 1017,
|
365
|
+
1020, 1023, 1026, 1029, 1031, 1033, 1043, 1051,
|
366
|
+
1055, 1058, 1061, 1064, 1067, 1070, 1073, 1076,
|
367
|
+
1079, 1082, 1085, 1088, 1091, 1094, 1097, 1100,
|
368
|
+
1103, 1106, 1109, 1112, 1115, 1118, 1121, 1124,
|
369
|
+
1127, 1130, 1133, 1136, 1139, 1142, 1145, 1148,
|
370
|
+
1151, 1154, 1157, 1160, 1163, 1166, 1169, 1172,
|
371
|
+
1175, 1178, 1181, 1185, 1188, 1191, 1194, 1197,
|
372
|
+
1200, 1203, 1206, 1209, 1212, 1215, 1218, 1221,
|
373
|
+
1224, 1227, 1230, 1233, 1238, 1241, 1244, 1247,
|
374
|
+
1250, 1253, 1256, 1259, 1262, 1265, 1268, 1271,
|
375
|
+
1274, 1277, 1280, 1283, 1286, 1289, 1292, 1295,
|
376
|
+
1298, 1301, 1304, 1306, 1308, 1310, 1312, 1314,
|
377
|
+
1316, 1318, 1320, 1322, 1324
|
378
|
+
];
|
379
|
+
|
380
|
+
const _lexer_indicies = [
|
381
|
+
1, 2, 4, 3, 5, 6, 7, 8,
|
382
|
+
9, 10, 11, 3, 0, 12, 13, 14,
|
383
|
+
15, 16, 17, 0, 18, 19, 0, 20,
|
384
|
+
0, 21, 0, 22, 0, 23, 0, 24,
|
385
|
+
0, 25, 0, 0, 26, 28, 29, 27,
|
386
|
+
1, 2, 4, 3, 5, 6, 7, 8,
|
387
|
+
9, 10, 3, 0, 30, 31, 24, 0,
|
388
|
+
32, 0, 33, 0, 34, 0, 24, 0,
|
389
|
+
35, 0, 36, 0, 37, 0, 24, 0,
|
390
|
+
38, 0, 39, 0, 40, 39, 39, 0,
|
391
|
+
43, 42, 44, 42, 41, 47, 46, 48,
|
392
|
+
46, 45, 47, 46, 49, 46, 45, 47,
|
393
|
+
46, 50, 46, 45, 52, 51, 51, 0,
|
394
|
+
4, 53, 53, 0, 55, 56, 54, 4,
|
395
|
+
0, 57, 0, 58, 0, 59, 0, 60,
|
396
|
+
0, 61, 0, 62, 0, 63, 0, 64,
|
397
|
+
0, 65, 0, 66, 0, 67, 0, 68,
|
398
|
+
0, 69, 0, 70, 0, 0, 0, 0,
|
399
|
+
0, 71, 72, 73, 72, 72, 75, 74,
|
400
|
+
71, 4, 76, 9, 76, 0, 77, 78,
|
401
|
+
77, 0, 81, 80, 82, 83, 80, 79,
|
402
|
+
0, 85, 86, 84, 0, 85, 84, 81,
|
403
|
+
87, 85, 86, 87, 84, 88, 89, 81,
|
404
|
+
90, 91, 92, 93, 94, 95, 96, 90,
|
405
|
+
0, 97, 98, 0, 99, 0, 100, 0,
|
406
|
+
101, 0, 102, 0, 103, 0, 104, 0,
|
407
|
+
105, 0, 106, 0, 107, 0, 108, 0,
|
408
|
+
109, 0, 111, 110, 113, 112, 114, 115,
|
409
|
+
113, 116, 117, 118, 119, 117, 116, 112,
|
410
|
+
120, 121, 122, 123, 124, 125, 113, 112,
|
411
|
+
126, 113, 112, 127, 113, 112, 128, 113,
|
412
|
+
112, 129, 113, 112, 130, 113, 112, 131,
|
413
|
+
113, 112, 113, 132, 112, 133, 134, 136,
|
414
|
+
135, 137, 138, 139, 140, 141, 142, 135,
|
415
|
+
0, 143, 113, 112, 144, 113, 112, 145,
|
416
|
+
113, 112, 146, 113, 112, 147, 113, 112,
|
417
|
+
131, 113, 112, 148, 113, 112, 131, 113,
|
418
|
+
112, 149, 113, 112, 150, 113, 112, 151,
|
419
|
+
113, 112, 152, 113, 112, 153, 113, 112,
|
420
|
+
154, 113, 112, 155, 113, 112, 156, 113,
|
421
|
+
112, 113, 132, 112, 157, 113, 112, 158,
|
422
|
+
113, 112, 159, 113, 112, 160, 113, 112,
|
423
|
+
161, 113, 112, 162, 113, 112, 163, 113,
|
424
|
+
112, 164, 113, 112, 165, 113, 112, 166,
|
425
|
+
113, 112, 167, 113, 112, 168, 113, 112,
|
426
|
+
113, 169, 132, 112, 170, 113, 112, 171,
|
427
|
+
113, 112, 172, 113, 112, 173, 113, 112,
|
428
|
+
174, 113, 112, 175, 113, 112, 176, 113,
|
429
|
+
112, 156, 113, 112, 177, 113, 112, 178,
|
430
|
+
113, 112, 179, 113, 112, 180, 113, 112,
|
431
|
+
181, 113, 112, 182, 113, 112, 183, 113,
|
432
|
+
112, 131, 113, 112, 184, 185, 131, 113,
|
433
|
+
112, 186, 113, 112, 187, 113, 112, 188,
|
434
|
+
113, 112, 131, 113, 112, 189, 113, 112,
|
435
|
+
190, 113, 112, 191, 113, 112, 131, 113,
|
436
|
+
112, 113, 192, 112, 113, 193, 112, 113,
|
437
|
+
194, 112, 113, 195, 112, 113, 196, 112,
|
438
|
+
113, 197, 112, 113, 198, 112, 113, 199,
|
439
|
+
112, 113, 200, 112, 113, 201, 112, 113,
|
440
|
+
202, 112, 113, 203, 112, 113, 204, 112,
|
441
|
+
113, 205, 112, 206, 0, 207, 0, 208,
|
442
|
+
0, 209, 0, 210, 0, 211, 0, 212,
|
443
|
+
0, 214, 213, 216, 215, 217, 216, 218,
|
444
|
+
219, 219, 218, 215, 220, 216, 215, 221,
|
445
|
+
216, 215, 222, 216, 215, 223, 216, 215,
|
446
|
+
224, 216, 215, 225, 216, 215, 226, 216,
|
447
|
+
215, 227, 216, 215, 228, 216, 215, 216,
|
448
|
+
229, 215, 230, 0, 231, 0, 232, 0,
|
449
|
+
233, 0, 234, 0, 24, 0, 235, 0,
|
450
|
+
24, 0, 236, 0, 237, 0, 238, 0,
|
451
|
+
239, 0, 240, 0, 241, 0, 242, 0,
|
452
|
+
243, 0, 244, 0, 246, 245, 248, 247,
|
453
|
+
249, 248, 250, 251, 252, 251, 250, 247,
|
454
|
+
253, 254, 255, 248, 247, 256, 248, 247,
|
455
|
+
257, 258, 248, 247, 259, 248, 247, 260,
|
456
|
+
248, 247, 261, 248, 247, 262, 248, 247,
|
457
|
+
263, 248, 247, 264, 248, 247, 265, 248,
|
458
|
+
247, 266, 248, 247, 267, 248, 247, 268,
|
459
|
+
248, 247, 248, 269, 247, 270, 248, 247,
|
460
|
+
271, 248, 247, 272, 248, 247, 266, 248,
|
461
|
+
247, 273, 248, 247, 274, 248, 247, 275,
|
462
|
+
248, 247, 264, 248, 247, 276, 248, 247,
|
463
|
+
277, 248, 247, 278, 248, 247, 279, 248,
|
464
|
+
247, 280, 248, 247, 281, 248, 247, 282,
|
465
|
+
248, 247, 283, 248, 247, 284, 248, 247,
|
466
|
+
285, 248, 247, 286, 248, 247, 287, 248,
|
467
|
+
247, 248, 288, 269, 247, 289, 248, 247,
|
468
|
+
290, 248, 247, 291, 248, 247, 292, 248,
|
469
|
+
247, 293, 248, 247, 294, 248, 247, 295,
|
470
|
+
248, 247, 268, 248, 247, 248, 296, 247,
|
471
|
+
248, 297, 247, 248, 298, 247, 248, 299,
|
472
|
+
247, 248, 300, 247, 248, 301, 247, 248,
|
473
|
+
302, 247, 248, 303, 247, 248, 304, 247,
|
474
|
+
248, 305, 247, 248, 306, 247, 248, 307,
|
475
|
+
247, 248, 308, 247, 248, 309, 247, 310,
|
476
|
+
0, 311, 0, 312, 0, 313, 0, 314,
|
477
|
+
0, 315, 0, 316, 0, 317, 0, 318,
|
478
|
+
0, 319, 0, 320, 0, 321, 0, 322,
|
479
|
+
323, 0, 324, 0, 325, 0, 326, 0,
|
480
|
+
327, 0, 328, 0, 329, 0, 330, 0,
|
481
|
+
331, 0, 332, 0, 334, 333, 336, 335,
|
482
|
+
337, 338, 336, 339, 340, 341, 342, 340,
|
483
|
+
339, 335, 343, 344, 345, 346, 347, 348,
|
484
|
+
336, 335, 349, 336, 335, 350, 336, 335,
|
485
|
+
351, 336, 335, 352, 336, 335, 353, 336,
|
486
|
+
335, 354, 336, 335, 336, 355, 335, 356,
|
487
|
+
336, 335, 357, 336, 335, 358, 336, 335,
|
488
|
+
359, 336, 335, 360, 336, 335, 354, 336,
|
489
|
+
335, 361, 336, 335, 354, 336, 335, 362,
|
490
|
+
336, 335, 363, 336, 335, 364, 336, 335,
|
491
|
+
365, 336, 335, 366, 336, 335, 367, 336,
|
492
|
+
335, 368, 336, 335, 369, 336, 335, 336,
|
493
|
+
355, 335, 370, 336, 335, 371, 336, 335,
|
494
|
+
372, 336, 335, 373, 336, 335, 374, 336,
|
495
|
+
335, 375, 336, 335, 376, 336, 335, 377,
|
496
|
+
336, 335, 378, 336, 335, 379, 336, 335,
|
497
|
+
380, 336, 335, 369, 336, 335, 381, 336,
|
498
|
+
335, 382, 336, 335, 383, 336, 335, 384,
|
499
|
+
336, 335, 385, 336, 335, 386, 336, 335,
|
500
|
+
387, 336, 335, 354, 336, 335, 388, 389,
|
501
|
+
354, 336, 335, 390, 336, 335, 391, 336,
|
502
|
+
335, 392, 336, 335, 354, 336, 335, 393,
|
503
|
+
336, 335, 394, 336, 335, 395, 336, 335,
|
504
|
+
354, 336, 335, 336, 396, 335, 336, 397,
|
505
|
+
335, 336, 398, 335, 336, 399, 335, 336,
|
506
|
+
400, 335, 336, 401, 335, 336, 402, 335,
|
507
|
+
336, 403, 335, 336, 404, 335, 336, 405,
|
508
|
+
335, 336, 406, 335, 336, 407, 335, 336,
|
509
|
+
408, 335, 336, 409, 335, 411, 410, 413,
|
510
|
+
412, 414, 415, 413, 416, 417, 418, 419,
|
511
|
+
417, 416, 412, 420, 421, 422, 423, 424,
|
512
|
+
425, 413, 412, 426, 427, 413, 412, 428,
|
513
|
+
413, 412, 429, 413, 412, 430, 413, 412,
|
514
|
+
431, 413, 412, 432, 413, 412, 413, 433,
|
515
|
+
412, 434, 413, 412, 435, 413, 412, 436,
|
516
|
+
413, 412, 437, 413, 412, 438, 413, 412,
|
517
|
+
439, 413, 412, 440, 413, 412, 441, 413,
|
518
|
+
412, 442, 413, 412, 443, 413, 412, 444,
|
519
|
+
413, 412, 413, 433, 412, 445, 413, 412,
|
520
|
+
446, 413, 412, 447, 413, 412, 448, 413,
|
521
|
+
412, 449, 413, 412, 432, 413, 412, 450,
|
522
|
+
413, 412, 432, 413, 412, 451, 413, 412,
|
523
|
+
452, 413, 412, 453, 413, 412, 440, 413,
|
524
|
+
412, 454, 413, 412, 455, 413, 412, 456,
|
525
|
+
413, 412, 457, 413, 412, 458, 413, 412,
|
526
|
+
459, 413, 412, 460, 413, 412, 461, 413,
|
527
|
+
412, 462, 413, 412, 463, 413, 412, 464,
|
528
|
+
413, 412, 465, 413, 412, 413, 466, 433,
|
529
|
+
412, 467, 413, 412, 468, 413, 412, 469,
|
530
|
+
413, 412, 470, 413, 412, 471, 413, 412,
|
531
|
+
472, 413, 412, 473, 413, 412, 444, 413,
|
532
|
+
412, 474, 413, 412, 475, 413, 412, 476,
|
533
|
+
413, 412, 477, 413, 412, 478, 413, 412,
|
534
|
+
479, 413, 412, 480, 413, 412, 432, 413,
|
535
|
+
412, 481, 482, 432, 413, 412, 483, 413,
|
536
|
+
412, 484, 413, 412, 485, 413, 412, 432,
|
537
|
+
413, 412, 486, 413, 412, 487, 413, 412,
|
538
|
+
488, 413, 412, 432, 413, 412, 413, 489,
|
539
|
+
412, 413, 490, 412, 413, 491, 412, 413,
|
540
|
+
492, 412, 413, 493, 412, 413, 494, 412,
|
541
|
+
413, 495, 412, 413, 496, 412, 413, 497,
|
542
|
+
412, 413, 498, 412, 413, 499, 412, 413,
|
543
|
+
500, 412, 413, 501, 412, 413, 502, 412,
|
544
|
+
503, 0, 504, 0, 505, 0, 506, 0,
|
545
|
+
507, 0, 508, 0, 509, 0, 24, 0,
|
546
|
+
510, 0, 3, 0, 511, 0
|
547
|
+
];
|
548
|
+
|
549
|
+
const _lexer_trans_targs = [
|
550
|
+
0, 2, 13, 12, 12, 22, 31, 33,
|
551
|
+
9, 47, 50, 434, 3, 169, 175, 177,
|
552
|
+
246, 426, 4, 56, 5, 6, 7, 8,
|
553
|
+
9, 10, 11, 11, 12, 32, 14, 18,
|
554
|
+
15, 16, 17, 19, 20, 21, 23, 24,
|
555
|
+
25, 26, 26, 26, 27, 26, 26, 26,
|
556
|
+
27, 28, 29, 30, 12, 30, 31, 12,
|
557
|
+
32, 34, 35, 36, 37, 38, 39, 40,
|
558
|
+
41, 42, 43, 44, 45, 46, 436, 48,
|
559
|
+
49, 12, 48, 47, 49, 50, 51, 52,
|
560
|
+
54, 55, 53, 51, 52, 53, 51, 54,
|
561
|
+
2, 13, 55, 22, 31, 33, 9, 47,
|
562
|
+
50, 57, 149, 58, 59, 60, 61, 62,
|
563
|
+
63, 64, 65, 66, 67, 68, 69, 70,
|
564
|
+
69, 70, 71, 126, 70, 12, 135, 78,
|
565
|
+
72, 80, 86, 88, 97, 118, 73, 74,
|
566
|
+
75, 76, 77, 78, 79, 2, 13, 12,
|
567
|
+
12, 22, 31, 33, 9, 47, 50, 81,
|
568
|
+
82, 83, 84, 85, 87, 89, 90, 91,
|
569
|
+
92, 93, 94, 95, 96, 98, 99, 100,
|
570
|
+
101, 102, 103, 104, 105, 106, 107, 108,
|
571
|
+
109, 110, 111, 112, 113, 114, 115, 116,
|
572
|
+
117, 119, 120, 121, 122, 123, 124, 125,
|
573
|
+
127, 131, 128, 129, 130, 132, 133, 134,
|
574
|
+
136, 137, 138, 139, 140, 141, 142, 143,
|
575
|
+
144, 145, 146, 147, 148, 12, 150, 151,
|
576
|
+
152, 153, 154, 155, 156, 157, 158, 157,
|
577
|
+
158, 159, 158, 12, 160, 161, 162, 163,
|
578
|
+
164, 165, 166, 167, 168, 79, 170, 171,
|
579
|
+
172, 173, 174, 176, 178, 179, 180, 181,
|
580
|
+
182, 183, 184, 185, 186, 187, 188, 187,
|
581
|
+
188, 189, 188, 12, 232, 190, 207, 211,
|
582
|
+
191, 192, 203, 193, 194, 195, 196, 197,
|
583
|
+
198, 199, 200, 201, 202, 79, 204, 205,
|
584
|
+
206, 208, 209, 210, 212, 213, 214, 215,
|
585
|
+
216, 217, 218, 219, 220, 221, 222, 223,
|
586
|
+
224, 225, 226, 227, 228, 229, 230, 231,
|
587
|
+
233, 234, 235, 236, 237, 238, 239, 240,
|
588
|
+
241, 242, 243, 244, 245, 12, 247, 248,
|
589
|
+
249, 250, 251, 252, 253, 254, 255, 256,
|
590
|
+
257, 258, 259, 339, 260, 261, 262, 263,
|
591
|
+
264, 265, 266, 267, 268, 269, 270, 269,
|
592
|
+
270, 271, 316, 270, 12, 325, 278, 272,
|
593
|
+
279, 285, 287, 296, 308, 273, 274, 275,
|
594
|
+
276, 277, 278, 79, 280, 281, 282, 283,
|
595
|
+
284, 286, 288, 289, 290, 291, 292, 293,
|
596
|
+
294, 295, 297, 298, 299, 300, 301, 302,
|
597
|
+
303, 304, 305, 306, 307, 309, 310, 311,
|
598
|
+
312, 313, 314, 315, 317, 321, 318, 319,
|
599
|
+
320, 322, 323, 324, 326, 327, 328, 329,
|
600
|
+
330, 331, 332, 333, 334, 335, 336, 337,
|
601
|
+
338, 12, 340, 341, 340, 341, 342, 403,
|
602
|
+
341, 12, 412, 349, 343, 362, 368, 370,
|
603
|
+
374, 395, 344, 350, 345, 346, 347, 348,
|
604
|
+
349, 79, 351, 352, 353, 354, 355, 356,
|
605
|
+
357, 358, 359, 360, 361, 363, 364, 365,
|
606
|
+
366, 367, 369, 371, 372, 373, 375, 376,
|
607
|
+
377, 378, 379, 380, 381, 382, 383, 384,
|
608
|
+
385, 386, 387, 388, 389, 390, 391, 392,
|
609
|
+
393, 394, 396, 397, 398, 399, 400, 401,
|
610
|
+
402, 404, 408, 405, 406, 407, 409, 410,
|
611
|
+
411, 413, 414, 415, 416, 417, 418, 419,
|
612
|
+
420, 421, 422, 423, 424, 425, 12, 427,
|
613
|
+
428, 429, 430, 431, 432, 433, 435, 0
|
614
|
+
];
|
615
|
+
|
616
|
+
const _lexer_trans_actions = [
|
617
|
+
39, 25, 25, 0, 47, 3, 1, 0,
|
618
|
+
25, 1, 31, 0, 0, 0, 0, 0,
|
619
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
620
|
+
0, 0, 50, 0, 99, 19, 0, 0,
|
621
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
622
|
+
47, 5, 41, 119, 41, 0, 29, 111,
|
623
|
+
29, 29, 0, 7, 95, 0, 0, 103,
|
624
|
+
21, 0, 0, 0, 0, 0, 0, 0,
|
625
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
626
|
+
23, 107, 23, 44, 0, 0, 0, 33,
|
627
|
+
33, 47, 33, 80, 0, 0, 35, 0,
|
628
|
+
89, 89, 0, 86, 83, 37, 89, 83,
|
629
|
+
92, 0, 0, 0, 0, 0, 0, 0,
|
630
|
+
0, 0, 0, 0, 0, 0, 50, 124,
|
631
|
+
0, 47, 77, 77, 0, 65, 29, 77,
|
632
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
633
|
+
0, 0, 0, 0, 11, 56, 56, 27,
|
634
|
+
115, 53, 50, 27, 56, 50, 59, 0,
|
635
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
636
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
637
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
638
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
639
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
640
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
641
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
642
|
+
0, 0, 0, 0, 0, 11, 0, 0,
|
643
|
+
0, 0, 0, 0, 0, 50, 124, 0,
|
644
|
+
47, 77, 0, 74, 0, 0, 0, 0,
|
645
|
+
0, 0, 0, 0, 0, 17, 0, 0,
|
646
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
647
|
+
0, 0, 0, 0, 0, 50, 124, 0,
|
648
|
+
47, 77, 0, 62, 29, 0, 0, 0,
|
649
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
650
|
+
0, 0, 0, 0, 0, 9, 0, 0,
|
651
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
652
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
653
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
654
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
655
|
+
0, 0, 0, 0, 0, 9, 0, 0,
|
656
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
657
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
658
|
+
0, 0, 0, 0, 0, 50, 124, 0,
|
659
|
+
47, 77, 77, 0, 71, 29, 77, 0,
|
660
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
661
|
+
0, 0, 0, 15, 0, 0, 0, 0,
|
662
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
663
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
664
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
665
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
666
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
667
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
668
|
+
0, 15, 50, 124, 0, 47, 77, 77,
|
669
|
+
0, 68, 29, 77, 0, 0, 0, 0,
|
670
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
671
|
+
0, 13, 0, 0, 0, 0, 0, 0,
|
672
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
673
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
674
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
675
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
676
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
677
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
678
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
679
|
+
0, 0, 0, 0, 0, 0, 13, 0,
|
680
|
+
0, 0, 0, 0, 0, 0, 0, 0
|
681
|
+
];
|
682
|
+
|
683
|
+
const _lexer_eof_actions = [
|
684
|
+
0, 39, 39, 39, 39, 39, 39, 39,
|
685
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
686
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
687
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
688
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
689
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
690
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
691
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
692
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
693
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
694
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
695
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
696
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
697
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
698
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
699
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
700
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
701
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
702
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
703
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
704
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
705
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
706
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
707
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
708
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
709
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
710
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
711
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
712
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
713
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
714
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
715
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
716
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
717
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
718
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
719
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
720
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
721
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
722
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
723
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
724
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
725
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
726
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
727
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
728
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
729
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
730
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
731
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
732
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
733
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
734
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
735
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
736
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
737
|
+
39, 39, 39, 39, 39, 39, 39, 39,
|
738
|
+
39, 39, 39, 39, 39
|
739
|
+
];
|
740
|
+
|
741
|
+
const lexer_start = 1;
|
742
|
+
const lexer_first_final = 436;
|
743
|
+
const lexer_error = 0;
|
744
|
+
|
745
|
+
const lexer_en_main = 1;
|
746
|
+
|
747
|
+
|
748
|
+
/* line 110 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
749
|
+
|
750
|
+
/* line 111 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
751
|
+
|
752
|
+
/* line 112 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
753
|
+
|
754
|
+
var Lexer = function(listeners) {
|
755
|
+
// check that we have an 'on' method (for registering event listeners - Node has that)
|
756
|
+
// If not, make a trivial implementation that can register one listener. -Enough for testing.
|
757
|
+
|
758
|
+
if(!this.on) {
|
759
|
+
this._listeners = {};
|
760
|
+
|
761
|
+
this.on = function(event, cb) {
|
762
|
+
this._listeners[event] = cb;
|
763
|
+
};
|
764
|
+
|
765
|
+
this.emit = function() {
|
766
|
+
var event = arguments[0];
|
767
|
+
var args = [];
|
768
|
+
for(var i = 1; i < arguments.length; i++) {
|
769
|
+
args.push(arguments[i]);
|
770
|
+
}
|
771
|
+
var cb = this._listeners[event];
|
772
|
+
cb.apply(listeners, args);
|
773
|
+
};
|
774
|
+
}
|
775
|
+
|
776
|
+
var events = ['feature', 'background', 'scenario', 'scenario_outline', 'examples', 'step', 'py_string', 'row', 'end'];
|
777
|
+
for(e in events) {
|
778
|
+
var event = events[e];
|
779
|
+
var listener = listeners[event];
|
780
|
+
// if(!listener) {
|
781
|
+
// throw "No listener for " + event;
|
782
|
+
// }
|
783
|
+
this.on(event, listener);
|
784
|
+
}
|
785
|
+
|
786
|
+
|
787
|
+
/* line 788 "js/lib/gherkin/lexer/i18n/ar.js" */
|
788
|
+
{
|
789
|
+
this.cs = lexer_start;
|
790
|
+
} /* JSCodeGen::writeInit */
|
791
|
+
|
792
|
+
/* line 146 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
793
|
+
};
|
794
|
+
|
795
|
+
if(typeof require == 'function') {
|
796
|
+
require('sys').inherits(Lexer, require('events').EventEmitter);
|
797
|
+
}
|
798
|
+
|
799
|
+
Lexer.prototype.scan = function(data) {
|
800
|
+
var p = 0;
|
801
|
+
var pe = data.length;
|
802
|
+
var eof = 0;
|
803
|
+
|
804
|
+
|
805
|
+
/* line 806 "js/lib/gherkin/lexer/i18n/ar.js" */
|
806
|
+
{
|
807
|
+
var _klen, _trans, _keys, _ps, _widec, _acts, _nacts;
|
808
|
+
var _goto_level, _resume, _eof_trans, _again, _test_eof;
|
809
|
+
var _out;
|
810
|
+
_klen = _trans = _keys = _acts = _nacts = null;
|
811
|
+
_goto_level = 0;
|
812
|
+
_resume = 10;
|
813
|
+
_eof_trans = 15;
|
814
|
+
_again = 20;
|
815
|
+
_test_eof = 30;
|
816
|
+
_out = 40;
|
817
|
+
while (true) {
|
818
|
+
_trigger_goto = false;
|
819
|
+
if (_goto_level <= 0) {
|
820
|
+
if (p == pe) {
|
821
|
+
_goto_level = _test_eof;
|
822
|
+
continue;
|
823
|
+
}
|
824
|
+
if ( this.cs == 0) {
|
825
|
+
_goto_level = _out;
|
826
|
+
continue;
|
827
|
+
}
|
828
|
+
}
|
829
|
+
if (_goto_level <= _resume) {
|
830
|
+
_keys = _lexer_key_offsets[ this.cs];
|
831
|
+
_trans = _lexer_index_offsets[ this.cs];
|
832
|
+
_klen = _lexer_single_lengths[ this.cs];
|
833
|
+
_break_match = false;
|
834
|
+
|
835
|
+
do {
|
836
|
+
if (_klen > 0) {
|
837
|
+
_lower = _keys;
|
838
|
+
_upper = _keys + _klen - 1;
|
839
|
+
|
840
|
+
while (true) {
|
841
|
+
if (_upper < _lower) { break; }
|
842
|
+
_mid = _lower + ( (_upper - _lower) >> 1 );
|
843
|
+
|
844
|
+
if ( data[p] < _lexer_trans_keys[_mid]) {
|
845
|
+
_upper = _mid - 1;
|
846
|
+
} else if ( data[p] > _lexer_trans_keys[_mid]) {
|
847
|
+
_lower = _mid + 1;
|
848
|
+
} else {
|
849
|
+
_trans += (_mid - _keys);
|
850
|
+
_break_match = true;
|
851
|
+
break;
|
852
|
+
};
|
853
|
+
} /* while */
|
854
|
+
if (_break_match) { break; }
|
855
|
+
_keys += _klen;
|
856
|
+
_trans += _klen;
|
857
|
+
}
|
858
|
+
_klen = _lexer_range_lengths[ this.cs];
|
859
|
+
if (_klen > 0) {
|
860
|
+
_lower = _keys;
|
861
|
+
_upper = _keys + (_klen << 1) - 2;
|
862
|
+
while (true) {
|
863
|
+
if (_upper < _lower) { break; }
|
864
|
+
_mid = _lower + (((_upper-_lower) >> 1) & ~1);
|
865
|
+
if ( data[p] < _lexer_trans_keys[_mid]) {
|
866
|
+
_upper = _mid - 2;
|
867
|
+
} else if ( data[p] > _lexer_trans_keys[_mid+1]) {
|
868
|
+
_lower = _mid + 2;
|
869
|
+
} else {
|
870
|
+
_trans += ((_mid - _keys) >> 1);
|
871
|
+
_break_match = true;
|
872
|
+
break;
|
873
|
+
}
|
874
|
+
} /* while */
|
875
|
+
if (_break_match) { break; }
|
876
|
+
_trans += _klen
|
877
|
+
}
|
878
|
+
} while (false);
|
879
|
+
_trans = _lexer_indicies[_trans];
|
880
|
+
this.cs = _lexer_trans_targs[_trans];
|
881
|
+
if (_lexer_trans_actions[_trans] != 0) {
|
882
|
+
_acts = _lexer_trans_actions[_trans];
|
883
|
+
_nacts = _lexer_actions[_acts];
|
884
|
+
_acts += 1;
|
885
|
+
while (_nacts > 0) {
|
886
|
+
_nacts -= 1;
|
887
|
+
_acts += 1;
|
888
|
+
switch (_lexer_actions[_acts - 1]) {
|
889
|
+
case 0:
|
890
|
+
/* line 6 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
891
|
+
|
892
|
+
this.content_start = p;
|
893
|
+
this.current_line = this.line_number;
|
894
|
+
this.start_col = p - this.last_newline - (this.keyword+':').length;
|
895
|
+
break;
|
896
|
+
case 1:
|
897
|
+
/* line 12 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
898
|
+
|
899
|
+
this.current_line = this.line_number;
|
900
|
+
this.start_col = p - this.last_newline;
|
901
|
+
break;
|
902
|
+
case 2:
|
903
|
+
/* line 17 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
904
|
+
|
905
|
+
this.content_start = p;
|
906
|
+
break;
|
907
|
+
case 3:
|
908
|
+
/* line 21 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
909
|
+
|
910
|
+
var con = this.unindent(
|
911
|
+
this.start_col,
|
912
|
+
this.bytesToString(data.slice(this.content_start, this.next_keyword_start-1)).replace(/(\r?\n)?([\t ])*\Z/, '') // TODO .replace(/\"\"\"/mg, '"""')
|
913
|
+
);
|
914
|
+
this.emit('py_string', con, this.current_line);
|
915
|
+
break;
|
916
|
+
case 4:
|
917
|
+
/* line 29 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
918
|
+
|
919
|
+
p = this.store_keyword_content('feature', data, p, eof);
|
920
|
+
break;
|
921
|
+
case 5:
|
922
|
+
/* line 33 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
923
|
+
|
924
|
+
p = this.store_keyword_content('background', data, p, eof);
|
925
|
+
break;
|
926
|
+
case 6:
|
927
|
+
/* line 37 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
928
|
+
|
929
|
+
p = this.store_keyword_content('scenario', data, p, eof);
|
930
|
+
break;
|
931
|
+
case 7:
|
932
|
+
/* line 41 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
933
|
+
|
934
|
+
p = this.store_keyword_content('scenario_outline', data, p, eof);
|
935
|
+
break;
|
936
|
+
case 8:
|
937
|
+
/* line 45 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
938
|
+
|
939
|
+
p = this.store_keyword_content('examples', data, p, eof);
|
940
|
+
break;
|
941
|
+
case 9:
|
942
|
+
/* line 49 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
943
|
+
|
944
|
+
var con = this.bytesToString(data.slice(this.content_start, p)).trim();
|
945
|
+
this.emit('step', this.keyword, con, this.current_line);
|
946
|
+
break;
|
947
|
+
case 10:
|
948
|
+
/* line 54 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
949
|
+
|
950
|
+
console.log('TODO: store_comment_content');
|
951
|
+
break;
|
952
|
+
case 11:
|
953
|
+
/* line 58 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
954
|
+
|
955
|
+
console.log('TODO: store_tag_content');
|
956
|
+
break;
|
957
|
+
case 12:
|
958
|
+
/* line 62 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
959
|
+
|
960
|
+
this.line_number++;
|
961
|
+
break;
|
962
|
+
case 13:
|
963
|
+
/* line 66 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
964
|
+
|
965
|
+
this.last_newline = p + 1;
|
966
|
+
break;
|
967
|
+
case 14:
|
968
|
+
/* line 70 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
969
|
+
|
970
|
+
this.keyword_start = this.keyword_start || p;
|
971
|
+
break;
|
972
|
+
case 15:
|
973
|
+
/* line 74 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
974
|
+
|
975
|
+
this.keyword = this.bytesToString(data.slice(this.keyword_start, p)).replace(/:$/, '');
|
976
|
+
this.keyword_start = null;
|
977
|
+
break;
|
978
|
+
case 16:
|
979
|
+
/* line 79 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
980
|
+
|
981
|
+
this.next_keyword_start = p;
|
982
|
+
break;
|
983
|
+
case 17:
|
984
|
+
/* line 83 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
985
|
+
|
986
|
+
p = p - 1;
|
987
|
+
current_row = [];
|
988
|
+
this.current_line = this.line_number;
|
989
|
+
break;
|
990
|
+
case 18:
|
991
|
+
/* line 89 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
992
|
+
|
993
|
+
this.content_start = p;
|
994
|
+
break;
|
995
|
+
case 19:
|
996
|
+
/* line 93 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
997
|
+
|
998
|
+
var con = this.bytesToString(data.slice(this.content_start, p)).trim();
|
999
|
+
current_row.push(con.replace(/\\\|/, "|").replace(/\\n/, "\n").replace(/\\\\/, "\\"));
|
1000
|
+
break;
|
1001
|
+
case 20:
|
1002
|
+
/* line 98 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
1003
|
+
|
1004
|
+
this.emit('row', current_row, this.current_line);
|
1005
|
+
break;
|
1006
|
+
case 21:
|
1007
|
+
/* line 102 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
1008
|
+
|
1009
|
+
console.log('TODO: end_feature');
|
1010
|
+
break;
|
1011
|
+
/* line 1012 "js/lib/gherkin/lexer/i18n/ar.js" */
|
1012
|
+
} /* action switch */
|
1013
|
+
}
|
1014
|
+
}
|
1015
|
+
if (_trigger_goto) {
|
1016
|
+
continue;
|
1017
|
+
}
|
1018
|
+
}
|
1019
|
+
if (_goto_level <= _again) {
|
1020
|
+
if ( this.cs == 0) {
|
1021
|
+
_goto_level = _out;
|
1022
|
+
continue;
|
1023
|
+
}
|
1024
|
+
p += 1;
|
1025
|
+
if (p != pe) {
|
1026
|
+
_goto_level = _resume;
|
1027
|
+
continue;
|
1028
|
+
}
|
1029
|
+
}
|
1030
|
+
if (_goto_level <= _test_eof) {
|
1031
|
+
if (p == eof) {
|
1032
|
+
__acts = _lexer_eof_actions[ this.cs];
|
1033
|
+
__nacts = _lexer_actions[__acts];
|
1034
|
+
__acts += 1;
|
1035
|
+
while (__nacts > 0) {
|
1036
|
+
__nacts -= 1;
|
1037
|
+
__acts += 1;
|
1038
|
+
switch (_lexer_actions[__acts - 1]) {
|
1039
|
+
case 21:
|
1040
|
+
/* line 102 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
1041
|
+
|
1042
|
+
console.log('TODO: end_feature');
|
1043
|
+
break;
|
1044
|
+
/* line 1045 "js/lib/gherkin/lexer/i18n/ar.js" */
|
1045
|
+
} /* eof action switch */
|
1046
|
+
}
|
1047
|
+
if (_trigger_goto) {
|
1048
|
+
continue;
|
1049
|
+
}
|
1050
|
+
}
|
1051
|
+
}
|
1052
|
+
if (_goto_level <= _out) {
|
1053
|
+
break;
|
1054
|
+
}
|
1055
|
+
}
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
/* line 158 "/Users/ahellesoy/scm/gherkin/tasks/../ragel/i18n/ar.js.rl" */
|
1059
|
+
};
|
1060
|
+
|
1061
|
+
Lexer.prototype.bytesToString = function(bytes) {
|
1062
|
+
if(typeof bytes.write == 'function') {
|
1063
|
+
// Node.js
|
1064
|
+
return bytes.toString('utf-8');
|
1065
|
+
} else {
|
1066
|
+
var result = "";
|
1067
|
+
for(var b in bytes) {
|
1068
|
+
result += String.fromCharCode(bytes[b]);
|
1069
|
+
}
|
1070
|
+
return result;
|
1071
|
+
}
|
1072
|
+
}
|
1073
|
+
|
1074
|
+
Lexer.prototype.unindent = function(startcol, text) {
|
1075
|
+
startcol = startcol || 0;
|
1076
|
+
return text.replace(new RegExp('^[\t ]{0,' + startcol + '}', 'gm'), '');
|
1077
|
+
};
|
1078
|
+
|
1079
|
+
Lexer.prototype.store_keyword_content = function(event, data, p, eof) {
|
1080
|
+
var end_point = (!this.next_keyword_start || (p == eof)) ? p : this.next_keyword_start;
|
1081
|
+
var content = this.unindent(this.start_col + 2, this.bytesToString(data.slice(this.content_start, end_point))).trimRight();
|
1082
|
+
var content_lines = content.split("\n")
|
1083
|
+
var name = content_lines.shift() || "";
|
1084
|
+
name = name.trim();
|
1085
|
+
var description = content_lines.join("\n");
|
1086
|
+
this.emit(event, this.keyword, name, description, this.current_line);
|
1087
|
+
var nks = this.next_keyword_start;
|
1088
|
+
this.next_keyword_start = null;
|
1089
|
+
return nks ? nks - 1 : p;
|
1090
|
+
};
|
1091
|
+
|
1092
|
+
exports.Lexer = Lexer;
|
1093
|
+
|
1094
|
+
})();
|