diff --git a/cmd/libasciidoc/cmd_suite_test.go b/cmd/libasciidoc/cmd_suite_test.go index 5273a4fa..646ee28a 100644 --- a/cmd/libasciidoc/cmd_suite_test.go +++ b/cmd/libasciidoc/cmd_suite_test.go @@ -1,8 +1,8 @@ package main_test import ( - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt "testing" diff --git a/cmd/libasciidoc/root_cmd.go b/cmd/libasciidoc/root_cmd.go index f3eb5cd6..95c4d4d6 100644 --- a/cmd/libasciidoc/root_cmd.go +++ b/cmd/libasciidoc/root_cmd.go @@ -52,7 +52,7 @@ func NewRootCmd() *cobra.Command { for _, sourcePath := range args { out, close := getOut(cmd, sourcePath, outputName) if out != nil { - defer close() //nolint errcheck + defer close() // nolint errcheck // log.Debugf("Starting to process file %v", path) config := configuration.NewConfiguration( configuration.WithFilename(sourcePath), diff --git a/cmd/libasciidoc/root_cmd_test.go b/cmd/libasciidoc/root_cmd_test.go index 6b39509f..e1c279ed 100644 --- a/cmd/libasciidoc/root_cmd_test.go +++ b/cmd/libasciidoc/root_cmd_test.go @@ -6,8 +6,8 @@ import ( main "github.com/bytesparadise/libasciidoc/cmd/libasciidoc" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("root cmd", func() { diff --git a/cmd/libasciidoc/version_cmd_test.go b/cmd/libasciidoc/version_cmd_test.go index dd8c2dcc..ddce655c 100644 --- a/cmd/libasciidoc/version_cmd_test.go +++ b/cmd/libasciidoc/version_cmd_test.go @@ -5,8 +5,8 @@ import ( main "github.com/bytesparadise/libasciidoc/cmd/libasciidoc" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("version cmd", func() { diff --git a/libasciidoc_suite_test.go b/libasciidoc_suite_test.go index 763b8937..9c62de10 100644 --- a/libasciidoc_suite_test.go +++ b/libasciidoc_suite_test.go @@ -3,8 +3,8 @@ package libasciidoc_test import ( "testing" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) func TestLibasciidoc(t *testing.T) { diff --git a/libasciidoc_test.go b/libasciidoc_test.go index 1cbc4b82..7a44d5b5 100644 --- a/libasciidoc_test.go +++ b/libasciidoc_test.go @@ -10,8 +10,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt log "github.com/sirupsen/logrus" ) diff --git a/pkg/parser/attribute_substitution_test.go b/pkg/parser/attribute_substitution_test.go index 019ed00b..a180bd2b 100644 --- a/pkg/parser/attribute_substitution_test.go +++ b/pkg/parser/attribute_substitution_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("attribute substitutions", func() { diff --git a/pkg/parser/attributes_test.go b/pkg/parser/attributes_test.go index c6081d34..9d01856f 100644 --- a/pkg/parser/attributes_test.go +++ b/pkg/parser/attributes_test.go @@ -8,9 +8,9 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" log "github.com/sirupsen/logrus" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/ginkgo/extensions/table" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/ginkgo/extensions/table" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("attributes", func() { diff --git a/pkg/parser/bench_test.go b/pkg/parser/bench_test.go index fb0241fe..a5baf4f5 100644 --- a/pkg/parser/bench_test.go +++ b/pkg/parser/bench_test.go @@ -10,9 +10,9 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/parser" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/ginkgo/extensions/table" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/ginkgo/extensions/table" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) const ( diff --git a/pkg/parser/blank_line_test.go b/pkg/parser/blank_line_test.go index 03a3944e..7f50f9ee 100644 --- a/pkg/parser/blank_line_test.go +++ b/pkg/parser/blank_line_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("blank lines", func() { diff --git a/pkg/parser/check_list_test.go b/pkg/parser/check_list_test.go index bb5e777b..2260826f 100644 --- a/pkg/parser/check_list_test.go +++ b/pkg/parser/check_list_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("checked lists", func() { diff --git a/pkg/parser/comment_test.go b/pkg/parser/comment_test.go index dd05ef6d..955c72d4 100644 --- a/pkg/parser/comment_test.go +++ b/pkg/parser/comment_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("comments", func() { diff --git a/pkg/parser/cross_reference_test.go b/pkg/parser/cross_reference_test.go index 19c85971..5e55effe 100644 --- a/pkg/parser/cross_reference_test.go +++ b/pkg/parser/cross_reference_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("cross references", func() { diff --git a/pkg/parser/delimited_block_admonition_test.go b/pkg/parser/delimited_block_admonition_test.go index aa42d25e..77b7f15e 100644 --- a/pkg/parser/delimited_block_admonition_test.go +++ b/pkg/parser/delimited_block_admonition_test.go @@ -3,8 +3,8 @@ package parser_test import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("admonition blocks", func() { diff --git a/pkg/parser/delimited_block_example_test.go b/pkg/parser/delimited_block_example_test.go index d3fae5aa..c4d7e1c6 100644 --- a/pkg/parser/delimited_block_example_test.go +++ b/pkg/parser/delimited_block_example_test.go @@ -7,8 +7,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" log "github.com/sirupsen/logrus" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("example blocks", func() { diff --git a/pkg/parser/delimited_block_fenced_test.go b/pkg/parser/delimited_block_fenced_test.go index a5035a8d..67fae76c 100644 --- a/pkg/parser/delimited_block_fenced_test.go +++ b/pkg/parser/delimited_block_fenced_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("fenced blocks", func() { diff --git a/pkg/parser/delimited_block_listing_test.go b/pkg/parser/delimited_block_listing_test.go index b41f3407..fd94195a 100644 --- a/pkg/parser/delimited_block_listing_test.go +++ b/pkg/parser/delimited_block_listing_test.go @@ -7,8 +7,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" log "github.com/sirupsen/logrus" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("listing blocks", func() { diff --git a/pkg/parser/delimited_block_literal_test.go b/pkg/parser/delimited_block_literal_test.go index cb6163a2..84f1b4c5 100644 --- a/pkg/parser/delimited_block_literal_test.go +++ b/pkg/parser/delimited_block_literal_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("literal blocks", func() { diff --git a/pkg/parser/delimited_block_markdown_quote_test.go b/pkg/parser/delimited_block_markdown_quote_test.go index 821fe8c7..b2973610 100644 --- a/pkg/parser/delimited_block_markdown_quote_test.go +++ b/pkg/parser/delimited_block_markdown_quote_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("markdown-style quote blocks", func() { diff --git a/pkg/parser/delimited_block_passthrough_test.go b/pkg/parser/delimited_block_passthrough_test.go index b7ab477e..518e2b38 100644 --- a/pkg/parser/delimited_block_passthrough_test.go +++ b/pkg/parser/delimited_block_passthrough_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("passthrough blocks", func() { diff --git a/pkg/parser/delimited_block_quote_test.go b/pkg/parser/delimited_block_quote_test.go index f7e32895..f6d627c9 100644 --- a/pkg/parser/delimited_block_quote_test.go +++ b/pkg/parser/delimited_block_quote_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" log "github.com/sirupsen/logrus" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("quote blocks", func() { diff --git a/pkg/parser/delimited_block_sidebar_test.go b/pkg/parser/delimited_block_sidebar_test.go index 3d5ee874..198a4d18 100644 --- a/pkg/parser/delimited_block_sidebar_test.go +++ b/pkg/parser/delimited_block_sidebar_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" log "github.com/sirupsen/logrus" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("sidebar blocks", func() { diff --git a/pkg/parser/delimited_block_source_test.go b/pkg/parser/delimited_block_source_test.go index 18302046..990fb556 100644 --- a/pkg/parser/delimited_block_source_test.go +++ b/pkg/parser/delimited_block_source_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("source blocks", func() { diff --git a/pkg/parser/delimited_block_verse_test.go b/pkg/parser/delimited_block_verse_test.go index 7b0e2b07..dc2213c0 100644 --- a/pkg/parser/delimited_block_verse_test.go +++ b/pkg/parser/delimited_block_verse_test.go @@ -6,8 +6,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("verse blocks", func() { diff --git a/pkg/parser/document_fragment_processing_test.go b/pkg/parser/document_fragment_processing_test.go index f4468b0e..5f1f7010 100644 --- a/pkg/parser/document_fragment_processing_test.go +++ b/pkg/parser/document_fragment_processing_test.go @@ -5,8 +5,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("document processing", func() { diff --git a/pkg/parser/document_header_test.go b/pkg/parser/document_header_test.go index 7ed9daab..3c2bd952 100644 --- a/pkg/parser/document_header_test.go +++ b/pkg/parser/document_header_test.go @@ -5,8 +5,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("headers", func() { diff --git a/pkg/parser/document_preprocessing_builder_test.go b/pkg/parser/document_preprocessing_builder_test.go index d52a6154..6ba309ec 100644 --- a/pkg/parser/document_preprocessing_builder_test.go +++ b/pkg/parser/document_preprocessing_builder_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/configuration" "github.com/bytesparadise/libasciidoc/pkg/types" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("preprocessing condition stack", func() { diff --git a/pkg/parser/document_preprocessing_conditionals_test.go b/pkg/parser/document_preprocessing_conditionals_test.go index 88276cbd..108264a7 100644 --- a/pkg/parser/document_preprocessing_conditionals_test.go +++ b/pkg/parser/document_preprocessing_conditionals_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/configuration" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("conditional inclusions", func() { diff --git a/pkg/parser/document_preprocessing_include_files_test.go b/pkg/parser/document_preprocessing_include_files_test.go index 743e6210..7ae05fb3 100644 --- a/pkg/parser/document_preprocessing_include_files_test.go +++ b/pkg/parser/document_preprocessing_include_files_test.go @@ -8,8 +8,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt log "github.com/sirupsen/logrus" ) diff --git a/pkg/parser/document_processing_aggregate_test.go b/pkg/parser/document_processing_aggregate_test.go index b8c1d67d..5ee6d8a3 100644 --- a/pkg/parser/document_processing_aggregate_test.go +++ b/pkg/parser/document_processing_aggregate_test.go @@ -6,8 +6,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("include preamble and table of contents when aggregating fragments", func() { diff --git a/pkg/parser/document_processing_apply_substitutions.go b/pkg/parser/document_processing_apply_substitutions.go index 6baad2ee..a2aeed35 100644 --- a/pkg/parser/document_processing_apply_substitutions.go +++ b/pkg/parser/document_processing_apply_substitutions.go @@ -590,7 +590,7 @@ const ( // Callouts the "callouts" substitution Callouts string = "callouts" // InlinePassthroughs the "inline_passthrough" substitution - InlinePassthroughs string = "inline_passthrough" // nolint: gosec + InlinePassthroughs string = "inline_passthrough" // nolint:gosec // Macros the "macros" substitution Macros string = "macros" // None the "none" substitution diff --git a/pkg/parser/document_processing_apply_substitutions_test.go b/pkg/parser/document_processing_apply_substitutions_test.go index 843876fb..5ae74d20 100644 --- a/pkg/parser/document_processing_apply_substitutions_test.go +++ b/pkg/parser/document_processing_apply_substitutions_test.go @@ -6,8 +6,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("apply substitutions", func() { diff --git a/pkg/parser/document_processing_collect_footnotes_test.go b/pkg/parser/document_processing_collect_footnotes_test.go index 5ad81311..fdfa0d91 100644 --- a/pkg/parser/document_processing_collect_footnotes_test.go +++ b/pkg/parser/document_processing_collect_footnotes_test.go @@ -5,8 +5,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("collect footnotes", func() { diff --git a/pkg/parser/document_processing_filter_elements_test.go b/pkg/parser/document_processing_filter_elements_test.go index e0f56691..019ce2fe 100644 --- a/pkg/parser/document_processing_filter_elements_test.go +++ b/pkg/parser/document_processing_filter_elements_test.go @@ -3,8 +3,8 @@ package parser import ( "github.com/bytesparadise/libasciidoc/pkg/types" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("element filters", func() { diff --git a/pkg/parser/document_processing_insert_preamble_test.go b/pkg/parser/document_processing_insert_preamble_test.go index 4080e270..d79ca007 100644 --- a/pkg/parser/document_processing_insert_preamble_test.go +++ b/pkg/parser/document_processing_insert_preamble_test.go @@ -3,8 +3,8 @@ package parser import ( "github.com/bytesparadise/libasciidoc/pkg/types" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("insert preambles", func() { diff --git a/pkg/parser/document_processing_parse_fragments_test.go b/pkg/parser/document_processing_parse_fragments_test.go index 1f52dd43..e5109a48 100644 --- a/pkg/parser/document_processing_parse_fragments_test.go +++ b/pkg/parser/document_processing_parse_fragments_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("document fragment parsing", func() { diff --git a/pkg/parser/document_processing_raw_source_test.go b/pkg/parser/document_processing_raw_source_test.go index 1306e6e1..37bc960e 100644 --- a/pkg/parser/document_processing_raw_source_test.go +++ b/pkg/parser/document_processing_raw_source_test.go @@ -7,7 +7,7 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/onsi/ginkgo/extensions/table" - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = DescribeTable("'FileLocation' pattern", diff --git a/pkg/parser/document_test.go b/pkg/parser/document_test.go index c40f7a1c..a84d6727 100644 --- a/pkg/parser/document_test.go +++ b/pkg/parser/document_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("documents", func() { diff --git a/pkg/parser/element_attributes_test.go b/pkg/parser/element_attributes_test.go index b7a6fb07..42d52407 100644 --- a/pkg/parser/element_attributes_test.go +++ b/pkg/parser/element_attributes_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" "github.com/sirupsen/logrus" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("element attributes", func() { diff --git a/pkg/parser/footnote_test.go b/pkg/parser/footnote_test.go index 8b82a476..b828fce8 100644 --- a/pkg/parser/footnote_test.go +++ b/pkg/parser/footnote_test.go @@ -6,8 +6,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("footnotes", func() { diff --git a/pkg/parser/frontmatter_test.go b/pkg/parser/frontmatter_test.go index cc7d189c..412ed999 100644 --- a/pkg/parser/frontmatter_test.go +++ b/pkg/parser/frontmatter_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("front-matters", func() { diff --git a/pkg/parser/icon_test.go b/pkg/parser/icon_test.go index 1dc46457..13b28e62 100644 --- a/pkg/parser/icon_test.go +++ b/pkg/parser/icon_test.go @@ -3,8 +3,8 @@ package parser_test import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("icons", func() { diff --git a/pkg/parser/image_test.go b/pkg/parser/image_test.go index f94333e7..83b5de8c 100644 --- a/pkg/parser/image_test.go +++ b/pkg/parser/image_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("block images", func() { diff --git a/pkg/parser/index_terms_test.go b/pkg/parser/index_terms_test.go index 6e4c0167..2f2ece8c 100644 --- a/pkg/parser/index_terms_test.go +++ b/pkg/parser/index_terms_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("index terms", func() { diff --git a/pkg/parser/inline_elements_test.go b/pkg/parser/inline_elements_test.go index d26e892a..f4d7f561 100644 --- a/pkg/parser/inline_elements_test.go +++ b/pkg/parser/inline_elements_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("inline elements", func() { diff --git a/pkg/parser/labeled_list_test.go b/pkg/parser/labeled_list_test.go index cb23f78e..50ac90d5 100644 --- a/pkg/parser/labeled_list_test.go +++ b/pkg/parser/labeled_list_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("labeled lists", func() { diff --git a/pkg/parser/line_break_test.go b/pkg/parser/line_break_test.go index ced739be..23695903 100644 --- a/pkg/parser/line_break_test.go +++ b/pkg/parser/line_break_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("line breaks", func() { diff --git a/pkg/parser/link_test.go b/pkg/parser/link_test.go index a04781b2..a7141b3a 100644 --- a/pkg/parser/link_test.go +++ b/pkg/parser/link_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("links", func() { diff --git a/pkg/parser/mixed_lists_test.go b/pkg/parser/mixed_lists_test.go index 0ca1258a..99f76e6d 100644 --- a/pkg/parser/mixed_lists_test.go +++ b/pkg/parser/mixed_lists_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("mixed lists", func() { diff --git a/pkg/parser/ordered_list_test.go b/pkg/parser/ordered_list_test.go index 13aedf47..499d1ff6 100644 --- a/pkg/parser/ordered_list_test.go +++ b/pkg/parser/ordered_list_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("ordered lists", func() { diff --git a/pkg/parser/paragragh_debug_test.go b/pkg/parser/paragragh_debug_test.go index 83aa1a5b..d4b63e0c 100644 --- a/pkg/parser/paragragh_debug_test.go +++ b/pkg/parser/paragragh_debug_test.go @@ -10,8 +10,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("paragraphs", func() { diff --git a/pkg/parser/paragragh_stats_test.go b/pkg/parser/paragragh_stats_test.go index f2edc073..861869a7 100644 --- a/pkg/parser/paragragh_stats_test.go +++ b/pkg/parser/paragragh_stats_test.go @@ -10,8 +10,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("paragraphs", func() { @@ -42,7 +42,7 @@ The results of these simulations are used to ensure the safety of buildings befo }, Location: &types.Location{ Scheme: "https://", - Path: "github.com/firemodels/fds/releases/tag/FDS6.7.4/", + Path: "github.com/firemodels/fds/releases/tag/FDS6.7.4/", }, }, &types.StringElement{ diff --git a/pkg/parser/paragraph_test.go b/pkg/parser/paragraph_test.go index 06f94529..ef847e9e 100644 --- a/pkg/parser/paragraph_test.go +++ b/pkg/parser/paragraph_test.go @@ -6,8 +6,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("paragraphs", func() { diff --git a/pkg/parser/parse_attribute_value.go b/pkg/parser/parse_attribute_value.go new file mode 100644 index 00000000..91e90354 --- /dev/null +++ b/pkg/parser/parse_attribute_value.go @@ -0,0 +1,13 @@ +package parser + +import ( + "github.com/bytesparadise/libasciidoc/pkg/configuration" + "github.com/bytesparadise/libasciidoc/pkg/types" +) + +func ParseAttributeValue(value string) ([]interface{}, error) { + ctx := NewParseContext(configuration.NewConfiguration()) + return processSubstitutions(ctx, []interface{}{ + types.RawLine(value), + }, headerSubstitutions(), Entrypoint("HeaderGroup")) +} diff --git a/pkg/parser/parse_attribute_value_test.go b/pkg/parser/parse_attribute_value_test.go new file mode 100644 index 00000000..7468e189 --- /dev/null +++ b/pkg/parser/parse_attribute_value_test.go @@ -0,0 +1,55 @@ +package parser_test + +import ( + "github.com/bytesparadise/libasciidoc/pkg/parser" + "github.com/bytesparadise/libasciidoc/pkg/types" + + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint +) + +var _ = Describe("parse attribute value", func() { + + It("should parse content with special characters", func() { + source := "

Table of Contents

" + expected := []interface{}{ + &types.SpecialCharacter{ + Name: "<", + }, + &types.StringElement{ + Content: "h3", + }, + &types.SpecialCharacter{ + Name: ">", + }, + &types.StringElement{ + Content: "Table of Contents", + }, + &types.SpecialCharacter{ + Name: "<", + }, + &types.StringElement{ + Content: "/h3", + }, + &types.SpecialCharacter{ + Name: ">", + }, + } + Expect(parser.ParseAttributeValue(source)).To(Equal(expected)) + }) + + It("should parse content within inline passthrough", func() { + source := "pass:[

Table of Contents

]" + expected := []interface{}{ + &types.InlinePassthrough{ + Kind: types.PassthroughMacro, + Elements: []interface{}{ + &types.StringElement{ + Content: "

Table of Contents

", + }, + }, + }, + } + Expect(parser.ParseAttributeValue(source)).To(Equal(expected)) + }) +}) diff --git a/pkg/parser/parser.go b/pkg/parser/parser.go index b121d642..082e7f44 100644 --- a/pkg/parser/parser.go +++ b/pkg/parser/parser.go @@ -95,10 +95,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 376, col: 49, offset: 11454}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine17, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -107,28 +107,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine20, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -137,9 +137,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -202,10 +202,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 378, col: 35, offset: 11567}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine38, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -214,28 +214,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine41, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -244,9 +244,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -324,10 +324,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 71, col: 97, offset: 1860}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine64, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -336,9 +336,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -410,10 +410,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 75, col: 99, offset: 2038}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine83, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -422,9 +422,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -754,24 +754,24 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonDocumentRawLine150, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -787,10 +787,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 85, col: 35, offset: 2272}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine157, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -870,10 +870,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 86, col: 39, offset: 2318}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine174, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1193,24 +1193,24 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonDocumentRawLine236, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -1232,10 +1232,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 88, col: 5, offset: 2370}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine244, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1244,9 +1244,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1321,10 +1321,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 129, col: 98, offset: 3436}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine264, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1333,9 +1333,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1350,7 +1350,7 @@ var g = &grammar{ ¬Expr{ pos: position{line: 734, col: 5, offset: 23557}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -1379,10 +1379,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine278, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1391,28 +1391,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine281, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -1421,9 +1421,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1446,10 +1446,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine292, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1458,28 +1458,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine295, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -1488,9 +1488,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1513,10 +1513,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine306, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1525,28 +1525,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine309, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -1555,9 +1555,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1580,10 +1580,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine320, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1592,28 +1592,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine323, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -1622,9 +1622,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1647,10 +1647,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine334, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1659,28 +1659,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine337, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -1689,9 +1689,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1714,10 +1714,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine348, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1726,28 +1726,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine351, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -1756,9 +1756,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1781,10 +1781,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine362, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1793,28 +1793,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine365, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -1823,9 +1823,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1848,10 +1848,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentRawLine376, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1860,28 +1860,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentRawLine379, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -1890,9 +1890,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1942,12 +1942,12 @@ var g = &grammar{ run: (*parser).callonDocumentRawLine394, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonDocumentRawLine395, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -1966,9 +1966,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -1978,9 +1978,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -2015,46 +2015,46 @@ var g = &grammar{ pos: position{line: 143, col: 9, offset: 3829}, label: "path", expr: &actionExpr{ - pos: position{line: 2806, col: 17, offset: 92713}, + pos: position{line: 2806, col: 17, offset: 92729}, run: (*parser).callonFileInclusion8, expr: &labeledExpr{ - pos: position{line: 2806, col: 17, offset: 92713}, + pos: position{line: 2806, col: 17, offset: 92729}, label: "path", expr: &oneOrMoreExpr{ - pos: position{line: 2806, col: 22, offset: 92718}, + pos: position{line: 2806, col: 22, offset: 92734}, expr: &choiceExpr{ - pos: position{line: 2806, col: 23, offset: 92719}, + pos: position{line: 2806, col: 23, offset: 92735}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, run: (*parser).callonFileInclusion12, expr: &seqExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, expr: &litMatcher{ - pos: position{line: 2821, col: 6, offset: 93176}, + pos: position{line: 2821, col: 6, offset: 93192}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2822, col: 5, offset: 93200}, + pos: position{line: 2822, col: 5, offset: 93216}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2822, col: 14, offset: 93209}, + pos: position{line: 2822, col: 14, offset: 93225}, expr: &choiceExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, run: (*parser).callonFileInclusion19, expr: &oneOrMoreExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, expr: &charClassMatcher{ - pos: position{line: 2823, col: 10, offset: 93220}, + pos: position{line: 2823, col: 10, offset: 93236}, val: "[^\\r\\n[]�{.,;?!<> ]", chars: []rune{'\r', '\n', '[', ']', '�', '{', '.', ',', ';', '?', '!', '<', '>', ' '}, ignoreCase: false, @@ -2063,13 +2063,13 @@ var g = &grammar{ }, }, &seqExpr{ - pos: position{line: 2826, col: 11, offset: 93485}, + pos: position{line: 2826, col: 11, offset: 93501}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonFileInclusion23, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -2077,23 +2077,23 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2826, col: 32, offset: 93506}, + pos: position{line: 2826, col: 32, offset: 93522}, expr: ¬Expr{ - pos: position{line: 2826, col: 34, offset: 93508}, + pos: position{line: 2826, col: 34, offset: 93524}, expr: &choiceExpr{ - pos: position{line: 2826, col: 36, offset: 93510}, + pos: position{line: 2826, col: 36, offset: 93526}, alternatives: []interface{}{ ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonFileInclusion30, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -2406,23 +2406,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonFileInclusion91, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonFileInclusion93, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonFileInclusion96, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -2443,12 +2443,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonFileInclusion102, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -2460,10 +2460,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonFileInclusion106, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -2606,12 +2606,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonFileInclusion134, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -2633,10 +2633,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonFileInclusion138, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -2650,10 +2650,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, run: (*parser).callonFileInclusion140, expr: &litMatcher{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, val: "{", ignoreCase: false, want: "\"{\"", @@ -2726,10 +2726,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 148, col: 5, offset: 4025}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonFileInclusion153, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -2738,28 +2738,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonFileInclusion156, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -2768,9 +2768,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -2816,24 +2816,24 @@ var g = &grammar{ pos: position{line: 171, col: 19, offset: 4727}, label: "start", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges12, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -2854,24 +2854,24 @@ var g = &grammar{ pos: position{line: 171, col: 40, offset: 4748}, label: "end", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges20, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -2892,24 +2892,24 @@ var g = &grammar{ pos: position{line: 175, col: 20, offset: 4869}, label: "singleline", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges28, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -2958,24 +2958,24 @@ var g = &grammar{ pos: position{line: 171, col: 19, offset: 4727}, label: "start", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges44, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -2996,24 +2996,24 @@ var g = &grammar{ pos: position{line: 171, col: 40, offset: 4748}, label: "end", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges52, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -3034,24 +3034,24 @@ var g = &grammar{ pos: position{line: 175, col: 20, offset: 4869}, label: "singleline", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges60, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -3084,24 +3084,24 @@ var g = &grammar{ pos: position{line: 171, col: 19, offset: 4727}, label: "start", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges69, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -3122,24 +3122,24 @@ var g = &grammar{ pos: position{line: 171, col: 40, offset: 4748}, label: "end", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges77, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -3160,24 +3160,24 @@ var g = &grammar{ pos: position{line: 175, col: 20, offset: 4869}, label: "singleline", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonLineRanges85, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -3193,9 +3193,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -3236,12 +3236,12 @@ var g = &grammar{ pos: position{line: 193, col: 18, offset: 5470}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonTagRanges11, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -3303,12 +3303,12 @@ var g = &grammar{ pos: position{line: 195, col: 18, offset: 5567}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonTagRanges26, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -3390,12 +3390,12 @@ var g = &grammar{ pos: position{line: 193, col: 18, offset: 5470}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonTagRanges46, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -3457,12 +3457,12 @@ var g = &grammar{ pos: position{line: 195, col: 18, offset: 5567}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonTagRanges61, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -3520,9 +3520,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -3565,12 +3565,12 @@ var g = &grammar{ pos: position{line: 213, col: 38, offset: 6121}, run: (*parser).callonIncludedFileLine10, expr: &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonIncludedFileLine11, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -3609,12 +3609,12 @@ var g = &grammar{ pos: position{line: 217, col: 36, offset: 6269}, run: (*parser).callonIncludedFileLine19, expr: &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonIncludedFileLine20, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -3646,28 +3646,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonIncludedFileLine27, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -3676,9 +3676,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -3699,9 +3699,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 234, col: 5, offset: 6819}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -3795,10 +3795,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 376, col: 49, offset: 11454}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment27, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -3807,28 +3807,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment30, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -3837,9 +3837,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -3902,10 +3902,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 378, col: 35, offset: 11567}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment48, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -3914,28 +3914,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment51, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -3944,9 +3944,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -3967,19 +3967,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment65, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -3988,28 +3988,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment68, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4018,9 +4018,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4060,12 +4060,12 @@ var g = &grammar{ run: (*parser).callonDocumentFragment82, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonDocumentFragment83, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4092,28 +4092,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment91, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4122,9 +4122,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4153,10 +4153,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment104, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4165,28 +4165,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment107, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4195,9 +4195,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4236,10 +4236,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment124, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4248,28 +4248,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment127, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4278,9 +4278,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4289,9 +4289,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4309,9 +4309,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4334,28 +4334,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment147, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4364,9 +4364,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4400,10 +4400,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment160, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4412,28 +4412,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment163, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4442,9 +4442,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4453,9 +4453,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4485,10 +4485,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment178, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4497,28 +4497,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment181, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4527,9 +4527,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4568,10 +4568,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment198, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4580,28 +4580,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment201, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4610,9 +4610,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4621,9 +4621,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4641,9 +4641,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4666,28 +4666,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment221, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4696,9 +4696,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4732,10 +4732,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment234, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4744,28 +4744,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment237, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4774,9 +4774,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4785,9 +4785,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4817,10 +4817,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment252, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4829,28 +4829,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment255, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4859,9 +4859,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4900,10 +4900,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment272, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -4912,28 +4912,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment275, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -4942,9 +4942,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4953,9 +4953,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4973,9 +4973,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -4998,28 +4998,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment295, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5028,9 +5028,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5064,10 +5064,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment308, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5076,28 +5076,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment311, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5106,9 +5106,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5117,9 +5117,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5149,10 +5149,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment326, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5161,28 +5161,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment329, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5191,9 +5191,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5232,10 +5232,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment346, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5244,28 +5244,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment349, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5274,9 +5274,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5285,9 +5285,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5305,9 +5305,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5330,28 +5330,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment369, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5360,9 +5360,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5396,10 +5396,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment382, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5408,28 +5408,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment385, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5438,9 +5438,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5449,9 +5449,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5481,10 +5481,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment400, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5493,28 +5493,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment403, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5523,9 +5523,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5564,10 +5564,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment420, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5576,28 +5576,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment423, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5606,9 +5606,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5617,9 +5617,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5637,9 +5637,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5662,28 +5662,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment443, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5692,9 +5692,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5728,10 +5728,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment456, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5740,28 +5740,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment459, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5770,9 +5770,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5781,9 +5781,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5818,19 +5818,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment480, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5839,28 +5839,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment483, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5869,9 +5869,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5905,28 +5905,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment496, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -5935,9 +5935,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -5971,19 +5971,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment515, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -5992,28 +5992,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment518, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6022,9 +6022,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6058,28 +6058,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment531, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6088,9 +6088,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6127,28 +6127,28 @@ var g = &grammar{ run: (*parser).callonDocumentFragment544, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment546, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6157,9 +6157,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6195,10 +6195,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment559, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -6207,28 +6207,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment562, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6237,9 +6237,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6278,10 +6278,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment579, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -6290,28 +6290,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment582, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6320,9 +6320,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6331,9 +6331,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6351,9 +6351,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6376,28 +6376,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment602, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6406,9 +6406,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6442,10 +6442,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment615, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -6454,28 +6454,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment618, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6484,9 +6484,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6495,9 +6495,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6527,10 +6527,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment633, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -6539,28 +6539,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment636, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6569,9 +6569,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6610,10 +6610,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment653, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -6622,28 +6622,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment656, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6652,9 +6652,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6663,9 +6663,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6683,9 +6683,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6708,28 +6708,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment676, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6738,9 +6738,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6774,10 +6774,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment689, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -6786,28 +6786,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment692, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6816,9 +6816,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6827,9 +6827,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6859,10 +6859,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment707, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -6871,28 +6871,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment710, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6901,9 +6901,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6942,10 +6942,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment727, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -6954,28 +6954,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment730, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -6984,9 +6984,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -6995,9 +6995,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7015,9 +7015,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7040,28 +7040,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment750, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7070,9 +7070,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7106,10 +7106,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment763, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7118,28 +7118,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment766, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7148,9 +7148,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7159,9 +7159,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7171,52 +7171,52 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2719, col: 18, offset: 89882}, + pos: position{line: 2719, col: 18, offset: 89898}, run: (*parser).callonDocumentFragment775, expr: &seqExpr{ - pos: position{line: 2719, col: 18, offset: 89882}, + pos: position{line: 2719, col: 18, offset: 89898}, exprs: []interface{}{ &choiceExpr{ - pos: position{line: 2720, col: 9, offset: 89892}, + pos: position{line: 2720, col: 9, offset: 89908}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2720, col: 9, offset: 89892}, + pos: position{line: 2720, col: 9, offset: 89908}, val: "'''", ignoreCase: false, want: "\"'''\"", }, &litMatcher{ - pos: position{line: 2721, col: 11, offset: 89928}, + pos: position{line: 2721, col: 11, offset: 89944}, val: "***", ignoreCase: false, want: "\"***\"", }, &litMatcher{ - pos: position{line: 2721, col: 19, offset: 89936}, + pos: position{line: 2721, col: 19, offset: 89952}, val: "* * *", ignoreCase: false, want: "\"* * *\"", }, &litMatcher{ - pos: position{line: 2721, col: 29, offset: 89946}, + pos: position{line: 2721, col: 29, offset: 89962}, val: "---", ignoreCase: false, want: "\"---\"", }, &litMatcher{ - pos: position{line: 2721, col: 37, offset: 89954}, + pos: position{line: 2721, col: 37, offset: 89970}, val: "- - -", ignoreCase: false, want: "\"- - -\"", }, &litMatcher{ - pos: position{line: 2721, col: 47, offset: 89964}, + pos: position{line: 2721, col: 47, offset: 89980}, val: "___", ignoreCase: false, want: "\"___\"", }, &litMatcher{ - pos: position{line: 2721, col: 55, offset: 89972}, + pos: position{line: 2721, col: 55, offset: 89988}, val: "_ _ _", ignoreCase: false, want: "\"_ _ _\"", @@ -7224,12 +7224,12 @@ var g = &grammar{ }, }, &zeroOrMoreExpr{ - pos: position{line: 2722, col: 11, offset: 90030}, + pos: position{line: 2722, col: 11, offset: 90046}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment786, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7238,28 +7238,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment789, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7268,36 +7268,36 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment797, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7306,9 +7306,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7321,24 +7321,24 @@ var g = &grammar{ name: "ListElements", }, &actionExpr{ - pos: position{line: 2617, col: 5, offset: 87011}, + pos: position{line: 2617, col: 5, offset: 87027}, run: (*parser).callonDocumentFragment805, expr: &seqExpr{ - pos: position{line: 2617, col: 5, offset: 87011}, + pos: position{line: 2617, col: 5, offset: 87027}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment809, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7347,28 +7347,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment812, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7377,48 +7377,48 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, &labeledExpr{ - pos: position{line: 2618, col: 5, offset: 87035}, + pos: position{line: 2618, col: 5, offset: 87051}, label: "header", expr: &zeroOrOneExpr{ - pos: position{line: 2618, col: 12, offset: 87042}, + pos: position{line: 2618, col: 12, offset: 87058}, expr: &actionExpr{ - pos: position{line: 2633, col: 5, offset: 87355}, + pos: position{line: 2633, col: 5, offset: 87371}, run: (*parser).callonDocumentFragment821, expr: &seqExpr{ - pos: position{line: 2633, col: 5, offset: 87355}, + pos: position{line: 2633, col: 5, offset: 87371}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2633, col: 5, offset: 87355}, + pos: position{line: 2633, col: 5, offset: 87371}, label: "cells", expr: &oneOrMoreExpr{ - pos: position{line: 2633, col: 11, offset: 87361}, + pos: position{line: 2633, col: 11, offset: 87377}, expr: &actionExpr{ - pos: position{line: 2639, col: 5, offset: 87478}, + pos: position{line: 2639, col: 5, offset: 87494}, run: (*parser).callonDocumentFragment825, expr: &seqExpr{ - pos: position{line: 2639, col: 5, offset: 87478}, + pos: position{line: 2639, col: 5, offset: 87494}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2639, col: 5, offset: 87478}, + pos: position{line: 2639, col: 5, offset: 87494}, val: "|", ignoreCase: false, want: "\"|\"", }, &zeroOrMoreExpr{ - pos: position{line: 2639, col: 9, offset: 87482}, + pos: position{line: 2639, col: 9, offset: 87498}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment829, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7427,23 +7427,23 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2640, col: 5, offset: 87494}, + pos: position{line: 2640, col: 5, offset: 87510}, label: "content", expr: &zeroOrOneExpr{ - pos: position{line: 2640, col: 14, offset: 87503}, + pos: position{line: 2640, col: 14, offset: 87519}, expr: &actionExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, run: (*parser).callonDocumentFragment833, expr: &labeledExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, label: "content", expr: &actionExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, run: (*parser).callonDocumentFragment835, expr: &oneOrMoreExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, expr: &charClassMatcher{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, val: "[^\\r\\n|]", chars: []rune{'\r', '\n', '|'}, ignoreCase: false, @@ -7461,28 +7461,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment839, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7491,15 +7491,15 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, &oneOrMoreExpr{ - pos: position{line: 2634, col: 5, offset: 87383}, + pos: position{line: 2634, col: 5, offset: 87399}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonDocumentFragment847, @@ -7509,19 +7509,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment853, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7530,28 +7530,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment856, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7560,9 +7560,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7577,40 +7577,40 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2619, col: 5, offset: 87061}, + pos: position{line: 2619, col: 5, offset: 87077}, label: "rows", expr: &zeroOrMoreExpr{ - pos: position{line: 2619, col: 10, offset: 87066}, + pos: position{line: 2619, col: 10, offset: 87082}, expr: &choiceExpr{ - pos: position{line: 2644, col: 13, offset: 87600}, + pos: position{line: 2644, col: 13, offset: 87616}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2654, col: 5, offset: 87819}, + pos: position{line: 2654, col: 5, offset: 87835}, run: (*parser).callonDocumentFragment866, expr: &seqExpr{ - pos: position{line: 2654, col: 5, offset: 87819}, + pos: position{line: 2654, col: 5, offset: 87835}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2654, col: 5, offset: 87819}, + pos: position{line: 2654, col: 5, offset: 87835}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment873, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7619,28 +7619,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment876, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7649,9 +7649,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7659,55 +7659,55 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, }, &labeledExpr{ - pos: position{line: 2655, col: 5, offset: 87842}, + pos: position{line: 2655, col: 5, offset: 87858}, label: "cells", expr: &oneOrMoreExpr{ - pos: position{line: 2655, col: 11, offset: 87848}, + pos: position{line: 2655, col: 11, offset: 87864}, expr: &actionExpr{ - pos: position{line: 2655, col: 12, offset: 87849}, + pos: position{line: 2655, col: 12, offset: 87865}, run: (*parser).callonDocumentFragment887, expr: &seqExpr{ - pos: position{line: 2655, col: 12, offset: 87849}, + pos: position{line: 2655, col: 12, offset: 87865}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2655, col: 12, offset: 87849}, + pos: position{line: 2655, col: 12, offset: 87865}, label: "cell", expr: &actionExpr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, run: (*parser).callonDocumentFragment890, expr: &seqExpr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment897, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7716,28 +7716,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment900, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7746,9 +7746,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7756,16 +7756,16 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, }, ¬Expr{ - pos: position{line: 2665, col: 5, offset: 88113}, + pos: position{line: 2665, col: 5, offset: 88129}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonDocumentFragment910, @@ -7775,19 +7775,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment916, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7796,28 +7796,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment919, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7826,9 +7826,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7838,18 +7838,18 @@ var g = &grammar{ }, }, &litMatcher{ - pos: position{line: 2666, col: 5, offset: 88128}, + pos: position{line: 2666, col: 5, offset: 88144}, val: "|", ignoreCase: false, want: "\"|\"", }, &zeroOrMoreExpr{ - pos: position{line: 2666, col: 9, offset: 88132}, + pos: position{line: 2666, col: 9, offset: 88148}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment928, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7858,23 +7858,23 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2666, col: 16, offset: 88139}, + pos: position{line: 2666, col: 16, offset: 88155}, label: "content", expr: &zeroOrOneExpr{ - pos: position{line: 2666, col: 25, offset: 88148}, + pos: position{line: 2666, col: 25, offset: 88164}, expr: &actionExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, run: (*parser).callonDocumentFragment932, expr: &labeledExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, label: "content", expr: &actionExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, run: (*parser).callonDocumentFragment934, expr: &oneOrMoreExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, expr: &charClassMatcher{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, val: "[^\\r\\n|]", chars: []rune{'\r', '\n', '|'}, ignoreCase: false, @@ -7891,28 +7891,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment938, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7921,9 +7921,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -7934,10 +7934,10 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2658, col: 6, offset: 87911}, + pos: position{line: 2658, col: 6, offset: 87927}, alternatives: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2658, col: 6, offset: 87911}, + pos: position{line: 2658, col: 6, offset: 87927}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonDocumentFragment947, @@ -7947,19 +7947,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment953, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -7968,28 +7968,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment956, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -7998,9 +7998,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8010,26 +8010,26 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2658, col: 19, offset: 87924}, + pos: position{line: 2658, col: 19, offset: 87940}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment968, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -8038,28 +8038,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment971, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8068,9 +8068,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8078,9 +8078,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8092,32 +8092,32 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2647, col: 5, offset: 87667}, + pos: position{line: 2647, col: 5, offset: 87683}, run: (*parser).callonDocumentFragment980, expr: &seqExpr{ - pos: position{line: 2647, col: 5, offset: 87667}, + pos: position{line: 2647, col: 5, offset: 87683}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2647, col: 5, offset: 87667}, + pos: position{line: 2647, col: 5, offset: 87683}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment987, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -8126,28 +8126,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment990, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8156,9 +8156,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8166,46 +8166,46 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, }, &labeledExpr{ - pos: position{line: 2648, col: 5, offset: 87690}, + pos: position{line: 2648, col: 5, offset: 87706}, label: "cells", expr: &oneOrMoreExpr{ - pos: position{line: 2648, col: 11, offset: 87696}, + pos: position{line: 2648, col: 11, offset: 87712}, expr: &actionExpr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, run: (*parser).callonDocumentFragment1001, expr: &seqExpr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1008, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -8214,28 +8214,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1011, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8244,9 +8244,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8254,16 +8254,16 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, }, ¬Expr{ - pos: position{line: 2665, col: 5, offset: 88113}, + pos: position{line: 2665, col: 5, offset: 88129}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonDocumentFragment1021, @@ -8273,19 +8273,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1027, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -8294,28 +8294,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1030, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8324,9 +8324,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8336,18 +8336,18 @@ var g = &grammar{ }, }, &litMatcher{ - pos: position{line: 2666, col: 5, offset: 88128}, + pos: position{line: 2666, col: 5, offset: 88144}, val: "|", ignoreCase: false, want: "\"|\"", }, &zeroOrMoreExpr{ - pos: position{line: 2666, col: 9, offset: 88132}, + pos: position{line: 2666, col: 9, offset: 88148}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1039, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -8356,23 +8356,23 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2666, col: 16, offset: 88139}, + pos: position{line: 2666, col: 16, offset: 88155}, label: "content", expr: &zeroOrOneExpr{ - pos: position{line: 2666, col: 25, offset: 88148}, + pos: position{line: 2666, col: 25, offset: 88164}, expr: &actionExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, run: (*parser).callonDocumentFragment1043, expr: &labeledExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, label: "content", expr: &actionExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, run: (*parser).callonDocumentFragment1045, expr: &oneOrMoreExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, expr: &charClassMatcher{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, val: "[^\\r\\n|]", chars: []rune{'\r', '\n', '|'}, ignoreCase: false, @@ -8390,28 +8390,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1049, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8420,15 +8420,15 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, &zeroOrMoreExpr{ - pos: position{line: 2649, col: 5, offset: 87717}, + pos: position{line: 2649, col: 5, offset: 87733}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonDocumentFragment1057, @@ -8438,19 +8438,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1063, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -8459,28 +8459,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1066, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8489,9 +8489,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8508,24 +8508,24 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1077, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -8534,28 +8534,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1080, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8564,9 +8564,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8574,9 +8574,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8585,36 +8585,36 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonDocumentFragment1089, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonDocumentFragment1095, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -8624,28 +8624,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1099, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8654,9 +8654,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8767,28 +8767,28 @@ var g = &grammar{ run: (*parser).callonDocumentFragment1128, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1130, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8797,9 +8797,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8833,10 +8833,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1145, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -8845,25 +8845,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1147, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8881,36 +8881,36 @@ var g = &grammar{ pos: position{line: 1659, col: 15, offset: 54133}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonDocumentFragment1154, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonDocumentFragment1160, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -8920,28 +8920,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1164, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -8950,9 +8950,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -8989,28 +8989,28 @@ var g = &grammar{ run: (*parser).callonDocumentFragment1177, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1179, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9019,9 +9019,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9065,12 +9065,12 @@ var g = &grammar{ pos: position{line: 1685, col: 14, offset: 54953}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonDocumentFragment1194, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -9097,28 +9097,28 @@ var g = &grammar{ run: (*parser).callonDocumentFragment1199, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1201, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9127,9 +9127,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9147,36 +9147,36 @@ var g = &grammar{ pos: position{line: 1679, col: 17, offset: 54712}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonDocumentFragment1211, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonDocumentFragment1217, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -9186,28 +9186,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1221, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9216,9 +9216,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9255,28 +9255,28 @@ var g = &grammar{ run: (*parser).callonDocumentFragment1234, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1236, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9285,9 +9285,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9330,10 +9330,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1123, col: 36, offset: 34895}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1251, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -9342,28 +9342,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1254, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9372,9 +9372,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9408,10 +9408,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1123, col: 36, offset: 34895}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1271, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -9420,28 +9420,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1274, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9450,9 +9450,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9479,10 +9479,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1123, col: 36, offset: 34895}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentFragment1284, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -9491,28 +9491,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentFragment1287, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9521,9 +9521,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9616,9 +9616,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9692,12 +9692,12 @@ var g = &grammar{ pos: position{line: 323, col: 9, offset: 9828}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonAttributeDeclaration15, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -9719,28 +9719,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonAttributeDeclaration21, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9749,9 +9749,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9803,10 +9803,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 362, col: 13, offset: 11092}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonAttributeDeclarationValue14, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -9815,28 +9815,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonAttributeDeclarationValue17, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -9845,9 +9845,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -9876,10 +9876,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonAttributeDeclarationValue29, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -10223,25 +10223,25 @@ var g = &grammar{ want: "\"\\\\\"", }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonAttributeDeclarationValue97, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -10252,10 +10252,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 344, col: 9, offset: 10522}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonAttributeDeclarationValue103, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -10710,10 +10710,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 388, col: 35, offset: 11985}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonBlockAttributes90, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -10722,28 +10722,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonBlockAttributes93, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -10752,9 +10752,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -10904,10 +10904,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 392, col: 35, offset: 12129}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonBlockAttributes130, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -10916,28 +10916,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonBlockAttributes133, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -10946,9 +10946,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -10973,10 +10973,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 396, col: 44, offset: 12252}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonBlockAttributes145, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -10985,28 +10985,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonBlockAttributes148, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -11015,9 +11015,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -11252,10 +11252,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 488, col: 13, offset: 15201}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonFirstPositionalAttributes23, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -11736,10 +11736,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 539, col: 9, offset: 16758}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonShortHandAttributeValue77, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -11800,10 +11800,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 545, col: 34, offset: 16901}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonPositionalAttribute11, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -11843,10 +11843,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 550, col: 13, offset: 17157}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonPositionalAttribute20, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -11869,10 +11869,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 550, col: 26, offset: 17170}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonPositionalAttribute26, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -11927,10 +11927,10 @@ var g = &grammar{ ¬Expr{ pos: position{line: 566, col: 22, offset: 17832}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonNamedAttribute7, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -11951,10 +11951,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 566, col: 42, offset: 17852}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonNamedAttribute12, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -11975,10 +11975,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 561, col: 47, offset: 17552}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonNamedAttribute16, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -12008,10 +12008,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 561, col: 82, offset: 17587}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonNamedAttribute24, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -12066,10 +12066,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 576, col: 9, offset: 18075}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonAttributeValue12, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -12148,12 +12148,12 @@ var g = &grammar{ pos: position{line: 589, col: 9, offset: 18392}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonSingleQuotedAttributeValueContent5, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -12163,10 +12163,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuotedAttributeValueContent8, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -12576,10 +12576,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 609, col: 14, offset: 19124}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuotedAttributeValue13, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -12616,12 +12616,12 @@ var g = &grammar{ pos: position{line: 614, col: 9, offset: 19234}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonDoubleQuotedAttributeValueContent5, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -12631,10 +12631,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuotedAttributeValueContent8, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -13014,10 +13014,10 @@ var g = &grammar{ ¬Expr{ pos: position{line: 635, col: 5, offset: 20082}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonUnquotedAttributeValue4, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -13073,10 +13073,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonUnquotedAttributeValue17, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -13418,12 +13418,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonCrossReference6, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -13435,10 +13435,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonCrossReference10, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -13581,12 +13581,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonCrossReference38, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -13630,46 +13630,46 @@ var g = &grammar{ pos: position{line: 704, col: 35, offset: 22642}, label: "url", expr: &actionExpr{ - pos: position{line: 2806, col: 17, offset: 92713}, + pos: position{line: 2806, col: 17, offset: 92729}, run: (*parser).callonExternalCrossReference5, expr: &labeledExpr{ - pos: position{line: 2806, col: 17, offset: 92713}, + pos: position{line: 2806, col: 17, offset: 92729}, label: "path", expr: &oneOrMoreExpr{ - pos: position{line: 2806, col: 22, offset: 92718}, + pos: position{line: 2806, col: 22, offset: 92734}, expr: &choiceExpr{ - pos: position{line: 2806, col: 23, offset: 92719}, + pos: position{line: 2806, col: 23, offset: 92735}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, run: (*parser).callonExternalCrossReference9, expr: &seqExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, expr: &litMatcher{ - pos: position{line: 2821, col: 6, offset: 93176}, + pos: position{line: 2821, col: 6, offset: 93192}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2822, col: 5, offset: 93200}, + pos: position{line: 2822, col: 5, offset: 93216}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2822, col: 14, offset: 93209}, + pos: position{line: 2822, col: 14, offset: 93225}, expr: &choiceExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, run: (*parser).callonExternalCrossReference16, expr: &oneOrMoreExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, expr: &charClassMatcher{ - pos: position{line: 2823, col: 10, offset: 93220}, + pos: position{line: 2823, col: 10, offset: 93236}, val: "[^\\r\\n[]�{.,;?!<> ]", chars: []rune{'\r', '\n', '[', ']', '�', '{', '.', ',', ';', '?', '!', '<', '>', ' '}, ignoreCase: false, @@ -13678,13 +13678,13 @@ var g = &grammar{ }, }, &seqExpr{ - pos: position{line: 2826, col: 11, offset: 93485}, + pos: position{line: 2826, col: 11, offset: 93501}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonExternalCrossReference20, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -13692,23 +13692,23 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2826, col: 32, offset: 93506}, + pos: position{line: 2826, col: 32, offset: 93522}, expr: ¬Expr{ - pos: position{line: 2826, col: 34, offset: 93508}, + pos: position{line: 2826, col: 34, offset: 93524}, expr: &choiceExpr{ - pos: position{line: 2826, col: 36, offset: 93510}, + pos: position{line: 2826, col: 36, offset: 93526}, alternatives: []interface{}{ ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExternalCrossReference27, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -14021,23 +14021,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonExternalCrossReference88, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonExternalCrossReference90, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonExternalCrossReference93, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -14058,12 +14058,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonExternalCrossReference99, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -14075,10 +14075,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExternalCrossReference103, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -14221,12 +14221,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonExternalCrossReference131, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -14248,10 +14248,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonExternalCrossReference135, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -14265,10 +14265,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, run: (*parser).callonExternalCrossReference137, expr: &litMatcher{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, val: "{", ignoreCase: false, want: "\"{\"", @@ -14372,28 +14372,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonMarkdownQuoteAttribution9, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -14402,9 +14402,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14437,19 +14437,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader11, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -14458,28 +14458,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader14, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -14488,9 +14488,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14515,12 +14515,12 @@ var g = &grammar{ want: "\"=\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonDocumentHeader25, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -14547,28 +14547,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader33, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -14577,9 +14577,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14610,19 +14610,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader51, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -14631,28 +14631,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader54, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -14661,9 +14661,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14678,36 +14678,36 @@ var g = &grammar{ pos: position{line: 1004, col: 6, offset: 30874}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonDocumentHeader63, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonDocumentHeader69, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -14717,28 +14717,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader73, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -14747,9 +14747,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14778,10 +14778,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader86, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -14790,28 +14790,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader89, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -14820,9 +14820,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14861,10 +14861,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader106, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -14873,28 +14873,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader109, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -14903,9 +14903,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14914,9 +14914,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14934,9 +14934,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -14959,28 +14959,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader129, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -14989,9 +14989,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15025,10 +15025,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader142, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15037,28 +15037,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader145, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -15067,9 +15067,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15078,9 +15078,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15104,10 +15104,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1011, col: 20, offset: 31198}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader158, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15179,10 +15179,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1038, col: 5, offset: 32056}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader179, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15214,10 +15214,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1042, col: 5, offset: 32155}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader187, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15249,10 +15249,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1046, col: 5, offset: 32252}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader195, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15279,9 +15279,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1052, col: 5, offset: 32374}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15323,10 +15323,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1024, col: 69, offset: 31644}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader211, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15346,10 +15346,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1024, col: 81, offset: 31656}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader216, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15384,10 +15384,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1019, col: 44, offset: 31477}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader223, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15436,10 +15436,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1038, col: 5, offset: 32056}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader237, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15471,10 +15471,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1042, col: 5, offset: 32155}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader245, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15506,10 +15506,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1046, col: 5, offset: 32252}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader253, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15536,9 +15536,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1052, col: 5, offset: 32374}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15580,10 +15580,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1024, col: 69, offset: 31644}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader269, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15603,10 +15603,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1024, col: 81, offset: 31656}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader274, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15629,28 +15629,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader278, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -15659,9 +15659,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15676,36 +15676,36 @@ var g = &grammar{ pos: position{line: 1006, col: 6, offset: 30980}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonDocumentHeader287, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonDocumentHeader293, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -15715,28 +15715,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader297, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -15745,9 +15745,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15776,10 +15776,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader310, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15788,28 +15788,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader313, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -15818,9 +15818,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15859,10 +15859,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader330, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -15871,28 +15871,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader333, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -15901,9 +15901,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15912,9 +15912,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15932,9 +15932,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -15957,28 +15957,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader353, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -15987,9 +15987,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16023,10 +16023,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader366, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -16035,28 +16035,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader369, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -16065,9 +16065,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16076,9 +16076,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16104,10 +16104,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1063, col: 21, offset: 32650}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader383, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -16209,10 +16209,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1075, col: 28, offset: 33281}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader407, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -16359,28 +16359,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader439, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -16389,9 +16389,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16473,10 +16473,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 376, col: 49, offset: 11454}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader461, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -16485,28 +16485,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader464, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -16515,9 +16515,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16580,10 +16580,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 378, col: 35, offset: 11567}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader482, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -16592,28 +16592,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader485, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -16622,9 +16622,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16633,36 +16633,36 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonDocumentHeader492, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonDocumentHeader498, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -16672,28 +16672,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader502, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -16702,9 +16702,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16733,10 +16733,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader515, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -16745,28 +16745,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader518, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -16775,9 +16775,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16816,10 +16816,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader535, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -16828,28 +16828,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader538, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -16858,9 +16858,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16869,9 +16869,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16889,9 +16889,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16914,28 +16914,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader558, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -16944,9 +16944,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -16980,10 +16980,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDocumentHeader571, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -16992,28 +16992,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDocumentHeader574, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -17022,9 +17022,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -17033,9 +17033,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -17065,15 +17065,15 @@ var g = &grammar{ pos: position{line: 1152, col: 9, offset: 35636}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2783, col: 5, offset: 92084}, + pos: position{line: 2783, col: 5, offset: 92100}, run: (*parser).callonInlineElement4, expr: &seqExpr{ - pos: position{line: 2783, col: 5, offset: 92084}, + pos: position{line: 2783, col: 5, offset: 92100}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2783, col: 5, offset: 92084}, + pos: position{line: 2783, col: 5, offset: 92100}, expr: &charClassMatcher{ - pos: position{line: 2783, col: 5, offset: 92084}, + pos: position{line: 2783, col: 5, offset: 92100}, val: "[,;!?0-9\\pL]", chars: []rune{',', ';', '!', '?'}, ranges: []rune{'0', '9'}, @@ -17083,13 +17083,13 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2784, col: 6, offset: 92134}, + pos: position{line: 2784, col: 6, offset: 92150}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineElement9, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -17097,37 +17097,37 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2784, col: 14, offset: 92142}, + pos: position{line: 2784, col: 14, offset: 92158}, expr: &choiceExpr{ - pos: position{line: 2784, col: 16, offset: 92144}, + pos: position{line: 2784, col: 16, offset: 92160}, alternatives: []interface{}{ &charClassMatcher{ - pos: position{line: 2784, col: 16, offset: 92144}, + pos: position{line: 2784, col: 16, offset: 92160}, val: "[.�]", chars: []rune{'.', '�'}, ignoreCase: false, inverted: false, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonInlineElement14, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -17136,9 +17136,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -17150,12 +17150,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonInlineElement21, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -17182,10 +17182,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1103, col: 9, offset: 34287}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineElement29, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -17196,28 +17196,28 @@ var g = &grammar{ &andExpr{ pos: position{line: 1103, col: 16, offset: 34294}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonInlineElement33, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -17226,9 +17226,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -17243,28 +17243,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1155, col: 11, offset: 35735}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonInlineElement43, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -17273,9 +17273,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -17592,23 +17592,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonInlineElement112, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonInlineElement114, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonInlineElement117, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -17629,12 +17629,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonInlineElement123, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -17646,10 +17646,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineElement127, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -17792,12 +17792,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonInlineElement155, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -17819,10 +17819,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonInlineElement159, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -17836,63 +17836,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonInlineElement161, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonInlineElement163, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonInlineElement165, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonInlineElement167, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonInlineElement169, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonInlineElement171, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -17900,15 +17900,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -17958,10 +17958,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2802, col: 12, offset: 92630}, + pos: position{line: 2802, col: 12, offset: 92646}, run: (*parser).callonInlineElement185, expr: &anyMatcher{ - line: 2802, col: 12, offset: 92630, + line: 2802, col: 12, offset: 92646, }, }, }, @@ -18021,15 +18021,15 @@ var g = &grammar{ pos: position{line: 1182, col: 31, offset: 36797}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, run: (*parser).callonIndexTermContent5, expr: &seqExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, expr: &charClassMatcher{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -18038,21 +18038,21 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2776, col: 15, offset: 91876}, + pos: position{line: 2776, col: 15, offset: 91892}, expr: &choiceExpr{ - pos: position{line: 2776, col: 17, offset: 91878}, + pos: position{line: 2776, col: 17, offset: 91894}, alternatives: []interface{}{ &charClassMatcher{ - pos: position{line: 2776, col: 17, offset: 91878}, + pos: position{line: 2776, col: 17, offset: 91894}, val: "[\\r\\n ,]]", chars: []rune{'\r', '\n', ' ', ',', ']'}, ignoreCase: false, inverted: false, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -18062,15 +18062,15 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, run: (*parser).callonIndexTermContent14, expr: &seqExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, expr: &charClassMatcher{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -18079,21 +18079,21 @@ var g = &grammar{ }, }, &oneOrMoreExpr{ - pos: position{line: 2778, col: 19, offset: 91970}, + pos: position{line: 2778, col: 19, offset: 91986}, expr: &seqExpr{ - pos: position{line: 2778, col: 20, offset: 91971}, + pos: position{line: 2778, col: 20, offset: 91987}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2778, col: 20, offset: 91971}, + pos: position{line: 2778, col: 20, offset: 91987}, val: "[=*_`]", chars: []rune{'=', '*', '_', '`'}, ignoreCase: false, inverted: false, }, &oneOrMoreExpr{ - pos: position{line: 2778, col: 27, offset: 91978}, + pos: position{line: 2778, col: 27, offset: 91994}, expr: &charClassMatcher{ - pos: position{line: 2778, col: 27, offset: 91978}, + pos: position{line: 2778, col: 27, offset: 91994}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -18116,10 +18116,10 @@ var g = &grammar{ name: "QuotedText", }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonIndexTermContent25, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -18127,23 +18127,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonIndexTermContent27, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonIndexTermContent29, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonIndexTermContent32, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -18164,12 +18164,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonIndexTermContent38, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -18181,10 +18181,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonIndexTermContent42, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -18327,12 +18327,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonIndexTermContent70, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -18354,10 +18354,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonIndexTermContent74, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -18455,45 +18455,45 @@ var g = &grammar{ pos: position{line: 1203, col: 15, offset: 37625}, label: "path", expr: &actionExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, run: (*parser).callonImageBlock5, expr: &seqExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, label: "scheme", expr: &zeroOrOneExpr{ - pos: position{line: 2810, col: 20, offset: 92838}, + pos: position{line: 2810, col: 20, offset: 92854}, expr: &choiceExpr{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, val: "http://", ignoreCase: false, want: "\"http://\"", }, &litMatcher{ - pos: position{line: 2818, col: 23, offset: 93112}, + pos: position{line: 2818, col: 23, offset: 93128}, val: "https://", ignoreCase: false, want: "\"https://\"", }, &litMatcher{ - pos: position{line: 2818, col: 36, offset: 93125}, + pos: position{line: 2818, col: 36, offset: 93141}, val: "ftp://", ignoreCase: false, want: "\"ftp://\"", }, &litMatcher{ - pos: position{line: 2818, col: 47, offset: 93136}, + pos: position{line: 2818, col: 47, offset: 93152}, val: "irc://", ignoreCase: false, want: "\"irc://\"", }, &litMatcher{ - pos: position{line: 2818, col: 58, offset: 93147}, + pos: position{line: 2818, col: 58, offset: 93163}, val: "mailto:", ignoreCase: false, want: "\"mailto:\"", @@ -18503,43 +18503,43 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2810, col: 30, offset: 92848}, + pos: position{line: 2810, col: 30, offset: 92864}, label: "path", expr: &oneOrMoreExpr{ - pos: position{line: 2810, col: 35, offset: 92853}, + pos: position{line: 2810, col: 35, offset: 92869}, expr: &choiceExpr{ - pos: position{line: 2810, col: 36, offset: 92854}, + pos: position{line: 2810, col: 36, offset: 92870}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, run: (*parser).callonImageBlock18, expr: &seqExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, expr: &litMatcher{ - pos: position{line: 2821, col: 6, offset: 93176}, + pos: position{line: 2821, col: 6, offset: 93192}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2822, col: 5, offset: 93200}, + pos: position{line: 2822, col: 5, offset: 93216}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2822, col: 14, offset: 93209}, + pos: position{line: 2822, col: 14, offset: 93225}, expr: &choiceExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, run: (*parser).callonImageBlock25, expr: &oneOrMoreExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, expr: &charClassMatcher{ - pos: position{line: 2823, col: 10, offset: 93220}, + pos: position{line: 2823, col: 10, offset: 93236}, val: "[^\\r\\n[]�{.,;?!<> ]", chars: []rune{'\r', '\n', '[', ']', '�', '{', '.', ',', ';', '?', '!', '<', '>', ' '}, ignoreCase: false, @@ -18548,13 +18548,13 @@ var g = &grammar{ }, }, &seqExpr{ - pos: position{line: 2826, col: 11, offset: 93485}, + pos: position{line: 2826, col: 11, offset: 93501}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonImageBlock29, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -18562,23 +18562,23 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2826, col: 32, offset: 93506}, + pos: position{line: 2826, col: 32, offset: 93522}, expr: ¬Expr{ - pos: position{line: 2826, col: 34, offset: 93508}, + pos: position{line: 2826, col: 34, offset: 93524}, expr: &choiceExpr{ - pos: position{line: 2826, col: 36, offset: 93510}, + pos: position{line: 2826, col: 36, offset: 93526}, alternatives: []interface{}{ ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonImageBlock36, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -18891,23 +18891,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonImageBlock97, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonImageBlock99, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonImageBlock102, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -18928,12 +18928,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonImageBlock108, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -18945,10 +18945,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonImageBlock112, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -19091,12 +19091,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonImageBlock140, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -19118,10 +19118,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonImageBlock144, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -19135,10 +19135,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, run: (*parser).callonImageBlock146, expr: &litMatcher{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, val: "{", ignoreCase: false, want: "\"{\"", @@ -19209,10 +19209,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1203, col: 61, offset: 37671}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonImageBlock159, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -19221,28 +19221,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonImageBlock162, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -19251,9 +19251,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -19290,45 +19290,45 @@ var g = &grammar{ pos: position{line: 1208, col: 30, offset: 37917}, label: "path", expr: &actionExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, run: (*parser).callonInlineImage7, expr: &seqExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, label: "scheme", expr: &zeroOrOneExpr{ - pos: position{line: 2810, col: 20, offset: 92838}, + pos: position{line: 2810, col: 20, offset: 92854}, expr: &choiceExpr{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, val: "http://", ignoreCase: false, want: "\"http://\"", }, &litMatcher{ - pos: position{line: 2818, col: 23, offset: 93112}, + pos: position{line: 2818, col: 23, offset: 93128}, val: "https://", ignoreCase: false, want: "\"https://\"", }, &litMatcher{ - pos: position{line: 2818, col: 36, offset: 93125}, + pos: position{line: 2818, col: 36, offset: 93141}, val: "ftp://", ignoreCase: false, want: "\"ftp://\"", }, &litMatcher{ - pos: position{line: 2818, col: 47, offset: 93136}, + pos: position{line: 2818, col: 47, offset: 93152}, val: "irc://", ignoreCase: false, want: "\"irc://\"", }, &litMatcher{ - pos: position{line: 2818, col: 58, offset: 93147}, + pos: position{line: 2818, col: 58, offset: 93163}, val: "mailto:", ignoreCase: false, want: "\"mailto:\"", @@ -19338,43 +19338,43 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2810, col: 30, offset: 92848}, + pos: position{line: 2810, col: 30, offset: 92864}, label: "path", expr: &oneOrMoreExpr{ - pos: position{line: 2810, col: 35, offset: 92853}, + pos: position{line: 2810, col: 35, offset: 92869}, expr: &choiceExpr{ - pos: position{line: 2810, col: 36, offset: 92854}, + pos: position{line: 2810, col: 36, offset: 92870}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, run: (*parser).callonInlineImage20, expr: &seqExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, expr: &litMatcher{ - pos: position{line: 2821, col: 6, offset: 93176}, + pos: position{line: 2821, col: 6, offset: 93192}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2822, col: 5, offset: 93200}, + pos: position{line: 2822, col: 5, offset: 93216}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2822, col: 14, offset: 93209}, + pos: position{line: 2822, col: 14, offset: 93225}, expr: &choiceExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, run: (*parser).callonInlineImage27, expr: &oneOrMoreExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, expr: &charClassMatcher{ - pos: position{line: 2823, col: 10, offset: 93220}, + pos: position{line: 2823, col: 10, offset: 93236}, val: "[^\\r\\n[]�{.,;?!<> ]", chars: []rune{'\r', '\n', '[', ']', '�', '{', '.', ',', ';', '?', '!', '<', '>', ' '}, ignoreCase: false, @@ -19383,13 +19383,13 @@ var g = &grammar{ }, }, &seqExpr{ - pos: position{line: 2826, col: 11, offset: 93485}, + pos: position{line: 2826, col: 11, offset: 93501}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonInlineImage31, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -19397,23 +19397,23 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2826, col: 32, offset: 93506}, + pos: position{line: 2826, col: 32, offset: 93522}, expr: ¬Expr{ - pos: position{line: 2826, col: 34, offset: 93508}, + pos: position{line: 2826, col: 34, offset: 93524}, expr: &choiceExpr{ - pos: position{line: 2826, col: 36, offset: 93510}, + pos: position{line: 2826, col: 36, offset: 93526}, alternatives: []interface{}{ ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineImage38, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -19726,23 +19726,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonInlineImage99, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonInlineImage101, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonInlineImage104, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -19763,12 +19763,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonInlineImage110, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -19780,10 +19780,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineImage114, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -19926,12 +19926,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonInlineImage142, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -19953,10 +19953,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonInlineImage146, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -19970,10 +19970,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, run: (*parser).callonInlineImage148, expr: &litMatcher{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, val: "{", ignoreCase: false, want: "\"{\"", @@ -20143,12 +20143,12 @@ var g = &grammar{ pos: position{line: 1224, col: 21, offset: 38920}, label: "ref", expr: &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonInlineFootnote12, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -20338,52 +20338,52 @@ var g = &grammar{ pos: position{line: 1279, col: 5, offset: 41532}, label: "url", expr: &actionExpr{ - pos: position{line: 2814, col: 23, offset: 92980}, + pos: position{line: 2814, col: 23, offset: 92996}, run: (*parser).callonLink6, expr: &seqExpr{ - pos: position{line: 2814, col: 23, offset: 92980}, + pos: position{line: 2814, col: 23, offset: 92996}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2814, col: 23, offset: 92980}, + pos: position{line: 2814, col: 23, offset: 92996}, expr: &litMatcher{ - pos: position{line: 2814, col: 24, offset: 92981}, + pos: position{line: 2814, col: 24, offset: 92997}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2814, col: 28, offset: 92985}, + pos: position{line: 2814, col: 28, offset: 93001}, label: "scheme", expr: &choiceExpr{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, val: "http://", ignoreCase: false, want: "\"http://\"", }, &litMatcher{ - pos: position{line: 2818, col: 23, offset: 93112}, + pos: position{line: 2818, col: 23, offset: 93128}, val: "https://", ignoreCase: false, want: "\"https://\"", }, &litMatcher{ - pos: position{line: 2818, col: 36, offset: 93125}, + pos: position{line: 2818, col: 36, offset: 93141}, val: "ftp://", ignoreCase: false, want: "\"ftp://\"", }, &litMatcher{ - pos: position{line: 2818, col: 47, offset: 93136}, + pos: position{line: 2818, col: 47, offset: 93152}, val: "irc://", ignoreCase: false, want: "\"irc://\"", }, &litMatcher{ - pos: position{line: 2818, col: 58, offset: 93147}, + pos: position{line: 2818, col: 58, offset: 93163}, val: "mailto:", ignoreCase: false, want: "\"mailto:\"", @@ -20392,40 +20392,40 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2814, col: 44, offset: 93001}, + pos: position{line: 2814, col: 44, offset: 93017}, label: "path", expr: &oneOrMoreExpr{ - pos: position{line: 2814, col: 49, offset: 93006}, + pos: position{line: 2814, col: 49, offset: 93022}, expr: &actionExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, run: (*parser).callonLink19, expr: &seqExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, expr: &litMatcher{ - pos: position{line: 2821, col: 6, offset: 93176}, + pos: position{line: 2821, col: 6, offset: 93192}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2822, col: 5, offset: 93200}, + pos: position{line: 2822, col: 5, offset: 93216}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2822, col: 14, offset: 93209}, + pos: position{line: 2822, col: 14, offset: 93225}, expr: &choiceExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, run: (*parser).callonLink26, expr: &oneOrMoreExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, expr: &charClassMatcher{ - pos: position{line: 2823, col: 10, offset: 93220}, + pos: position{line: 2823, col: 10, offset: 93236}, val: "[^\\r\\n[]�{.,;?!<> ]", chars: []rune{'\r', '\n', '[', ']', '�', '{', '.', ',', ';', '?', '!', '<', '>', ' '}, ignoreCase: false, @@ -20434,13 +20434,13 @@ var g = &grammar{ }, }, &seqExpr{ - pos: position{line: 2826, col: 11, offset: 93485}, + pos: position{line: 2826, col: 11, offset: 93501}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonLink30, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -20448,23 +20448,23 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2826, col: 32, offset: 93506}, + pos: position{line: 2826, col: 32, offset: 93522}, expr: ¬Expr{ - pos: position{line: 2826, col: 34, offset: 93508}, + pos: position{line: 2826, col: 34, offset: 93524}, expr: &choiceExpr{ - pos: position{line: 2826, col: 36, offset: 93510}, + pos: position{line: 2826, col: 36, offset: 93526}, alternatives: []interface{}{ ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonLink37, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -20777,23 +20777,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonLink98, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonLink100, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonLink103, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -20814,12 +20814,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonLink109, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -20831,10 +20831,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonLink113, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -20977,12 +20977,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonLink141, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -21004,10 +21004,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonLink145, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -21021,10 +21021,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, run: (*parser).callonLink147, expr: &litMatcher{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, val: "{", ignoreCase: false, want: "\"{\"", @@ -21093,45 +21093,45 @@ var g = &grammar{ pos: position{line: 1289, col: 25, offset: 41885}, label: "url", expr: &actionExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, run: (*parser).callonRelativeLink5, expr: &seqExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2810, col: 13, offset: 92831}, + pos: position{line: 2810, col: 13, offset: 92847}, label: "scheme", expr: &zeroOrOneExpr{ - pos: position{line: 2810, col: 20, offset: 92838}, + pos: position{line: 2810, col: 20, offset: 92854}, expr: &choiceExpr{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, val: "http://", ignoreCase: false, want: "\"http://\"", }, &litMatcher{ - pos: position{line: 2818, col: 23, offset: 93112}, + pos: position{line: 2818, col: 23, offset: 93128}, val: "https://", ignoreCase: false, want: "\"https://\"", }, &litMatcher{ - pos: position{line: 2818, col: 36, offset: 93125}, + pos: position{line: 2818, col: 36, offset: 93141}, val: "ftp://", ignoreCase: false, want: "\"ftp://\"", }, &litMatcher{ - pos: position{line: 2818, col: 47, offset: 93136}, + pos: position{line: 2818, col: 47, offset: 93152}, val: "irc://", ignoreCase: false, want: "\"irc://\"", }, &litMatcher{ - pos: position{line: 2818, col: 58, offset: 93147}, + pos: position{line: 2818, col: 58, offset: 93163}, val: "mailto:", ignoreCase: false, want: "\"mailto:\"", @@ -21141,43 +21141,43 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2810, col: 30, offset: 92848}, + pos: position{line: 2810, col: 30, offset: 92864}, label: "path", expr: &oneOrMoreExpr{ - pos: position{line: 2810, col: 35, offset: 92853}, + pos: position{line: 2810, col: 35, offset: 92869}, expr: &choiceExpr{ - pos: position{line: 2810, col: 36, offset: 92854}, + pos: position{line: 2810, col: 36, offset: 92870}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, run: (*parser).callonRelativeLink18, expr: &seqExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, expr: &litMatcher{ - pos: position{line: 2821, col: 6, offset: 93176}, + pos: position{line: 2821, col: 6, offset: 93192}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2822, col: 5, offset: 93200}, + pos: position{line: 2822, col: 5, offset: 93216}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2822, col: 14, offset: 93209}, + pos: position{line: 2822, col: 14, offset: 93225}, expr: &choiceExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, run: (*parser).callonRelativeLink25, expr: &oneOrMoreExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, expr: &charClassMatcher{ - pos: position{line: 2823, col: 10, offset: 93220}, + pos: position{line: 2823, col: 10, offset: 93236}, val: "[^\\r\\n[]�{.,;?!<> ]", chars: []rune{'\r', '\n', '[', ']', '�', '{', '.', ',', ';', '?', '!', '<', '>', ' '}, ignoreCase: false, @@ -21186,13 +21186,13 @@ var g = &grammar{ }, }, &seqExpr{ - pos: position{line: 2826, col: 11, offset: 93485}, + pos: position{line: 2826, col: 11, offset: 93501}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonRelativeLink29, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -21200,23 +21200,23 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2826, col: 32, offset: 93506}, + pos: position{line: 2826, col: 32, offset: 93522}, expr: ¬Expr{ - pos: position{line: 2826, col: 34, offset: 93508}, + pos: position{line: 2826, col: 34, offset: 93524}, expr: &choiceExpr{ - pos: position{line: 2826, col: 36, offset: 93510}, + pos: position{line: 2826, col: 36, offset: 93526}, alternatives: []interface{}{ ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonRelativeLink36, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -21529,23 +21529,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonRelativeLink97, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonRelativeLink99, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonRelativeLink102, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -21566,12 +21566,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonRelativeLink108, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -21583,10 +21583,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonRelativeLink112, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -21729,12 +21729,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonRelativeLink140, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -21756,10 +21756,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonRelativeLink144, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -21773,10 +21773,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, run: (*parser).callonRelativeLink146, expr: &litMatcher{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, val: "{", ignoreCase: false, want: "\"{\"", @@ -21861,52 +21861,52 @@ var g = &grammar{ pos: position{line: 1293, col: 17, offset: 42044}, label: "url", expr: &actionExpr{ - pos: position{line: 2814, col: 23, offset: 92980}, + pos: position{line: 2814, col: 23, offset: 92996}, run: (*parser).callonExternalLink4, expr: &seqExpr{ - pos: position{line: 2814, col: 23, offset: 92980}, + pos: position{line: 2814, col: 23, offset: 92996}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2814, col: 23, offset: 92980}, + pos: position{line: 2814, col: 23, offset: 92996}, expr: &litMatcher{ - pos: position{line: 2814, col: 24, offset: 92981}, + pos: position{line: 2814, col: 24, offset: 92997}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2814, col: 28, offset: 92985}, + pos: position{line: 2814, col: 28, offset: 93001}, label: "scheme", expr: &choiceExpr{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2818, col: 11, offset: 93100}, + pos: position{line: 2818, col: 11, offset: 93116}, val: "http://", ignoreCase: false, want: "\"http://\"", }, &litMatcher{ - pos: position{line: 2818, col: 23, offset: 93112}, + pos: position{line: 2818, col: 23, offset: 93128}, val: "https://", ignoreCase: false, want: "\"https://\"", }, &litMatcher{ - pos: position{line: 2818, col: 36, offset: 93125}, + pos: position{line: 2818, col: 36, offset: 93141}, val: "ftp://", ignoreCase: false, want: "\"ftp://\"", }, &litMatcher{ - pos: position{line: 2818, col: 47, offset: 93136}, + pos: position{line: 2818, col: 47, offset: 93152}, val: "irc://", ignoreCase: false, want: "\"irc://\"", }, &litMatcher{ - pos: position{line: 2818, col: 58, offset: 93147}, + pos: position{line: 2818, col: 58, offset: 93163}, val: "mailto:", ignoreCase: false, want: "\"mailto:\"", @@ -21915,40 +21915,40 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2814, col: 44, offset: 93001}, + pos: position{line: 2814, col: 44, offset: 93017}, label: "path", expr: &oneOrMoreExpr{ - pos: position{line: 2814, col: 49, offset: 93006}, + pos: position{line: 2814, col: 49, offset: 93022}, expr: &actionExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, run: (*parser).callonExternalLink17, expr: &seqExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, expr: &litMatcher{ - pos: position{line: 2821, col: 6, offset: 93176}, + pos: position{line: 2821, col: 6, offset: 93192}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2822, col: 5, offset: 93200}, + pos: position{line: 2822, col: 5, offset: 93216}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2822, col: 14, offset: 93209}, + pos: position{line: 2822, col: 14, offset: 93225}, expr: &choiceExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, run: (*parser).callonExternalLink24, expr: &oneOrMoreExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, expr: &charClassMatcher{ - pos: position{line: 2823, col: 10, offset: 93220}, + pos: position{line: 2823, col: 10, offset: 93236}, val: "[^\\r\\n[]�{.,;?!<> ]", chars: []rune{'\r', '\n', '[', ']', '�', '{', '.', ',', ';', '?', '!', '<', '>', ' '}, ignoreCase: false, @@ -21957,13 +21957,13 @@ var g = &grammar{ }, }, &seqExpr{ - pos: position{line: 2826, col: 11, offset: 93485}, + pos: position{line: 2826, col: 11, offset: 93501}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonExternalLink28, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -21971,23 +21971,23 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2826, col: 32, offset: 93506}, + pos: position{line: 2826, col: 32, offset: 93522}, expr: ¬Expr{ - pos: position{line: 2826, col: 34, offset: 93508}, + pos: position{line: 2826, col: 34, offset: 93524}, expr: &choiceExpr{ - pos: position{line: 2826, col: 36, offset: 93510}, + pos: position{line: 2826, col: 36, offset: 93526}, alternatives: []interface{}{ ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExternalLink35, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -22300,23 +22300,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonExternalLink96, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonExternalLink98, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonExternalLink101, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -22337,12 +22337,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonExternalLink107, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -22354,10 +22354,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExternalLink111, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -22500,12 +22500,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonExternalLink139, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -22527,10 +22527,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonExternalLink143, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -22544,10 +22544,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, run: (*parser).callonExternalLink145, expr: &litMatcher{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, val: "{", ignoreCase: false, want: "\"{\"", @@ -22614,10 +22614,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements11, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -22784,12 +22784,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElements45, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -22829,28 +22829,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements56, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -22859,9 +22859,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -22891,10 +22891,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements69, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -22956,12 +22956,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElements83, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23033,12 +23033,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElements100, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23079,28 +23079,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements111, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -23109,9 +23109,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -23169,12 +23169,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElements129, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23214,28 +23214,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements140, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -23244,9 +23244,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -23311,28 +23311,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements163, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -23341,9 +23341,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -23406,10 +23406,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1561, col: 9, offset: 50965}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements184, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23418,28 +23418,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements187, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -23448,9 +23448,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -23466,19 +23466,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements201, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23487,28 +23487,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements204, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -23517,9 +23517,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -23550,19 +23550,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements222, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23571,28 +23571,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements225, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -23601,9 +23601,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -23626,10 +23626,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements236, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23638,25 +23638,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements238, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -23678,10 +23678,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements247, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23848,12 +23848,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElements281, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23876,10 +23876,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements288, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23941,12 +23941,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElements302, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -23997,12 +23997,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElements314, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24063,28 +24063,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements332, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24093,9 +24093,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24152,7 +24152,7 @@ var g = &grammar{ ¬Expr{ pos: position{line: 734, col: 5, offset: 23557}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -24181,10 +24181,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements358, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24193,28 +24193,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements361, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24223,9 +24223,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24248,10 +24248,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements372, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24260,28 +24260,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements375, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24290,9 +24290,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24315,10 +24315,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements386, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24327,28 +24327,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements389, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24357,9 +24357,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24382,10 +24382,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements400, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24394,28 +24394,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements403, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24424,9 +24424,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24449,10 +24449,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements414, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24461,28 +24461,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements417, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24491,9 +24491,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24516,10 +24516,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements428, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24528,28 +24528,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements431, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24558,9 +24558,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24583,10 +24583,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements442, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24595,28 +24595,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements445, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24625,9 +24625,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24650,10 +24650,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElements456, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24662,28 +24662,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements459, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24692,9 +24692,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24728,28 +24728,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements471, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24758,9 +24758,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24780,12 +24780,12 @@ var g = &grammar{ pos: position{line: 1571, col: 9, offset: 51248}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElements480, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24812,28 +24812,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElements488, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24842,9 +24842,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24904,9 +24904,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1318, col: 5, offset: 43007}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -24933,19 +24933,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement17, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -24954,28 +24954,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement20, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -24984,9 +24984,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -25016,10 +25016,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement34, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -25186,12 +25186,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement68, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -25231,28 +25231,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement79, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -25261,9 +25261,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -25317,10 +25317,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement98, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -25487,12 +25487,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement132, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -25532,28 +25532,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement143, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -25562,9 +25562,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -25597,19 +25597,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement159, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -25618,28 +25618,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement162, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -25648,9 +25648,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -25680,10 +25680,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement176, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -25745,12 +25745,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement190, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -25822,12 +25822,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement207, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -25868,28 +25868,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement218, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -25898,9 +25898,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -25954,10 +25954,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement237, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26019,12 +26019,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement251, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26096,12 +26096,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement268, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26142,28 +26142,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement279, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26172,9 +26172,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -26207,19 +26207,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement295, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26228,28 +26228,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement298, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26258,9 +26258,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -26318,12 +26318,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement317, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26363,28 +26363,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement328, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26393,9 +26393,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -26477,12 +26477,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement352, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26522,28 +26522,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement363, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26552,9 +26552,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -26591,19 +26591,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement380, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26612,28 +26612,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement383, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26642,9 +26642,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -26709,28 +26709,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement407, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26739,9 +26739,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -26804,10 +26804,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1561, col: 9, offset: 50965}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement428, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26816,28 +26816,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement431, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26846,9 +26846,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -26864,19 +26864,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement445, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26885,28 +26885,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement448, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26915,9 +26915,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -26948,19 +26948,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement466, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -26969,28 +26969,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement469, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -26999,9 +26999,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -27024,10 +27024,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement480, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27036,25 +27036,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement482, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -27076,10 +27076,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement491, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27246,12 +27246,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement525, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27274,10 +27274,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement532, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27339,12 +27339,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement546, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27395,12 +27395,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement558, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27461,28 +27461,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement576, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -27491,9 +27491,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -27550,7 +27550,7 @@ var g = &grammar{ ¬Expr{ pos: position{line: 734, col: 5, offset: 23557}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -27579,10 +27579,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement602, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27591,28 +27591,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement605, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -27621,9 +27621,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -27646,10 +27646,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement616, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27658,28 +27658,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement619, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -27688,9 +27688,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -27713,10 +27713,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement630, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27725,28 +27725,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement633, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -27755,9 +27755,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -27780,10 +27780,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement644, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27792,28 +27792,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement647, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -27822,9 +27822,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -27847,10 +27847,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement658, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27859,28 +27859,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement661, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -27889,9 +27889,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -27914,10 +27914,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement672, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27926,28 +27926,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement675, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -27956,9 +27956,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -27981,10 +27981,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement686, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -27993,28 +27993,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement689, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28023,9 +28023,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -28048,10 +28048,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement700, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28060,28 +28060,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement703, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28090,9 +28090,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -28126,28 +28126,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement715, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28156,9 +28156,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -28178,12 +28178,12 @@ var g = &grammar{ pos: position{line: 1571, col: 9, offset: 51248}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement724, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28210,28 +28210,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement732, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28240,9 +28240,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -28333,28 +28333,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement761, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28363,9 +28363,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -28428,10 +28428,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1561, col: 9, offset: 50965}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement782, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28440,28 +28440,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement785, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28470,9 +28470,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -28488,19 +28488,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement799, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28509,28 +28509,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement802, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28539,9 +28539,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -28572,19 +28572,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement820, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28593,28 +28593,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement823, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28623,9 +28623,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -28648,10 +28648,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement834, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28660,25 +28660,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement836, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -28700,10 +28700,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement845, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28870,12 +28870,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement879, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28898,10 +28898,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement886, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -28963,12 +28963,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement900, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29019,12 +29019,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement912, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29085,28 +29085,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement930, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29115,9 +29115,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29174,7 +29174,7 @@ var g = &grammar{ ¬Expr{ pos: position{line: 734, col: 5, offset: 23557}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -29203,10 +29203,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement956, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29215,28 +29215,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement959, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29245,9 +29245,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29270,10 +29270,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement970, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29282,28 +29282,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement973, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29312,9 +29312,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29337,10 +29337,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement984, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29349,28 +29349,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement987, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29379,9 +29379,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29404,10 +29404,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement998, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29416,28 +29416,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1001, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29446,9 +29446,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29471,10 +29471,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1012, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29483,28 +29483,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1015, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29513,9 +29513,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29538,10 +29538,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1026, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29550,28 +29550,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1029, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29580,9 +29580,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29605,10 +29605,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1040, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29617,28 +29617,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1043, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29647,9 +29647,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29672,10 +29672,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1054, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29684,28 +29684,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1057, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29714,9 +29714,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29750,28 +29750,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1069, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29780,9 +29780,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29802,12 +29802,12 @@ var g = &grammar{ pos: position{line: 1571, col: 9, offset: 51248}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement1078, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -29834,28 +29834,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1086, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29864,9 +29864,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29885,36 +29885,36 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonExtraListElement1093, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonExtraListElement1099, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -29924,28 +29924,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1103, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -29954,9 +29954,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -29987,19 +29987,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1121, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30008,28 +30008,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1124, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30038,9 +30038,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -30063,10 +30063,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1135, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30075,25 +30075,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1137, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30115,10 +30115,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1146, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30285,12 +30285,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement1180, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30313,10 +30313,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1187, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30378,12 +30378,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement1201, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30434,12 +30434,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonExtraListElement1213, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30500,28 +30500,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1231, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30530,9 +30530,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -30589,7 +30589,7 @@ var g = &grammar{ ¬Expr{ pos: position{line: 734, col: 5, offset: 23557}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -30618,10 +30618,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1257, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30630,28 +30630,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1260, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30660,9 +30660,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -30685,10 +30685,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1271, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30697,28 +30697,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1274, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30727,9 +30727,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -30752,10 +30752,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1285, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30764,28 +30764,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1288, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30794,9 +30794,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -30819,10 +30819,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1299, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30831,28 +30831,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1302, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30861,9 +30861,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -30886,10 +30886,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1313, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30898,28 +30898,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1316, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30928,9 +30928,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -30953,10 +30953,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1327, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -30965,28 +30965,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1330, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -30995,9 +30995,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -31020,10 +31020,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1341, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31032,28 +31032,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1344, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -31062,9 +31062,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -31087,10 +31087,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonExtraListElement1355, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31099,28 +31099,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1358, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -31129,9 +31129,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -31165,28 +31165,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonExtraListElement1370, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -31195,9 +31195,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -31234,10 +31234,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1388, col: 13, offset: 45147}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuation7, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31246,25 +31246,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuation9, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -31285,10 +31285,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuation16, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31297,25 +31297,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuation18, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -31350,9 +31350,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1398, col: 5, offset: 45477}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -31379,10 +31379,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement14, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31549,12 +31549,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement48, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31594,28 +31594,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement59, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -31624,9 +31624,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -31656,10 +31656,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement72, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31721,12 +31721,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement86, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31798,12 +31798,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement103, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31844,28 +31844,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement114, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -31874,9 +31874,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -31934,12 +31934,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement132, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -31979,28 +31979,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement143, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -32009,9 +32009,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -32076,28 +32076,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement166, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -32106,9 +32106,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -32171,10 +32171,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1561, col: 9, offset: 50965}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement187, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32183,28 +32183,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement190, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -32213,9 +32213,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -32231,19 +32231,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement204, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32252,28 +32252,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement207, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -32282,9 +32282,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -32315,19 +32315,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement225, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32336,28 +32336,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement228, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -32366,9 +32366,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -32391,10 +32391,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement239, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32403,25 +32403,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement241, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -32443,10 +32443,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement250, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32613,12 +32613,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement284, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32641,10 +32641,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement291, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32706,12 +32706,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement305, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32762,12 +32762,12 @@ var g = &grammar{ want: "\">\"", }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement317, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32828,28 +32828,28 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1543, col: 35, offset: 50460}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement335, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -32858,9 +32858,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -32917,7 +32917,7 @@ var g = &grammar{ ¬Expr{ pos: position{line: 734, col: 5, offset: 23557}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -32946,10 +32946,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement361, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -32958,28 +32958,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement364, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -32988,9 +32988,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33013,10 +33013,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement375, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33025,28 +33025,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement378, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33055,9 +33055,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33080,10 +33080,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement389, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33092,28 +33092,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement392, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33122,9 +33122,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33147,10 +33147,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement403, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33159,28 +33159,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement406, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33189,9 +33189,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33214,10 +33214,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement417, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33226,28 +33226,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement420, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33256,9 +33256,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33281,10 +33281,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement431, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33293,28 +33293,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement434, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33323,9 +33323,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33348,10 +33348,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement445, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33360,28 +33360,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement448, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33390,9 +33390,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33415,10 +33415,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement459, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33427,28 +33427,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement462, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33457,9 +33457,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33493,28 +33493,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement474, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33523,9 +33523,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33545,12 +33545,12 @@ var g = &grammar{ pos: position{line: 1571, col: 9, offset: 51248}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement483, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33577,28 +33577,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement491, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33607,9 +33607,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33652,19 +33652,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement509, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33673,28 +33673,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement512, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33703,9 +33703,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33772,10 +33772,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 376, col: 49, offset: 11454}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement531, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33784,28 +33784,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement534, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33814,9 +33814,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33879,10 +33879,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 378, col: 35, offset: 11567}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement552, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33891,28 +33891,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement555, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33921,9 +33921,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -33952,10 +33952,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement568, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -33964,28 +33964,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement571, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -33994,9 +33994,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34035,10 +34035,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement588, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34047,28 +34047,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement591, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34077,9 +34077,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34088,9 +34088,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34108,9 +34108,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34133,28 +34133,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement611, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34163,9 +34163,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34199,10 +34199,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 748, col: 33, offset: 23935}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement624, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34211,28 +34211,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement627, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34241,9 +34241,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34252,9 +34252,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34284,10 +34284,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement642, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34296,28 +34296,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement645, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34326,9 +34326,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34367,10 +34367,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement662, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34379,28 +34379,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement665, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34409,9 +34409,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34420,9 +34420,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34440,9 +34440,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34465,28 +34465,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement685, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34495,9 +34495,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34531,10 +34531,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 752, col: 33, offset: 24049}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement698, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34543,28 +34543,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement701, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34573,9 +34573,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34584,9 +34584,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34616,10 +34616,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement716, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34628,28 +34628,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement719, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34658,9 +34658,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34699,10 +34699,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement736, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34711,28 +34711,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement739, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34741,9 +34741,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34752,9 +34752,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34772,9 +34772,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34797,28 +34797,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement759, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34827,9 +34827,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34863,10 +34863,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 756, col: 31, offset: 24161}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement772, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34875,28 +34875,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement775, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34905,9 +34905,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34916,9 +34916,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -34948,10 +34948,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement790, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -34960,28 +34960,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement793, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -34990,9 +34990,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35031,10 +35031,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement810, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -35043,28 +35043,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement813, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35073,9 +35073,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35084,9 +35084,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35104,9 +35104,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35129,28 +35129,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement833, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35159,9 +35159,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35195,10 +35195,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 760, col: 33, offset: 24274}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement846, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -35207,28 +35207,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement849, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35237,9 +35237,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35248,9 +35248,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35280,10 +35280,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement864, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -35292,28 +35292,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement867, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35322,9 +35322,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35363,10 +35363,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement884, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -35375,28 +35375,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement887, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35405,9 +35405,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35416,9 +35416,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35436,9 +35436,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35461,28 +35461,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement907, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35491,9 +35491,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35527,10 +35527,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 764, col: 33, offset: 24388}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement920, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -35539,28 +35539,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement923, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35569,9 +35569,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35580,9 +35580,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35617,19 +35617,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement944, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -35638,28 +35638,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement947, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35668,9 +35668,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35704,28 +35704,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement960, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35734,9 +35734,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35770,19 +35770,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement979, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -35791,28 +35791,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement982, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35821,9 +35821,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35857,28 +35857,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement995, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35887,9 +35887,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35926,28 +35926,28 @@ var g = &grammar{ run: (*parser).callonListElementContinuationElement1008, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1010, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -35956,9 +35956,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -35994,10 +35994,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1023, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36006,28 +36006,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1026, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36036,9 +36036,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36077,10 +36077,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1043, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36089,28 +36089,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1046, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36119,9 +36119,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36130,9 +36130,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36150,9 +36150,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36175,28 +36175,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1066, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36205,9 +36205,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36241,10 +36241,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 768, col: 37, offset: 24506}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1079, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36253,28 +36253,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1082, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36283,9 +36283,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36294,9 +36294,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36326,10 +36326,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1097, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36338,28 +36338,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1100, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36368,9 +36368,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36409,10 +36409,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1117, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36421,28 +36421,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1120, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36451,9 +36451,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36462,9 +36462,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36482,9 +36482,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36507,28 +36507,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1140, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36537,9 +36537,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36573,10 +36573,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 772, col: 31, offset: 24622}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1153, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36585,28 +36585,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1156, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36615,9 +36615,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36626,9 +36626,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36658,10 +36658,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1171, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36670,28 +36670,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1174, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36700,9 +36700,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36741,10 +36741,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1191, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36753,28 +36753,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1194, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36783,9 +36783,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36794,9 +36794,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36814,9 +36814,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 781, col: 5, offset: 24846}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36839,28 +36839,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1214, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36869,9 +36869,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36905,10 +36905,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 776, col: 33, offset: 24734}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1227, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -36917,28 +36917,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1230, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -36947,9 +36947,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36958,9 +36958,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -36970,52 +36970,52 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2719, col: 18, offset: 89882}, + pos: position{line: 2719, col: 18, offset: 89898}, run: (*parser).callonListElementContinuationElement1239, expr: &seqExpr{ - pos: position{line: 2719, col: 18, offset: 89882}, + pos: position{line: 2719, col: 18, offset: 89898}, exprs: []interface{}{ &choiceExpr{ - pos: position{line: 2720, col: 9, offset: 89892}, + pos: position{line: 2720, col: 9, offset: 89908}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2720, col: 9, offset: 89892}, + pos: position{line: 2720, col: 9, offset: 89908}, val: "'''", ignoreCase: false, want: "\"'''\"", }, &litMatcher{ - pos: position{line: 2721, col: 11, offset: 89928}, + pos: position{line: 2721, col: 11, offset: 89944}, val: "***", ignoreCase: false, want: "\"***\"", }, &litMatcher{ - pos: position{line: 2721, col: 19, offset: 89936}, + pos: position{line: 2721, col: 19, offset: 89952}, val: "* * *", ignoreCase: false, want: "\"* * *\"", }, &litMatcher{ - pos: position{line: 2721, col: 29, offset: 89946}, + pos: position{line: 2721, col: 29, offset: 89962}, val: "---", ignoreCase: false, want: "\"---\"", }, &litMatcher{ - pos: position{line: 2721, col: 37, offset: 89954}, + pos: position{line: 2721, col: 37, offset: 89970}, val: "- - -", ignoreCase: false, want: "\"- - -\"", }, &litMatcher{ - pos: position{line: 2721, col: 47, offset: 89964}, + pos: position{line: 2721, col: 47, offset: 89980}, val: "___", ignoreCase: false, want: "\"___\"", }, &litMatcher{ - pos: position{line: 2721, col: 55, offset: 89972}, + pos: position{line: 2721, col: 55, offset: 89988}, val: "_ _ _", ignoreCase: false, want: "\"_ _ _\"", @@ -37023,12 +37023,12 @@ var g = &grammar{ }, }, &zeroOrMoreExpr{ - pos: position{line: 2722, col: 11, offset: 90030}, + pos: position{line: 2722, col: 11, offset: 90046}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1250, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37037,28 +37037,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1253, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37067,36 +37067,36 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1261, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37105,9 +37105,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37120,24 +37120,24 @@ var g = &grammar{ name: "ImageBlock", }, &actionExpr{ - pos: position{line: 2617, col: 5, offset: 87011}, + pos: position{line: 2617, col: 5, offset: 87027}, run: (*parser).callonListElementContinuationElement1269, expr: &seqExpr{ - pos: position{line: 2617, col: 5, offset: 87011}, + pos: position{line: 2617, col: 5, offset: 87027}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1273, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37146,28 +37146,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1276, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37176,48 +37176,48 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, &labeledExpr{ - pos: position{line: 2618, col: 5, offset: 87035}, + pos: position{line: 2618, col: 5, offset: 87051}, label: "header", expr: &zeroOrOneExpr{ - pos: position{line: 2618, col: 12, offset: 87042}, + pos: position{line: 2618, col: 12, offset: 87058}, expr: &actionExpr{ - pos: position{line: 2633, col: 5, offset: 87355}, + pos: position{line: 2633, col: 5, offset: 87371}, run: (*parser).callonListElementContinuationElement1285, expr: &seqExpr{ - pos: position{line: 2633, col: 5, offset: 87355}, + pos: position{line: 2633, col: 5, offset: 87371}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2633, col: 5, offset: 87355}, + pos: position{line: 2633, col: 5, offset: 87371}, label: "cells", expr: &oneOrMoreExpr{ - pos: position{line: 2633, col: 11, offset: 87361}, + pos: position{line: 2633, col: 11, offset: 87377}, expr: &actionExpr{ - pos: position{line: 2639, col: 5, offset: 87478}, + pos: position{line: 2639, col: 5, offset: 87494}, run: (*parser).callonListElementContinuationElement1289, expr: &seqExpr{ - pos: position{line: 2639, col: 5, offset: 87478}, + pos: position{line: 2639, col: 5, offset: 87494}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2639, col: 5, offset: 87478}, + pos: position{line: 2639, col: 5, offset: 87494}, val: "|", ignoreCase: false, want: "\"|\"", }, &zeroOrMoreExpr{ - pos: position{line: 2639, col: 9, offset: 87482}, + pos: position{line: 2639, col: 9, offset: 87498}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1293, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37226,23 +37226,23 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2640, col: 5, offset: 87494}, + pos: position{line: 2640, col: 5, offset: 87510}, label: "content", expr: &zeroOrOneExpr{ - pos: position{line: 2640, col: 14, offset: 87503}, + pos: position{line: 2640, col: 14, offset: 87519}, expr: &actionExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, run: (*parser).callonListElementContinuationElement1297, expr: &labeledExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, label: "content", expr: &actionExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, run: (*parser).callonListElementContinuationElement1299, expr: &oneOrMoreExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, expr: &charClassMatcher{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, val: "[^\\r\\n|]", chars: []rune{'\r', '\n', '|'}, ignoreCase: false, @@ -37260,28 +37260,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1303, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37290,15 +37290,15 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, &oneOrMoreExpr{ - pos: position{line: 2634, col: 5, offset: 87383}, + pos: position{line: 2634, col: 5, offset: 87399}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonListElementContinuationElement1311, @@ -37308,19 +37308,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1317, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37329,28 +37329,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1320, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37359,9 +37359,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37376,40 +37376,40 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2619, col: 5, offset: 87061}, + pos: position{line: 2619, col: 5, offset: 87077}, label: "rows", expr: &zeroOrMoreExpr{ - pos: position{line: 2619, col: 10, offset: 87066}, + pos: position{line: 2619, col: 10, offset: 87082}, expr: &choiceExpr{ - pos: position{line: 2644, col: 13, offset: 87600}, + pos: position{line: 2644, col: 13, offset: 87616}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2654, col: 5, offset: 87819}, + pos: position{line: 2654, col: 5, offset: 87835}, run: (*parser).callonListElementContinuationElement1330, expr: &seqExpr{ - pos: position{line: 2654, col: 5, offset: 87819}, + pos: position{line: 2654, col: 5, offset: 87835}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2654, col: 5, offset: 87819}, + pos: position{line: 2654, col: 5, offset: 87835}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1337, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37418,28 +37418,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1340, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37448,9 +37448,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37458,55 +37458,55 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, }, &labeledExpr{ - pos: position{line: 2655, col: 5, offset: 87842}, + pos: position{line: 2655, col: 5, offset: 87858}, label: "cells", expr: &oneOrMoreExpr{ - pos: position{line: 2655, col: 11, offset: 87848}, + pos: position{line: 2655, col: 11, offset: 87864}, expr: &actionExpr{ - pos: position{line: 2655, col: 12, offset: 87849}, + pos: position{line: 2655, col: 12, offset: 87865}, run: (*parser).callonListElementContinuationElement1351, expr: &seqExpr{ - pos: position{line: 2655, col: 12, offset: 87849}, + pos: position{line: 2655, col: 12, offset: 87865}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2655, col: 12, offset: 87849}, + pos: position{line: 2655, col: 12, offset: 87865}, label: "cell", expr: &actionExpr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, run: (*parser).callonListElementContinuationElement1354, expr: &seqExpr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1361, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37515,28 +37515,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1364, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37545,9 +37545,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37555,16 +37555,16 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, }, ¬Expr{ - pos: position{line: 2665, col: 5, offset: 88113}, + pos: position{line: 2665, col: 5, offset: 88129}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonListElementContinuationElement1374, @@ -37574,19 +37574,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1380, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37595,28 +37595,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1383, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37625,9 +37625,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37637,18 +37637,18 @@ var g = &grammar{ }, }, &litMatcher{ - pos: position{line: 2666, col: 5, offset: 88128}, + pos: position{line: 2666, col: 5, offset: 88144}, val: "|", ignoreCase: false, want: "\"|\"", }, &zeroOrMoreExpr{ - pos: position{line: 2666, col: 9, offset: 88132}, + pos: position{line: 2666, col: 9, offset: 88148}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1392, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37657,23 +37657,23 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2666, col: 16, offset: 88139}, + pos: position{line: 2666, col: 16, offset: 88155}, label: "content", expr: &zeroOrOneExpr{ - pos: position{line: 2666, col: 25, offset: 88148}, + pos: position{line: 2666, col: 25, offset: 88164}, expr: &actionExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, run: (*parser).callonListElementContinuationElement1396, expr: &labeledExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, label: "content", expr: &actionExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, run: (*parser).callonListElementContinuationElement1398, expr: &oneOrMoreExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, expr: &charClassMatcher{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, val: "[^\\r\\n|]", chars: []rune{'\r', '\n', '|'}, ignoreCase: false, @@ -37690,28 +37690,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1402, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37720,9 +37720,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37733,10 +37733,10 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2658, col: 6, offset: 87911}, + pos: position{line: 2658, col: 6, offset: 87927}, alternatives: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2658, col: 6, offset: 87911}, + pos: position{line: 2658, col: 6, offset: 87927}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonListElementContinuationElement1411, @@ -37746,19 +37746,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1417, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37767,28 +37767,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1420, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37797,9 +37797,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37809,26 +37809,26 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2658, col: 19, offset: 87924}, + pos: position{line: 2658, col: 19, offset: 87940}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1432, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37837,28 +37837,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1435, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37867,9 +37867,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37877,9 +37877,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37891,32 +37891,32 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2647, col: 5, offset: 87667}, + pos: position{line: 2647, col: 5, offset: 87683}, run: (*parser).callonListElementContinuationElement1444, expr: &seqExpr{ - pos: position{line: 2647, col: 5, offset: 87667}, + pos: position{line: 2647, col: 5, offset: 87683}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2647, col: 5, offset: 87667}, + pos: position{line: 2647, col: 5, offset: 87683}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1451, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -37925,28 +37925,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1454, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -37955,9 +37955,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -37965,46 +37965,46 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, }, &labeledExpr{ - pos: position{line: 2648, col: 5, offset: 87690}, + pos: position{line: 2648, col: 5, offset: 87706}, label: "cells", expr: &oneOrMoreExpr{ - pos: position{line: 2648, col: 11, offset: 87696}, + pos: position{line: 2648, col: 11, offset: 87712}, expr: &actionExpr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, run: (*parser).callonListElementContinuationElement1465, expr: &seqExpr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2664, col: 5, offset: 88090}, + pos: position{line: 2664, col: 5, offset: 88106}, expr: &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1472, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -38013,28 +38013,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1475, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38043,9 +38043,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38053,16 +38053,16 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, }, ¬Expr{ - pos: position{line: 2665, col: 5, offset: 88113}, + pos: position{line: 2665, col: 5, offset: 88129}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonListElementContinuationElement1485, @@ -38072,19 +38072,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1491, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -38093,28 +38093,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1494, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38123,9 +38123,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38135,18 +38135,18 @@ var g = &grammar{ }, }, &litMatcher{ - pos: position{line: 2666, col: 5, offset: 88128}, + pos: position{line: 2666, col: 5, offset: 88144}, val: "|", ignoreCase: false, want: "\"|\"", }, &zeroOrMoreExpr{ - pos: position{line: 2666, col: 9, offset: 88132}, + pos: position{line: 2666, col: 9, offset: 88148}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1503, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -38155,23 +38155,23 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2666, col: 16, offset: 88139}, + pos: position{line: 2666, col: 16, offset: 88155}, label: "content", expr: &zeroOrOneExpr{ - pos: position{line: 2666, col: 25, offset: 88148}, + pos: position{line: 2666, col: 25, offset: 88164}, expr: &actionExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, run: (*parser).callonListElementContinuationElement1507, expr: &labeledExpr{ - pos: position{line: 2672, col: 5, offset: 88291}, + pos: position{line: 2672, col: 5, offset: 88307}, label: "content", expr: &actionExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, run: (*parser).callonListElementContinuationElement1509, expr: &oneOrMoreExpr{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, expr: &charClassMatcher{ - pos: position{line: 2672, col: 14, offset: 88300}, + pos: position{line: 2672, col: 14, offset: 88316}, val: "[^\\r\\n|]", chars: []rune{'\r', '\n', '|'}, ignoreCase: false, @@ -38189,28 +38189,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1513, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38219,15 +38219,15 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, }, &zeroOrMoreExpr{ - pos: position{line: 2649, col: 5, offset: 87717}, + pos: position{line: 2649, col: 5, offset: 87733}, expr: &actionExpr{ pos: position{line: 689, col: 14, offset: 22046}, run: (*parser).callonListElementContinuationElement1521, @@ -38237,19 +38237,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1527, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -38258,28 +38258,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1530, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38288,9 +38288,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38307,24 +38307,24 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2629, col: 22, offset: 87268}, + pos: position{line: 2629, col: 22, offset: 87284}, alternatives: []interface{}{ &seqExpr{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2625, col: 19, offset: 87188}, + pos: position{line: 2625, col: 19, offset: 87204}, val: "|===", ignoreCase: false, want: "\"|===\"", }, &zeroOrMoreExpr{ - pos: position{line: 2625, col: 26, offset: 87195}, + pos: position{line: 2625, col: 26, offset: 87211}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1541, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -38333,28 +38333,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1544, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38363,9 +38363,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38373,9 +38373,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38384,36 +38384,36 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonListElementContinuationElement1553, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonListElementContinuationElement1559, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -38423,28 +38423,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1563, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38453,9 +38453,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38566,28 +38566,28 @@ var g = &grammar{ run: (*parser).callonListElementContinuationElement1592, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1594, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38596,9 +38596,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38632,10 +38632,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonListElementContinuationElement1609, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -38644,25 +38644,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1611, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38680,36 +38680,36 @@ var g = &grammar{ pos: position{line: 1659, col: 15, offset: 54133}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonListElementContinuationElement1618, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonListElementContinuationElement1624, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -38719,28 +38719,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1628, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38749,9 +38749,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38788,28 +38788,28 @@ var g = &grammar{ run: (*parser).callonListElementContinuationElement1641, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1643, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38818,9 +38818,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38864,12 +38864,12 @@ var g = &grammar{ pos: position{line: 1685, col: 14, offset: 54953}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonListElementContinuationElement1658, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -38896,28 +38896,28 @@ var g = &grammar{ run: (*parser).callonListElementContinuationElement1663, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1665, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -38926,9 +38926,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -38946,36 +38946,36 @@ var g = &grammar{ pos: position{line: 1679, col: 17, offset: 54712}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonListElementContinuationElement1675, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonListElementContinuationElement1681, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -38985,28 +38985,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1685, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -39015,9 +39015,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -39054,28 +39054,28 @@ var g = &grammar{ run: (*parser).callonListElementContinuationElement1698, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1700, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -39084,9 +39084,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -39126,28 +39126,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonListElementContinuationElement1714, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -39156,9 +39156,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -39219,10 +39219,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1588, col: 66, offset: 51748}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonCallout11, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -39236,25 +39236,25 @@ var g = &grammar{ pos: position{line: 1588, col: 75, offset: 51757}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonCallout15, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -39263,9 +39263,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &ruleRefExpr{ @@ -39291,7 +39291,7 @@ var g = &grammar{ &andExpr{ pos: position{line: 1615, col: 5, offset: 52650}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -39312,10 +39312,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1443, col: 5, offset: 46853}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonShortcutParagraph10, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -39482,12 +39482,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonShortcutParagraph44, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -39513,10 +39513,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1493, col: 5, offset: 48815}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonShortcutParagraph52, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -39578,12 +39578,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonShortcutParagraph66, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -39689,28 +39689,28 @@ var g = &grammar{ run: (*parser).callonShortcutParagraph89, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonShortcutParagraph91, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -39719,9 +39719,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -39748,9 +39748,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1628, col: 9, offset: 53269}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -39765,19 +39765,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonShortcutParagraph113, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -39786,28 +39786,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonShortcutParagraph116, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -39816,9 +39816,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -39848,10 +39848,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonShortcutParagraph129, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -39860,25 +39860,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonShortcutParagraph131, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -39896,36 +39896,36 @@ var g = &grammar{ pos: position{line: 1632, col: 15, offset: 53372}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonShortcutParagraph138, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonShortcutParagraph144, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -39935,28 +39935,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonShortcutParagraph148, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -39965,9 +39965,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -40004,28 +40004,28 @@ var g = &grammar{ run: (*parser).callonShortcutParagraph161, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonShortcutParagraph163, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -40034,9 +40034,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -40097,28 +40097,28 @@ var g = &grammar{ run: (*parser).callonParagraph10, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonParagraph12, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -40127,9 +40127,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -40152,9 +40152,9 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1642, col: 9, offset: 53642}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -40169,19 +40169,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 689, col: 14, offset: 22046}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &zeroOrMoreExpr{ pos: position{line: 689, col: 19, offset: 22051}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonParagraph33, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -40190,28 +40190,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonParagraph36, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -40220,9 +40220,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -40252,10 +40252,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1395, col: 38, offset: 45383}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonParagraph49, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -40264,25 +40264,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonParagraph51, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -40300,36 +40300,36 @@ var g = &grammar{ pos: position{line: 1646, col: 15, offset: 53744}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, run: (*parser).callonParagraph58, expr: &seqExpr{ - pos: position{line: 2567, col: 22, offset: 85455}, + pos: position{line: 2567, col: 22, offset: 85471}, exprs: []interface{}{ &litMatcher{ - pos: position{line: 2572, col: 31, offset: 85676}, + pos: position{line: 2572, col: 31, offset: 85692}, val: "//", ignoreCase: false, want: "\"//\"", }, ¬Expr{ - pos: position{line: 2572, col: 36, offset: 85681}, + pos: position{line: 2572, col: 36, offset: 85697}, expr: &litMatcher{ - pos: position{line: 2572, col: 37, offset: 85682}, + pos: position{line: 2572, col: 37, offset: 85698}, val: "//", ignoreCase: false, want: "\"//\"", }, }, &labeledExpr{ - pos: position{line: 2567, col: 49, offset: 85482}, + pos: position{line: 2567, col: 49, offset: 85498}, label: "content", expr: &actionExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, run: (*parser).callonParagraph64, expr: &zeroOrMoreExpr{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, expr: &charClassMatcher{ - pos: position{line: 2574, col: 29, offset: 85717}, + pos: position{line: 2574, col: 29, offset: 85733}, val: "[^\\r\\n]", chars: []rune{'\r', '\n'}, ignoreCase: false, @@ -40339,28 +40339,28 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonParagraph68, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -40369,9 +40369,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -40408,28 +40408,28 @@ var g = &grammar{ run: (*parser).callonParagraph81, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonParagraph83, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -40438,9 +40438,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -40732,10 +40732,10 @@ var g = &grammar{ pos: position{line: 1758, col: 21, offset: 57260}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuoteBoldTextElement13, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -40755,12 +40755,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonDoubleQuoteBoldTextElement16, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -40772,25 +40772,25 @@ var g = &grammar{ pos: position{line: 1781, col: 11, offset: 57943}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuoteBoldTextElement20, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -40801,25 +40801,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1781, col: 19, offset: 57951}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuoteBoldTextElement26, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -41134,23 +41134,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuoteBoldTextElement91, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuoteBoldTextElement93, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonDoubleQuoteBoldTextElement96, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -41171,12 +41171,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuoteBoldTextElement102, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -41188,10 +41188,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuoteBoldTextElement106, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -41334,12 +41334,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuoteBoldTextElement134, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -41361,10 +41361,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonDoubleQuoteBoldTextElement138, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -41378,63 +41378,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonDoubleQuoteBoldTextElement140, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonDoubleQuoteBoldTextElement142, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonDoubleQuoteBoldTextElement144, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonDoubleQuoteBoldTextElement146, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonDoubleQuoteBoldTextElement148, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonDoubleQuoteBoldTextElement150, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -41442,15 +41442,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -41527,12 +41527,12 @@ var g = &grammar{ want: "\"**\"", }, &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonDoubleQuoteBoldTextElement170, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -41653,19 +41653,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1826, col: 5, offset: 59441}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, ¬Expr{ pos: position{line: 1826, col: 10, offset: 59446}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteBoldTextElements7, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -41722,10 +41722,10 @@ var g = &grammar{ pos: position{line: 1758, col: 21, offset: 57260}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteBoldTextElement8, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -41745,12 +41745,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonSingleQuoteBoldTextElement11, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -41762,25 +41762,25 @@ var g = &grammar{ pos: position{line: 1837, col: 7, offset: 59737}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuoteBoldTextElement15, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -41791,25 +41791,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1837, col: 15, offset: 59745}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuoteBoldTextElement21, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -42124,23 +42124,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuoteBoldTextElement86, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuoteBoldTextElement88, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonSingleQuoteBoldTextElement91, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -42161,12 +42161,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuoteBoldTextElement97, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -42178,10 +42178,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteBoldTextElement101, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -42324,12 +42324,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuoteBoldTextElement129, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -42351,10 +42351,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonSingleQuoteBoldTextElement133, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -42368,63 +42368,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonSingleQuoteBoldTextElement135, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonSingleQuoteBoldTextElement137, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonSingleQuoteBoldTextElement139, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonSingleQuoteBoldTextElement141, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonSingleQuoteBoldTextElement143, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonSingleQuoteBoldTextElement145, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -42432,15 +42432,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -42517,12 +42517,12 @@ var g = &grammar{ want: "\"*\"", }, &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonSingleQuoteBoldTextElement165, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -42860,10 +42860,10 @@ var g = &grammar{ pos: position{line: 1883, col: 17, offset: 61719}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuoteItalicTextElement13, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -42883,12 +42883,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonDoubleQuoteItalicTextElement16, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -42900,25 +42900,25 @@ var g = &grammar{ pos: position{line: 1906, col: 11, offset: 62476}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuoteItalicTextElement20, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -42929,25 +42929,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1906, col: 19, offset: 62484}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuoteItalicTextElement26, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -43262,23 +43262,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuoteItalicTextElement91, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuoteItalicTextElement93, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonDoubleQuoteItalicTextElement96, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -43299,12 +43299,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuoteItalicTextElement102, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -43316,10 +43316,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuoteItalicTextElement106, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -43462,12 +43462,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuoteItalicTextElement134, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -43489,10 +43489,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonDoubleQuoteItalicTextElement138, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -43506,63 +43506,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonDoubleQuoteItalicTextElement140, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonDoubleQuoteItalicTextElement142, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonDoubleQuoteItalicTextElement144, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonDoubleQuoteItalicTextElement146, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonDoubleQuoteItalicTextElement148, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonDoubleQuoteItalicTextElement150, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -43570,15 +43570,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -43655,12 +43655,12 @@ var g = &grammar{ want: "\"__\"", }, &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonDoubleQuoteItalicTextElement170, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -43781,19 +43781,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1950, col: 5, offset: 63976}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, ¬Expr{ pos: position{line: 1950, col: 10, offset: 63981}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteItalicTextElements7, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -43849,10 +43849,10 @@ var g = &grammar{ pos: position{line: 1883, col: 17, offset: 61719}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteItalicTextElement8, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -43872,12 +43872,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonSingleQuoteItalicTextElement11, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -43889,25 +43889,25 @@ var g = &grammar{ pos: position{line: 1961, col: 7, offset: 64277}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuoteItalicTextElement15, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -43918,25 +43918,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1961, col: 15, offset: 64285}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuoteItalicTextElement21, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -44251,23 +44251,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuoteItalicTextElement86, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuoteItalicTextElement88, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonSingleQuoteItalicTextElement91, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -44288,12 +44288,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuoteItalicTextElement97, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -44305,10 +44305,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteItalicTextElement101, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -44451,12 +44451,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuoteItalicTextElement129, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -44478,10 +44478,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonSingleQuoteItalicTextElement133, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -44495,63 +44495,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonSingleQuoteItalicTextElement135, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonSingleQuoteItalicTextElement137, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonSingleQuoteItalicTextElement139, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonSingleQuoteItalicTextElement141, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonSingleQuoteItalicTextElement143, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonSingleQuoteItalicTextElement145, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -44559,15 +44559,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -44644,12 +44644,12 @@ var g = &grammar{ want: "\"_\"", }, &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonSingleQuoteItalicTextElement165, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -44987,10 +44987,10 @@ var g = &grammar{ pos: position{line: 2006, col: 17, offset: 66307}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuoteMonospaceTextElement13, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -45010,12 +45010,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonDoubleQuoteMonospaceTextElement16, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -45027,25 +45027,25 @@ var g = &grammar{ pos: position{line: 2029, col: 11, offset: 67096}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuoteMonospaceTextElement20, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -45056,25 +45056,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 2029, col: 19, offset: 67104}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuoteMonospaceTextElement26, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -45389,23 +45389,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuoteMonospaceTextElement91, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuoteMonospaceTextElement93, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonDoubleQuoteMonospaceTextElement96, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -45426,12 +45426,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuoteMonospaceTextElement102, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -45443,10 +45443,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuoteMonospaceTextElement106, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -45589,12 +45589,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuoteMonospaceTextElement134, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -45616,10 +45616,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonDoubleQuoteMonospaceTextElement138, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -45633,63 +45633,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonDoubleQuoteMonospaceTextElement140, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonDoubleQuoteMonospaceTextElement142, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonDoubleQuoteMonospaceTextElement144, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonDoubleQuoteMonospaceTextElement146, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonDoubleQuoteMonospaceTextElement148, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonDoubleQuoteMonospaceTextElement150, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -45697,15 +45697,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -45720,7 +45720,7 @@ var g = &grammar{ name: "QuotedString", }, &litMatcher{ - pos: position{line: 2587, col: 18, offset: 86142}, + pos: position{line: 2587, col: 18, offset: 86158}, val: "`'", ignoreCase: false, want: "\"`'\"", @@ -45788,12 +45788,12 @@ var g = &grammar{ want: "\"``\"", }, &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonDoubleQuoteMonospaceTextElement171, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -45914,19 +45914,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 2077, col: 5, offset: 68816}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, ¬Expr{ pos: position{line: 2077, col: 10, offset: 68821}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteMonospaceTextElements7, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -45960,15 +45960,15 @@ var g = &grammar{ pos: position{line: 2086, col: 5, offset: 69090}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, run: (*parser).callonSingleQuoteMonospaceTextElement2, expr: &seqExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, expr: &charClassMatcher{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -45977,21 +45977,21 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2776, col: 15, offset: 91876}, + pos: position{line: 2776, col: 15, offset: 91892}, expr: &choiceExpr{ - pos: position{line: 2776, col: 17, offset: 91878}, + pos: position{line: 2776, col: 17, offset: 91894}, alternatives: []interface{}{ &charClassMatcher{ - pos: position{line: 2776, col: 17, offset: 91878}, + pos: position{line: 2776, col: 17, offset: 91894}, val: "[\\r\\n ,]]", chars: []rune{'\r', '\n', ' ', ',', ']'}, ignoreCase: false, inverted: false, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -46001,15 +46001,15 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, run: (*parser).callonSingleQuoteMonospaceTextElement11, expr: &seqExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, expr: &charClassMatcher{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -46018,21 +46018,21 @@ var g = &grammar{ }, }, &oneOrMoreExpr{ - pos: position{line: 2778, col: 19, offset: 91970}, + pos: position{line: 2778, col: 19, offset: 91986}, expr: &seqExpr{ - pos: position{line: 2778, col: 20, offset: 91971}, + pos: position{line: 2778, col: 20, offset: 91987}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2778, col: 20, offset: 91971}, + pos: position{line: 2778, col: 20, offset: 91987}, val: "[=*_`]", chars: []rune{'=', '*', '_', '`'}, ignoreCase: false, inverted: false, }, &oneOrMoreExpr{ - pos: position{line: 2778, col: 27, offset: 91978}, + pos: position{line: 2778, col: 27, offset: 91994}, expr: &charClassMatcher{ - pos: position{line: 2778, col: 27, offset: 91978}, + pos: position{line: 2778, col: 27, offset: 91994}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -46047,12 +46047,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonSingleQuoteMonospaceTextElement20, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -46064,25 +46064,25 @@ var g = &grammar{ pos: position{line: 2088, col: 7, offset: 69115}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuoteMonospaceTextElement24, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -46093,25 +46093,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 2088, col: 15, offset: 69123}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuoteMonospaceTextElement30, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -46426,23 +46426,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuoteMonospaceTextElement95, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuoteMonospaceTextElement97, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonSingleQuoteMonospaceTextElement100, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -46463,12 +46463,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuoteMonospaceTextElement106, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -46480,10 +46480,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteMonospaceTextElement110, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -46626,12 +46626,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuoteMonospaceTextElement138, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -46653,10 +46653,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonSingleQuoteMonospaceTextElement142, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -46670,63 +46670,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonSingleQuoteMonospaceTextElement144, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonSingleQuoteMonospaceTextElement146, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonSingleQuoteMonospaceTextElement148, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonSingleQuoteMonospaceTextElement150, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonSingleQuoteMonospaceTextElement152, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonSingleQuoteMonospaceTextElement154, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -46734,15 +46734,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -46761,7 +46761,7 @@ var g = &grammar{ name: "QuotedTextInSingleQuoteMonospaceText", }, &litMatcher{ - pos: position{line: 2587, col: 18, offset: 86142}, + pos: position{line: 2587, col: 18, offset: 86158}, val: "`'", ignoreCase: false, want: "\"`'\"", @@ -46828,12 +46828,12 @@ var g = &grammar{ want: "\"`\"", }, &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonSingleQuoteMonospaceTextElement176, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -47174,10 +47174,10 @@ var g = &grammar{ pos: position{line: 2135, col: 21, offset: 71195}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuoteMarkedTextElement13, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -47197,12 +47197,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonDoubleQuoteMarkedTextElement16, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -47214,25 +47214,25 @@ var g = &grammar{ pos: position{line: 2158, col: 11, offset: 71944}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuoteMarkedTextElement20, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -47243,25 +47243,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 2158, col: 19, offset: 71952}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuoteMarkedTextElement26, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -47576,23 +47576,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuoteMarkedTextElement91, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuoteMarkedTextElement93, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonDoubleQuoteMarkedTextElement96, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -47613,12 +47613,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuoteMarkedTextElement102, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -47630,10 +47630,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuoteMarkedTextElement106, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -47776,12 +47776,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuoteMarkedTextElement134, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -47803,10 +47803,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonDoubleQuoteMarkedTextElement138, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -47820,63 +47820,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonDoubleQuoteMarkedTextElement140, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonDoubleQuoteMarkedTextElement142, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonDoubleQuoteMarkedTextElement144, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonDoubleQuoteMarkedTextElement146, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonDoubleQuoteMarkedTextElement148, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonDoubleQuoteMarkedTextElement150, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -47884,15 +47884,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -47969,12 +47969,12 @@ var g = &grammar{ want: "\"##\"", }, &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonDoubleQuoteMarkedTextElement170, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -48095,19 +48095,19 @@ var g = &grammar{ ¬Expr{ pos: position{line: 2204, col: 5, offset: 73479}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, ¬Expr{ pos: position{line: 2204, col: 10, offset: 73484}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteMarkedTextElements7, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -48164,10 +48164,10 @@ var g = &grammar{ pos: position{line: 2135, col: 21, offset: 71195}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteMarkedTextElement8, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -48187,12 +48187,12 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonSingleQuoteMarkedTextElement11, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -48204,25 +48204,25 @@ var g = &grammar{ pos: position{line: 2215, col: 7, offset: 73781}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuoteMarkedTextElement15, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -48233,25 +48233,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 2215, col: 15, offset: 73789}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuoteMarkedTextElement21, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -48566,23 +48566,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuoteMarkedTextElement86, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuoteMarkedTextElement88, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonSingleQuoteMarkedTextElement91, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -48603,12 +48603,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuoteMarkedTextElement97, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -48620,10 +48620,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuoteMarkedTextElement101, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -48766,12 +48766,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuoteMarkedTextElement129, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -48793,10 +48793,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonSingleQuoteMarkedTextElement133, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -48810,63 +48810,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonSingleQuoteMarkedTextElement135, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonSingleQuoteMarkedTextElement137, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonSingleQuoteMarkedTextElement139, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonSingleQuoteMarkedTextElement141, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonSingleQuoteMarkedTextElement143, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonSingleQuoteMarkedTextElement145, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -48874,15 +48874,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -48959,12 +48959,12 @@ var g = &grammar{ want: "\"#\"", }, &actionExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, run: (*parser).callonSingleQuoteMarkedTextElement165, expr: &oneOrMoreExpr{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, expr: &charClassMatcher{ - pos: position{line: 2768, col: 14, offset: 91485}, + pos: position{line: 2768, col: 14, offset: 91501}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -49540,10 +49540,10 @@ var g = &grammar{ pos: position{line: 2328, col: 33, offset: 77960}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuotedStringElement13, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -49566,10 +49566,10 @@ var g = &grammar{ pos: position{line: 2337, col: 11, offset: 78240}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuotedStringElement17, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -49591,25 +49591,25 @@ var g = &grammar{ pos: position{line: 2338, col: 11, offset: 78278}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuotedStringElement22, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -49620,25 +49620,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 2338, col: 19, offset: 78286}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuotedStringElement28, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -49953,23 +49953,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuotedStringElement93, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSingleQuotedStringElement95, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonSingleQuotedStringElement98, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -49990,12 +49990,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuotedStringElement104, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -50007,10 +50007,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuotedStringElement108, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -50153,12 +50153,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSingleQuotedStringElement136, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -50180,10 +50180,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonSingleQuotedStringElement140, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -50218,10 +50218,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1103, col: 9, offset: 34287}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSingleQuotedStringElement148, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -50232,28 +50232,28 @@ var g = &grammar{ &andExpr{ pos: position{line: 1103, col: 16, offset: 34294}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSingleQuotedStringElement152, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -50262,9 +50262,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -50285,63 +50285,63 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonSingleQuotedStringElement161, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonSingleQuotedStringElement163, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonSingleQuotedStringElement165, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonSingleQuotedStringElement167, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonSingleQuotedStringElement169, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonSingleQuotedStringElement171, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -50349,15 +50349,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -50601,10 +50601,10 @@ var g = &grammar{ pos: position{line: 2328, col: 33, offset: 77960}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuotedStringElement13, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -50627,10 +50627,10 @@ var g = &grammar{ pos: position{line: 2381, col: 11, offset: 79719}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuotedStringElement17, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -50652,25 +50652,25 @@ var g = &grammar{ pos: position{line: 2382, col: 11, offset: 79757}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuotedStringElement22, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -50681,25 +50681,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 2382, col: 19, offset: 79765}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuotedStringElement28, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -50732,10 +50732,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1103, col: 9, offset: 34287}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuotedStringElement39, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -50746,28 +50746,28 @@ var g = &grammar{ &andExpr{ pos: position{line: 1103, col: 16, offset: 34294}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonDoubleQuotedStringElement43, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -50776,9 +50776,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -51102,23 +51102,23 @@ var g = &grammar{ name: "InlineMacro", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuotedStringElement112, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonDoubleQuotedStringElement114, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonDoubleQuotedStringElement117, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -51139,12 +51139,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuotedStringElement123, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -51156,10 +51156,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonDoubleQuotedStringElement127, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -51302,12 +51302,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonDoubleQuotedStringElement155, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -51329,10 +51329,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonDoubleQuotedStringElement159, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -51477,49 +51477,49 @@ var g = &grammar{ }, { name: "Substitutions", - pos: position{line: 2444, col: 1, offset: 81845}, + pos: position{line: 2444, col: 1, offset: 81861}, expr: &actionExpr{ - pos: position{line: 2445, col: 5, offset: 81899}, + pos: position{line: 2445, col: 5, offset: 81915}, run: (*parser).callonSubstitutions1, expr: &seqExpr{ - pos: position{line: 2445, col: 5, offset: 81899}, + pos: position{line: 2445, col: 5, offset: 81915}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2445, col: 5, offset: 81899}, + pos: position{line: 2445, col: 5, offset: 81915}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2445, col: 14, offset: 81908}, + pos: position{line: 2445, col: 14, offset: 81924}, expr: &actionExpr{ - pos: position{line: 2446, col: 9, offset: 81918}, + pos: position{line: 2446, col: 9, offset: 81934}, run: (*parser).callonSubstitutions5, expr: &seqExpr{ - pos: position{line: 2446, col: 9, offset: 81918}, + pos: position{line: 2446, col: 9, offset: 81934}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2446, col: 9, offset: 81918}, + pos: position{line: 2446, col: 9, offset: 81934}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &labeledExpr{ - pos: position{line: 2447, col: 9, offset: 81931}, + pos: position{line: 2447, col: 9, offset: 81947}, label: "element", expr: &choiceExpr{ - pos: position{line: 2448, col: 13, offset: 81953}, + pos: position{line: 2448, col: 13, offset: 81969}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2783, col: 5, offset: 92084}, + pos: position{line: 2783, col: 5, offset: 92100}, run: (*parser).callonSubstitutions12, expr: &seqExpr{ - pos: position{line: 2783, col: 5, offset: 92084}, + pos: position{line: 2783, col: 5, offset: 92100}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2783, col: 5, offset: 92084}, + pos: position{line: 2783, col: 5, offset: 92100}, expr: &charClassMatcher{ - pos: position{line: 2783, col: 5, offset: 92084}, + pos: position{line: 2783, col: 5, offset: 92100}, val: "[,;!?0-9\\pL]", chars: []rune{',', ';', '!', '?'}, ranges: []rune{'0', '9'}, @@ -51529,13 +51529,13 @@ var g = &grammar{ }, }, &choiceExpr{ - pos: position{line: 2784, col: 6, offset: 92134}, + pos: position{line: 2784, col: 6, offset: 92150}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSubstitutions17, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -51543,37 +51543,37 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2784, col: 14, offset: 92142}, + pos: position{line: 2784, col: 14, offset: 92158}, expr: &choiceExpr{ - pos: position{line: 2784, col: 16, offset: 92144}, + pos: position{line: 2784, col: 16, offset: 92160}, alternatives: []interface{}{ &charClassMatcher{ - pos: position{line: 2784, col: 16, offset: 92144}, + pos: position{line: 2784, col: 16, offset: 92160}, val: "[.�]", chars: []rune{'.', '�'}, ignoreCase: false, inverted: false, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSubstitutions22, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -51582,9 +51582,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -51596,10 +51596,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSubstitutions29, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -51607,25 +51607,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSubstitutions31, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -51691,10 +51691,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1103, col: 9, offset: 34287}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSubstitutions49, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -51705,28 +51705,28 @@ var g = &grammar{ &andExpr{ pos: position{line: 1103, col: 16, offset: 34294}, expr: &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSubstitutions53, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -51735,9 +51735,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -51747,19 +51747,19 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2789, col: 16, offset: 92265}, + pos: position{line: 2789, col: 16, offset: 92281}, run: (*parser).callonSubstitutions60, expr: &seqExpr{ - pos: position{line: 2789, col: 16, offset: 92265}, + pos: position{line: 2789, col: 16, offset: 92281}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2789, col: 16, offset: 92265}, + pos: position{line: 2789, col: 16, offset: 92281}, label: "char", expr: &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonSubstitutions63, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -51768,15 +51768,15 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2789, col: 44, offset: 92293}, + pos: position{line: 2789, col: 44, offset: 92309}, expr: &choiceExpr{ - pos: position{line: 2789, col: 46, offset: 92295}, + pos: position{line: 2789, col: 46, offset: 92311}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSubstitutions67, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -51784,25 +51784,25 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonSubstitutions69, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -51811,9 +51811,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -51823,39 +51823,39 @@ var g = &grammar{ }, }, &ruleRefExpr{ - pos: position{line: 2454, col: 15, offset: 82192}, + pos: position{line: 2454, col: 15, offset: 82208}, name: "Quote", }, &ruleRefExpr{ - pos: position{line: 2455, col: 15, offset: 82212}, + pos: position{line: 2455, col: 15, offset: 82228}, name: "InlinePassthrough", }, &ruleRefExpr{ - pos: position{line: 2456, col: 15, offset: 82244}, + pos: position{line: 2456, col: 15, offset: 82260}, name: "InlineMacro", }, &ruleRefExpr{ - pos: position{line: 2457, col: 15, offset: 82333}, + pos: position{line: 2457, col: 15, offset: 82349}, name: "Callout", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSubstitutions80, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonSubstitutions82, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonSubstitutions85, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -51876,12 +51876,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSubstitutions91, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -51893,10 +51893,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonSubstitutions95, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -52039,12 +52039,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonSubstitutions123, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -52066,10 +52066,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonSubstitutions127, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -52382,79 +52382,79 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2539, col: 5, offset: 84591}, + pos: position{line: 2539, col: 5, offset: 84607}, run: (*parser).callonSubstitutions188, expr: &seqExpr{ - pos: position{line: 2539, col: 5, offset: 84591}, + pos: position{line: 2539, col: 5, offset: 84607}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2539, col: 5, offset: 84591}, + pos: position{line: 2539, col: 5, offset: 84607}, run: (*parser).callonSubstitutions190, }, &labeledExpr{ - pos: position{line: 2542, col: 5, offset: 84662}, + pos: position{line: 2542, col: 5, offset: 84678}, label: "element", expr: &choiceExpr{ - pos: position{line: 2581, col: 11, offset: 85969}, + pos: position{line: 2581, col: 11, offset: 85985}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonSubstitutions193, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonSubstitutions195, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonSubstitutions197, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonSubstitutions199, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonSubstitutions201, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonSubstitutions203, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -52462,15 +52462,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -52487,10 +52487,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2802, col: 12, offset: 92630}, + pos: position{line: 2802, col: 12, offset: 92646}, run: (*parser).callonSubstitutions209, expr: &anyMatcher{ - line: 2802, col: 12, offset: 92630, + line: 2802, col: 12, offset: 92646, }, }, }, @@ -52502,9 +52502,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -52513,28 +52513,28 @@ var g = &grammar{ }, { name: "HeaderGroup", - pos: position{line: 2470, col: 1, offset: 82767}, + pos: position{line: 2470, col: 1, offset: 82783}, expr: &actionExpr{ - pos: position{line: 2471, col: 5, offset: 82787}, + pos: position{line: 2471, col: 5, offset: 82803}, run: (*parser).callonHeaderGroup1, expr: &seqExpr{ - pos: position{line: 2471, col: 5, offset: 82787}, + pos: position{line: 2471, col: 5, offset: 82803}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2471, col: 5, offset: 82787}, + pos: position{line: 2471, col: 5, offset: 82803}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2471, col: 14, offset: 82796}, + pos: position{line: 2471, col: 14, offset: 82812}, expr: &ruleRefExpr{ - pos: position{line: 2471, col: 15, offset: 82797}, + pos: position{line: 2471, col: 15, offset: 82813}, name: "HeaderGroupElement", }, }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -52543,38 +52543,38 @@ var g = &grammar{ }, { name: "HeaderGroupElement", - pos: position{line: 2475, col: 1, offset: 82881}, + pos: position{line: 2475, col: 1, offset: 82897}, expr: &actionExpr{ - pos: position{line: 2476, col: 5, offset: 82907}, + pos: position{line: 2476, col: 5, offset: 82923}, run: (*parser).callonHeaderGroupElement1, expr: &seqExpr{ - pos: position{line: 2476, col: 5, offset: 82907}, + pos: position{line: 2476, col: 5, offset: 82923}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2476, col: 5, offset: 82907}, + pos: position{line: 2476, col: 5, offset: 82923}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &labeledExpr{ - pos: position{line: 2477, col: 5, offset: 82916}, + pos: position{line: 2477, col: 5, offset: 82932}, label: "element", expr: &choiceExpr{ - pos: position{line: 2478, col: 9, offset: 82934}, + pos: position{line: 2478, col: 9, offset: 82950}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, run: (*parser).callonHeaderGroupElement8, expr: &seqExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, expr: &charClassMatcher{ - pos: position{line: 2776, col: 5, offset: 91866}, + pos: position{line: 2776, col: 5, offset: 91882}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -52583,21 +52583,21 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2776, col: 15, offset: 91876}, + pos: position{line: 2776, col: 15, offset: 91892}, expr: &choiceExpr{ - pos: position{line: 2776, col: 17, offset: 91878}, + pos: position{line: 2776, col: 17, offset: 91894}, alternatives: []interface{}{ &charClassMatcher{ - pos: position{line: 2776, col: 17, offset: 91878}, + pos: position{line: 2776, col: 17, offset: 91894}, val: "[\\r\\n ,]]", chars: []rune{'\r', '\n', ' ', ',', ']'}, ignoreCase: false, inverted: false, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -52607,15 +52607,15 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, run: (*parser).callonHeaderGroupElement17, expr: &seqExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, expr: &charClassMatcher{ - pos: position{line: 2778, col: 9, offset: 91960}, + pos: position{line: 2778, col: 9, offset: 91976}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -52624,21 +52624,21 @@ var g = &grammar{ }, }, &oneOrMoreExpr{ - pos: position{line: 2778, col: 19, offset: 91970}, + pos: position{line: 2778, col: 19, offset: 91986}, expr: &seqExpr{ - pos: position{line: 2778, col: 20, offset: 91971}, + pos: position{line: 2778, col: 20, offset: 91987}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2778, col: 20, offset: 91971}, + pos: position{line: 2778, col: 20, offset: 91987}, val: "[=*_`]", chars: []rune{'=', '*', '_', '`'}, ignoreCase: false, inverted: false, }, &oneOrMoreExpr{ - pos: position{line: 2778, col: 27, offset: 91978}, + pos: position{line: 2778, col: 27, offset: 91994}, expr: &charClassMatcher{ - pos: position{line: 2778, col: 27, offset: 91978}, + pos: position{line: 2778, col: 27, offset: 91994}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -52653,18 +52653,18 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2479, col: 12, offset: 82950}, + pos: position{line: 2479, col: 12, offset: 82966}, run: (*parser).callonHeaderGroupElement26, expr: &seqExpr{ - pos: position{line: 2479, col: 12, offset: 82950}, + pos: position{line: 2479, col: 12, offset: 82966}, exprs: []interface{}{ &oneOrMoreExpr{ - pos: position{line: 2479, col: 12, offset: 82950}, + pos: position{line: 2479, col: 12, offset: 82966}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonHeaderGroupElement29, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -52673,7 +52673,7 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2479, col: 19, offset: 82957}, + pos: position{line: 2479, col: 19, offset: 82973}, label: "id", expr: &actionExpr{ pos: position{line: 420, col: 4, offset: 12803}, @@ -53080,12 +53080,12 @@ var g = &grammar{ }, }, &zeroOrMoreExpr{ - pos: position{line: 2479, col: 40, offset: 82978}, + pos: position{line: 2479, col: 40, offset: 82994}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonHeaderGroupElement114, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -53094,11 +53094,11 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2479, col: 47, offset: 82985}, + pos: position{line: 2479, col: 47, offset: 83001}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -53106,10 +53106,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonHeaderGroupElement119, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -53117,35 +53117,35 @@ var g = &grammar{ }, }, &ruleRefExpr{ - pos: position{line: 2481, col: 11, offset: 83058}, + pos: position{line: 2481, col: 11, offset: 83074}, name: "InlinePassthrough", }, &ruleRefExpr{ - pos: position{line: 2482, col: 11, offset: 83086}, + pos: position{line: 2482, col: 11, offset: 83102}, name: "Quote", }, &ruleRefExpr{ - pos: position{line: 2483, col: 11, offset: 83102}, + pos: position{line: 2483, col: 11, offset: 83118}, name: "Link", }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonHeaderGroupElement124, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonHeaderGroupElement126, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonHeaderGroupElement129, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -53166,12 +53166,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonHeaderGroupElement135, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -53183,10 +53183,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonHeaderGroupElement139, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -53329,12 +53329,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonHeaderGroupElement167, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -53356,10 +53356,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonHeaderGroupElement171, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -53373,7 +53373,7 @@ var g = &grammar{ }, }, &ruleRefExpr{ - pos: position{line: 2485, col: 11, offset: 83187}, + pos: position{line: 2485, col: 11, offset: 83203}, name: "InlineIcon", }, &actionExpr{ @@ -53715,79 +53715,79 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2539, col: 5, offset: 84591}, + pos: position{line: 2539, col: 5, offset: 84607}, run: (*parser).callonHeaderGroupElement241, expr: &seqExpr{ - pos: position{line: 2539, col: 5, offset: 84591}, + pos: position{line: 2539, col: 5, offset: 84607}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2539, col: 5, offset: 84591}, + pos: position{line: 2539, col: 5, offset: 84607}, run: (*parser).callonHeaderGroupElement243, }, &labeledExpr{ - pos: position{line: 2542, col: 5, offset: 84662}, + pos: position{line: 2542, col: 5, offset: 84678}, label: "element", expr: &choiceExpr{ - pos: position{line: 2581, col: 11, offset: 85969}, + pos: position{line: 2581, col: 11, offset: 85985}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, run: (*parser).callonHeaderGroupElement246, expr: &litMatcher{ - pos: position{line: 2583, col: 15, offset: 86063}, + pos: position{line: 2583, col: 15, offset: 86079}, val: "`'", ignoreCase: false, want: "\"`'\"", }, }, &actionExpr{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, run: (*parser).callonHeaderGroupElement248, expr: &litMatcher{ - pos: position{line: 2589, col: 14, offset: 86178}, + pos: position{line: 2589, col: 14, offset: 86194}, val: "(C)", ignoreCase: false, want: "\"(C)\"", }, }, &actionExpr{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, run: (*parser).callonHeaderGroupElement250, expr: &litMatcher{ - pos: position{line: 2593, col: 14, offset: 86254}, + pos: position{line: 2593, col: 14, offset: 86270}, val: "(TM)", ignoreCase: false, want: "\"(TM)\"", }, }, &actionExpr{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, run: (*parser).callonHeaderGroupElement252, expr: &litMatcher{ - pos: position{line: 2597, col: 15, offset: 86332}, + pos: position{line: 2597, col: 15, offset: 86348}, val: "(R)", ignoreCase: false, want: "\"(R)\"", }, }, &actionExpr{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, run: (*parser).callonHeaderGroupElement254, expr: &litMatcher{ - pos: position{line: 2601, col: 13, offset: 86407}, + pos: position{line: 2601, col: 13, offset: 86423}, val: "...", ignoreCase: false, want: "\"...\"", }, }, &actionExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, run: (*parser).callonHeaderGroupElement256, expr: &seqExpr{ - pos: position{line: 2609, col: 22, offset: 86713}, + pos: position{line: 2609, col: 22, offset: 86729}, exprs: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -53795,15 +53795,15 @@ var g = &grammar{ inverted: false, }, &litMatcher{ - pos: position{line: 2609, col: 31, offset: 86722}, + pos: position{line: 2609, col: 31, offset: 86738}, val: "'", ignoreCase: false, want: "\"'\"", }, &andExpr{ - pos: position{line: 2609, col: 35, offset: 86726}, + pos: position{line: 2609, col: 35, offset: 86742}, expr: &charClassMatcher{ - pos: position{line: 2609, col: 36, offset: 86727}, + pos: position{line: 2609, col: 36, offset: 86743}, val: "[\\pL]", classes: []*unicode.RangeTable{rangeTable("L")}, ignoreCase: false, @@ -53835,12 +53835,12 @@ var g = &grammar{ pos: position{line: 1171, col: 22, offset: 36323}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonHeaderGroupElement266, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -53859,14 +53859,14 @@ var g = &grammar{ }, }, &ruleRefExpr{ - pos: position{line: 2490, col: 11, offset: 83432}, + pos: position{line: 2490, col: 11, offset: 83448}, name: "InlineFootnote", }, &actionExpr{ - pos: position{line: 2802, col: 12, offset: 92630}, + pos: position{line: 2802, col: 12, offset: 92646}, run: (*parser).callonHeaderGroupElement271, expr: &anyMatcher{ - line: 2802, col: 12, offset: 92630, + line: 2802, col: 12, offset: 92646, }, }, }, @@ -53878,49 +53878,49 @@ var g = &grammar{ }, { name: "InlineMacro", - pos: position{line: 2495, col: 1, offset: 83511}, + pos: position{line: 2495, col: 1, offset: 83527}, expr: &actionExpr{ - pos: position{line: 2497, col: 5, offset: 83593}, + pos: position{line: 2497, col: 5, offset: 83609}, run: (*parser).callonInlineMacro1, expr: &seqExpr{ - pos: position{line: 2497, col: 5, offset: 83593}, + pos: position{line: 2497, col: 5, offset: 83609}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2497, col: 5, offset: 83593}, + pos: position{line: 2497, col: 5, offset: 83609}, run: (*parser).callonInlineMacro3, }, &labeledExpr{ - pos: position{line: 2500, col: 5, offset: 83658}, + pos: position{line: 2500, col: 5, offset: 83674}, label: "element", expr: &choiceExpr{ - pos: position{line: 2501, col: 9, offset: 83676}, + pos: position{line: 2501, col: 9, offset: 83692}, alternatives: []interface{}{ &ruleRefExpr{ - pos: position{line: 2501, col: 9, offset: 83676}, + pos: position{line: 2501, col: 9, offset: 83692}, name: "InlineIcon", }, &ruleRefExpr{ - pos: position{line: 2502, col: 11, offset: 83697}, + pos: position{line: 2502, col: 11, offset: 83713}, name: "InlineImage", }, &ruleRefExpr{ - pos: position{line: 2503, col: 11, offset: 83720}, + pos: position{line: 2503, col: 11, offset: 83736}, name: "Link", }, &ruleRefExpr{ - pos: position{line: 2504, col: 11, offset: 83736}, + pos: position{line: 2504, col: 11, offset: 83752}, name: "InlinePassthrough", }, &ruleRefExpr{ - pos: position{line: 2505, col: 11, offset: 83765}, + pos: position{line: 2505, col: 11, offset: 83781}, name: "InlineFootnote", }, &ruleRefExpr{ - pos: position{line: 2506, col: 11, offset: 83791}, + pos: position{line: 2506, col: 11, offset: 83807}, name: "CrossReference", }, &ruleRefExpr{ - pos: position{line: 2507, col: 11, offset: 83817}, + pos: position{line: 2507, col: 11, offset: 83833}, name: "InlineUserMacro", }, &actionExpr{ @@ -53939,12 +53939,12 @@ var g = &grammar{ pos: position{line: 1171, col: 22, offset: 36323}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonInlineMacro17, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -53986,7 +53986,7 @@ var g = &grammar{ pos: position{line: 1195, col: 31, offset: 37353}, alternatives: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -53994,10 +53994,10 @@ var g = &grammar{ inverted: false, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineMacro29, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54023,10 +54023,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1189, col: 12, offset: 37067}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineMacro36, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54043,10 +54043,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1189, col: 23, offset: 37078}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineMacro40, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54066,7 +54066,7 @@ var g = &grammar{ pos: position{line: 1195, col: 31, offset: 37353}, alternatives: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -54074,10 +54074,10 @@ var g = &grammar{ inverted: false, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineMacro47, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54108,10 +54108,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1190, col: 12, offset: 37159}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineMacro54, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54128,10 +54128,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 1190, col: 23, offset: 37170}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineMacro58, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54151,7 +54151,7 @@ var g = &grammar{ pos: position{line: 1195, col: 31, offset: 37353}, alternatives: []interface{}{ &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -54159,10 +54159,10 @@ var g = &grammar{ inverted: false, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlineMacro65, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54189,11 +54189,11 @@ var g = &grammar{ }, }, &ruleRefExpr{ - pos: position{line: 2510, col: 11, offset: 83896}, + pos: position{line: 2510, col: 11, offset: 83912}, name: "IndexTerm", }, &ruleRefExpr{ - pos: position{line: 2511, col: 11, offset: 83916}, + pos: position{line: 2511, col: 11, offset: 83932}, name: "InlineUserMacro", }, }, @@ -54205,22 +54205,22 @@ var g = &grammar{ }, { name: "InlinePassthrough", - pos: position{line: 2515, col: 1, offset: 83978}, + pos: position{line: 2515, col: 1, offset: 83994}, expr: &actionExpr{ - pos: position{line: 2517, col: 5, offset: 84066}, + pos: position{line: 2517, col: 5, offset: 84082}, run: (*parser).callonInlinePassthrough1, expr: &seqExpr{ - pos: position{line: 2517, col: 5, offset: 84066}, + pos: position{line: 2517, col: 5, offset: 84082}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2517, col: 5, offset: 84066}, + pos: position{line: 2517, col: 5, offset: 84082}, run: (*parser).callonInlinePassthrough3, }, &labeledExpr{ - pos: position{line: 2520, col: 5, offset: 84143}, + pos: position{line: 2520, col: 5, offset: 84159}, label: "element", expr: &choiceExpr{ - pos: position{line: 2521, col: 9, offset: 84161}, + pos: position{line: 2521, col: 9, offset: 84177}, alternatives: []interface{}{ &actionExpr{ pos: position{line: 1252, col: 26, offset: 40259}, @@ -54275,10 +54275,10 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1258, col: 12, offset: 40705}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlinePassthrough21, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54289,25 +54289,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1258, col: 19, offset: 40712}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonInlinePassthrough24, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -54344,7 +54344,7 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1252, col: 121, offset: 40354}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -54391,10 +54391,10 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1244, col: 64, offset: 39814}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlinePassthrough45, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54405,25 +54405,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1244, col: 71, offset: 39821}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonInlinePassthrough48, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -54446,12 +54446,12 @@ var g = &grammar{ pos: position{line: 1244, col: 86, offset: 39836}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, run: (*parser).callonInlinePassthrough58, expr: &oneOrMoreExpr{ - pos: position{line: 2854, col: 11, offset: 94162}, + pos: position{line: 2854, col: 11, offset: 94178}, expr: &charClassMatcher{ - pos: position{line: 2854, col: 12, offset: 94163}, + pos: position{line: 2854, col: 12, offset: 94179}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54480,25 +54480,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1244, col: 151, offset: 39901}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonInlinePassthrough65, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -54525,10 +54525,10 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1246, col: 12, offset: 40061}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonInlinePassthrough74, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -54539,25 +54539,25 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1246, col: 19, offset: 40068}, expr: &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonInlinePassthrough77, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -54593,7 +54593,7 @@ var g = &grammar{ ¬Expr{ pos: position{line: 1240, col: 121, offset: 39637}, expr: &charClassMatcher{ - pos: position{line: 2764, col: 13, offset: 91411}, + pos: position{line: 2764, col: 13, offset: 91427}, val: "[0-9\\pL]", ranges: []rune{'0', '9'}, classes: []*unicode.RangeTable{rangeTable("L")}, @@ -54605,7 +54605,7 @@ var g = &grammar{ }, }, &ruleRefExpr{ - pos: position{line: 2521, col: 57, offset: 84209}, + pos: position{line: 2521, col: 57, offset: 84225}, name: "PassthroughMacro", }, }, @@ -54617,29 +54617,29 @@ var g = &grammar{ }, { name: "Quote", - pos: position{line: 2526, col: 1, offset: 84269}, + pos: position{line: 2526, col: 1, offset: 84285}, expr: &actionExpr{ - pos: position{line: 2528, col: 5, offset: 84345}, + pos: position{line: 2528, col: 5, offset: 84361}, run: (*parser).callonQuote1, expr: &seqExpr{ - pos: position{line: 2528, col: 5, offset: 84345}, + pos: position{line: 2528, col: 5, offset: 84361}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2528, col: 5, offset: 84345}, + pos: position{line: 2528, col: 5, offset: 84361}, run: (*parser).callonQuote3, }, &labeledExpr{ - pos: position{line: 2531, col: 5, offset: 84410}, + pos: position{line: 2531, col: 5, offset: 84426}, label: "element", expr: &choiceExpr{ - pos: position{line: 2532, col: 9, offset: 84428}, + pos: position{line: 2532, col: 9, offset: 84444}, alternatives: []interface{}{ &ruleRefExpr{ - pos: position{line: 2532, col: 9, offset: 84428}, + pos: position{line: 2532, col: 9, offset: 84444}, name: "QuotedText", }, &ruleRefExpr{ - pos: position{line: 2533, col: 11, offset: 84450}, + pos: position{line: 2533, col: 11, offset: 84466}, name: "QuotedString", }, }, @@ -54651,66 +54651,66 @@ var g = &grammar{ }, { name: "TableColumnsAttribute", - pos: position{line: 2679, col: 1, offset: 88469}, + pos: position{line: 2679, col: 1, offset: 88485}, expr: &actionExpr{ - pos: position{line: 2679, col: 26, offset: 88494}, + pos: position{line: 2679, col: 26, offset: 88510}, run: (*parser).callonTableColumnsAttribute1, expr: &seqExpr{ - pos: position{line: 2679, col: 26, offset: 88494}, + pos: position{line: 2679, col: 26, offset: 88510}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2679, col: 26, offset: 88494}, + pos: position{line: 2679, col: 26, offset: 88510}, label: "cols", expr: &zeroOrMoreExpr{ - pos: position{line: 2679, col: 31, offset: 88499}, + pos: position{line: 2679, col: 31, offset: 88515}, expr: &actionExpr{ - pos: position{line: 2684, col: 5, offset: 88562}, + pos: position{line: 2684, col: 5, offset: 88578}, run: (*parser).callonTableColumnsAttribute5, expr: &seqExpr{ - pos: position{line: 2684, col: 5, offset: 88562}, + pos: position{line: 2684, col: 5, offset: 88578}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2684, col: 5, offset: 88562}, + pos: position{line: 2684, col: 5, offset: 88578}, expr: ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, &labeledExpr{ - pos: position{line: 2687, col: 5, offset: 88686}, + pos: position{line: 2687, col: 5, offset: 88702}, label: "multiplier", expr: &zeroOrOneExpr{ - pos: position{line: 2687, col: 16, offset: 88697}, + pos: position{line: 2687, col: 16, offset: 88713}, expr: &actionExpr{ - pos: position{line: 2687, col: 17, offset: 88698}, + pos: position{line: 2687, col: 17, offset: 88714}, run: (*parser).callonTableColumnsAttribute12, expr: &seqExpr{ - pos: position{line: 2687, col: 17, offset: 88698}, + pos: position{line: 2687, col: 17, offset: 88714}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2687, col: 17, offset: 88698}, + pos: position{line: 2687, col: 17, offset: 88714}, label: "n", expr: &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonTableColumnsAttribute15, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -54722,7 +54722,7 @@ var g = &grammar{ }, }, &litMatcher{ - pos: position{line: 2687, col: 27, offset: 88708}, + pos: position{line: 2687, col: 27, offset: 88724}, val: "*", ignoreCase: false, want: "\"*\"", @@ -54733,38 +54733,38 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2688, col: 5, offset: 88736}, + pos: position{line: 2688, col: 5, offset: 88752}, label: "halign", expr: &zeroOrOneExpr{ - pos: position{line: 2688, col: 12, offset: 88743}, + pos: position{line: 2688, col: 12, offset: 88759}, expr: &choiceExpr{ - pos: position{line: 2689, col: 9, offset: 88753}, + pos: position{line: 2689, col: 9, offset: 88769}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2689, col: 9, offset: 88753}, + pos: position{line: 2689, col: 9, offset: 88769}, run: (*parser).callonTableColumnsAttribute25, expr: &litMatcher{ - pos: position{line: 2689, col: 9, offset: 88753}, + pos: position{line: 2689, col: 9, offset: 88769}, val: "<", ignoreCase: false, want: "\"<\"", }, }, &actionExpr{ - pos: position{line: 2690, col: 11, offset: 88800}, + pos: position{line: 2690, col: 11, offset: 88816}, run: (*parser).callonTableColumnsAttribute27, expr: &litMatcher{ - pos: position{line: 2690, col: 11, offset: 88800}, + pos: position{line: 2690, col: 11, offset: 88816}, val: ">", ignoreCase: false, want: "\">\"", }, }, &actionExpr{ - pos: position{line: 2691, col: 11, offset: 88848}, + pos: position{line: 2691, col: 11, offset: 88864}, run: (*parser).callonTableColumnsAttribute29, expr: &litMatcher{ - pos: position{line: 2691, col: 11, offset: 88848}, + pos: position{line: 2691, col: 11, offset: 88864}, val: "^", ignoreCase: false, want: "\"^\"", @@ -54775,38 +54775,38 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2693, col: 5, offset: 88898}, + pos: position{line: 2693, col: 5, offset: 88914}, label: "valign", expr: &zeroOrOneExpr{ - pos: position{line: 2693, col: 12, offset: 88905}, + pos: position{line: 2693, col: 12, offset: 88921}, expr: &choiceExpr{ - pos: position{line: 2694, col: 9, offset: 88915}, + pos: position{line: 2694, col: 9, offset: 88931}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2694, col: 9, offset: 88915}, + pos: position{line: 2694, col: 9, offset: 88931}, run: (*parser).callonTableColumnsAttribute34, expr: &litMatcher{ - pos: position{line: 2694, col: 9, offset: 88915}, + pos: position{line: 2694, col: 9, offset: 88931}, val: ".<", ignoreCase: false, want: "\".<\"", }, }, &actionExpr{ - pos: position{line: 2695, col: 11, offset: 88962}, + pos: position{line: 2695, col: 11, offset: 88978}, run: (*parser).callonTableColumnsAttribute36, expr: &litMatcher{ - pos: position{line: 2695, col: 11, offset: 88962}, + pos: position{line: 2695, col: 11, offset: 88978}, val: ".>", ignoreCase: false, want: "\".>\"", }, }, &actionExpr{ - pos: position{line: 2696, col: 11, offset: 89012}, + pos: position{line: 2696, col: 11, offset: 89028}, run: (*parser).callonTableColumnsAttribute38, expr: &litMatcher{ - pos: position{line: 2696, col: 11, offset: 89012}, + pos: position{line: 2696, col: 11, offset: 89028}, val: ".^", ignoreCase: false, want: "\".^\"", @@ -54817,32 +54817,32 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2698, col: 5, offset: 89063}, + pos: position{line: 2698, col: 5, offset: 89079}, label: "weight", expr: &zeroOrOneExpr{ - pos: position{line: 2698, col: 12, offset: 89070}, + pos: position{line: 2698, col: 12, offset: 89086}, expr: &choiceExpr{ - pos: position{line: 2698, col: 13, offset: 89071}, + pos: position{line: 2698, col: 13, offset: 89087}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2842, col: 12, offset: 93922}, + pos: position{line: 2842, col: 12, offset: 93938}, run: (*parser).callonTableColumnsAttribute43, expr: &seqExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, exprs: []interface{}{ &zeroOrOneExpr{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, expr: &litMatcher{ - pos: position{line: 2842, col: 13, offset: 93923}, + pos: position{line: 2842, col: 13, offset: 93939}, val: "-", ignoreCase: false, want: "\"-\"", }, }, &oneOrMoreExpr{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, expr: &charClassMatcher{ - pos: position{line: 2842, col: 18, offset: 93928}, + pos: position{line: 2842, col: 18, offset: 93944}, val: "[0-9]", ranges: []rune{'0', '9'}, ignoreCase: false, @@ -54853,10 +54853,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2698, col: 24, offset: 89082}, + pos: position{line: 2698, col: 24, offset: 89098}, run: (*parser).callonTableColumnsAttribute49, expr: &litMatcher{ - pos: position{line: 2698, col: 24, offset: 89082}, + pos: position{line: 2698, col: 24, offset: 89098}, val: "~", ignoreCase: false, want: "\"~\"", @@ -54867,15 +54867,15 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2699, col: 5, offset: 89124}, + pos: position{line: 2699, col: 5, offset: 89140}, label: "style", expr: &zeroOrOneExpr{ - pos: position{line: 2699, col: 11, offset: 89130}, + pos: position{line: 2699, col: 11, offset: 89146}, expr: &actionExpr{ - pos: position{line: 2699, col: 12, offset: 89131}, + pos: position{line: 2699, col: 12, offset: 89147}, run: (*parser).callonTableColumnsAttribute53, expr: &charClassMatcher{ - pos: position{line: 2699, col: 12, offset: 89131}, + pos: position{line: 2699, col: 12, offset: 89147}, val: "[adehlms]", chars: []rune{'a', 'd', 'e', 'h', 'l', 'm', 's'}, ignoreCase: false, @@ -54885,12 +54885,12 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2701, col: 5, offset: 89261}, + pos: position{line: 2701, col: 5, offset: 89277}, label: "comma", expr: &zeroOrOneExpr{ - pos: position{line: 2701, col: 11, offset: 89267}, + pos: position{line: 2701, col: 11, offset: 89283}, expr: &litMatcher{ - pos: position{line: 2701, col: 12, offset: 89268}, + pos: position{line: 2701, col: 12, offset: 89284}, val: ",", ignoreCase: false, want: "\",\"", @@ -54898,7 +54898,7 @@ var g = &grammar{ }, }, &andCodeExpr{ - pos: position{line: 2702, col: 5, offset: 89278}, + pos: position{line: 2702, col: 5, offset: 89294}, run: (*parser).callonTableColumnsAttribute58, }, }, @@ -54907,9 +54907,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -54918,23 +54918,23 @@ var g = &grammar{ }, { name: "UserMacroBlock", - pos: position{line: 2729, col: 1, offset: 90287}, + pos: position{line: 2729, col: 1, offset: 90303}, expr: &actionExpr{ - pos: position{line: 2730, col: 5, offset: 90310}, + pos: position{line: 2730, col: 5, offset: 90326}, run: (*parser).callonUserMacroBlock1, expr: &seqExpr{ - pos: position{line: 2730, col: 5, offset: 90310}, + pos: position{line: 2730, col: 5, offset: 90326}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2730, col: 5, offset: 90310}, + pos: position{line: 2730, col: 5, offset: 90326}, label: "name", expr: &actionExpr{ - pos: position{line: 2753, col: 18, offset: 91075}, + pos: position{line: 2753, col: 18, offset: 91091}, run: (*parser).callonUserMacroBlock4, expr: &oneOrMoreExpr{ - pos: position{line: 2753, col: 19, offset: 91076}, + pos: position{line: 2753, col: 19, offset: 91092}, expr: &charClassMatcher{ - pos: position{line: 2753, col: 19, offset: 91076}, + pos: position{line: 2753, col: 19, offset: 91092}, val: "[_-0-9\\pL]", chars: []rune{'_', '-'}, ranges: []rune{'0', '9'}, @@ -54946,25 +54946,25 @@ var g = &grammar{ }, }, &andCodeExpr{ - pos: position{line: 2731, col: 5, offset: 90336}, + pos: position{line: 2731, col: 5, offset: 90352}, run: (*parser).callonUserMacroBlock7, }, &litMatcher{ - pos: position{line: 2735, col: 5, offset: 90476}, + pos: position{line: 2735, col: 5, offset: 90492}, val: "::", ignoreCase: false, want: "\"::\"", }, &labeledExpr{ - pos: position{line: 2736, col: 5, offset: 90486}, + pos: position{line: 2736, col: 5, offset: 90502}, label: "value", expr: &actionExpr{ - pos: position{line: 2757, col: 19, offset: 91151}, + pos: position{line: 2757, col: 19, offset: 91167}, run: (*parser).callonUserMacroBlock10, expr: &zeroOrMoreExpr{ - pos: position{line: 2757, col: 19, offset: 91151}, + pos: position{line: 2757, col: 19, offset: 91167}, expr: &charClassMatcher{ - pos: position{line: 2757, col: 19, offset: 91151}, + pos: position{line: 2757, col: 19, offset: 91167}, val: "[^:[ \\r\\n]", chars: []rune{':', '[', ' ', '\r', '\n'}, ignoreCase: false, @@ -54974,36 +54974,36 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2737, col: 5, offset: 90514}, + pos: position{line: 2737, col: 5, offset: 90530}, label: "attributes", expr: &ruleRefExpr{ - pos: position{line: 2737, col: 17, offset: 90526}, + pos: position{line: 2737, col: 17, offset: 90542}, name: "InlineAttributes", }, }, &choiceExpr{ - pos: position{line: 2866, col: 8, offset: 94419}, + pos: position{line: 2866, col: 8, offset: 94435}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2859, col: 12, offset: 94279}, + pos: position{line: 2859, col: 12, offset: 94295}, run: (*parser).callonUserMacroBlock16, expr: &choiceExpr{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, alternatives: []interface{}{ &litMatcher{ - pos: position{line: 2859, col: 13, offset: 94280}, + pos: position{line: 2859, col: 13, offset: 94296}, val: "\n", ignoreCase: false, want: "\"\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 20, offset: 94287}, + pos: position{line: 2859, col: 20, offset: 94303}, val: "\r\n", ignoreCase: false, want: "\"\\r\\n\"", }, &litMatcher{ - pos: position{line: 2859, col: 29, offset: 94296}, + pos: position{line: 2859, col: 29, offset: 94312}, val: "\r", ignoreCase: false, want: "\"\\r\"", @@ -55012,9 +55012,9 @@ var g = &grammar{ }, }, ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, }, @@ -55025,23 +55025,23 @@ var g = &grammar{ }, { name: "InlineUserMacro", - pos: position{line: 2741, col: 1, offset: 90674}, + pos: position{line: 2741, col: 1, offset: 90690}, expr: &actionExpr{ - pos: position{line: 2742, col: 5, offset: 90698}, + pos: position{line: 2742, col: 5, offset: 90714}, run: (*parser).callonInlineUserMacro1, expr: &seqExpr{ - pos: position{line: 2742, col: 5, offset: 90698}, + pos: position{line: 2742, col: 5, offset: 90714}, exprs: []interface{}{ &labeledExpr{ - pos: position{line: 2742, col: 5, offset: 90698}, + pos: position{line: 2742, col: 5, offset: 90714}, label: "name", expr: &actionExpr{ - pos: position{line: 2753, col: 18, offset: 91075}, + pos: position{line: 2753, col: 18, offset: 91091}, run: (*parser).callonInlineUserMacro4, expr: &oneOrMoreExpr{ - pos: position{line: 2753, col: 19, offset: 91076}, + pos: position{line: 2753, col: 19, offset: 91092}, expr: &charClassMatcher{ - pos: position{line: 2753, col: 19, offset: 91076}, + pos: position{line: 2753, col: 19, offset: 91092}, val: "[_-0-9\\pL]", chars: []rune{'_', '-'}, ranges: []rune{'0', '9'}, @@ -55053,25 +55053,25 @@ var g = &grammar{ }, }, &andCodeExpr{ - pos: position{line: 2743, col: 5, offset: 90724}, + pos: position{line: 2743, col: 5, offset: 90740}, run: (*parser).callonInlineUserMacro7, }, &litMatcher{ - pos: position{line: 2747, col: 5, offset: 90864}, + pos: position{line: 2747, col: 5, offset: 90880}, val: ":", ignoreCase: false, want: "\":\"", }, &labeledExpr{ - pos: position{line: 2748, col: 5, offset: 90873}, + pos: position{line: 2748, col: 5, offset: 90889}, label: "value", expr: &actionExpr{ - pos: position{line: 2757, col: 19, offset: 91151}, + pos: position{line: 2757, col: 19, offset: 91167}, run: (*parser).callonInlineUserMacro10, expr: &zeroOrMoreExpr{ - pos: position{line: 2757, col: 19, offset: 91151}, + pos: position{line: 2757, col: 19, offset: 91167}, expr: &charClassMatcher{ - pos: position{line: 2757, col: 19, offset: 91151}, + pos: position{line: 2757, col: 19, offset: 91167}, val: "[^:[ \\r\\n]", chars: []rune{':', '[', ' ', '\r', '\n'}, ignoreCase: false, @@ -55081,10 +55081,10 @@ var g = &grammar{ }, }, &labeledExpr{ - pos: position{line: 2749, col: 5, offset: 90901}, + pos: position{line: 2749, col: 5, offset: 90917}, label: "attributes", expr: &ruleRefExpr{ - pos: position{line: 2749, col: 17, offset: 90913}, + pos: position{line: 2749, col: 17, offset: 90929}, name: "InlineAttributes", }, }, @@ -55094,48 +55094,48 @@ var g = &grammar{ }, { name: "FileLocation", - pos: position{line: 2806, col: 1, offset: 92697}, + pos: position{line: 2806, col: 1, offset: 92713}, expr: &actionExpr{ - pos: position{line: 2806, col: 17, offset: 92713}, + pos: position{line: 2806, col: 17, offset: 92729}, run: (*parser).callonFileLocation1, expr: &labeledExpr{ - pos: position{line: 2806, col: 17, offset: 92713}, + pos: position{line: 2806, col: 17, offset: 92729}, label: "path", expr: &oneOrMoreExpr{ - pos: position{line: 2806, col: 22, offset: 92718}, + pos: position{line: 2806, col: 22, offset: 92734}, expr: &choiceExpr{ - pos: position{line: 2806, col: 23, offset: 92719}, + pos: position{line: 2806, col: 23, offset: 92735}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, run: (*parser).callonFileLocation5, expr: &seqExpr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, exprs: []interface{}{ ¬Expr{ - pos: position{line: 2821, col: 5, offset: 93175}, + pos: position{line: 2821, col: 5, offset: 93191}, expr: &litMatcher{ - pos: position{line: 2821, col: 6, offset: 93176}, + pos: position{line: 2821, col: 6, offset: 93192}, val: "[", ignoreCase: false, want: "\"[\"", }, }, &labeledExpr{ - pos: position{line: 2822, col: 5, offset: 93200}, + pos: position{line: 2822, col: 5, offset: 93216}, label: "elements", expr: &oneOrMoreExpr{ - pos: position{line: 2822, col: 14, offset: 93209}, + pos: position{line: 2822, col: 14, offset: 93225}, expr: &choiceExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, run: (*parser).callonFileLocation12, expr: &oneOrMoreExpr{ - pos: position{line: 2823, col: 9, offset: 93219}, + pos: position{line: 2823, col: 9, offset: 93235}, expr: &charClassMatcher{ - pos: position{line: 2823, col: 10, offset: 93220}, + pos: position{line: 2823, col: 10, offset: 93236}, val: "[^\\r\\n[]�{.,;?!<> ]", chars: []rune{'\r', '\n', '[', ']', '�', '{', '.', ',', ';', '?', '!', '<', '>', ' '}, ignoreCase: false, @@ -55144,13 +55144,13 @@ var g = &grammar{ }, }, &seqExpr{ - pos: position{line: 2826, col: 11, offset: 93485}, + pos: position{line: 2826, col: 11, offset: 93501}, exprs: []interface{}{ &actionExpr{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, run: (*parser).callonFileLocation16, expr: &charClassMatcher{ - pos: position{line: 2796, col: 25, offset: 92456}, + pos: position{line: 2796, col: 25, offset: 92472}, val: "[.,;?!]", chars: []rune{'.', ',', ';', '?', '!'}, ignoreCase: false, @@ -55158,23 +55158,23 @@ var g = &grammar{ }, }, &andExpr{ - pos: position{line: 2826, col: 32, offset: 93506}, + pos: position{line: 2826, col: 32, offset: 93522}, expr: ¬Expr{ - pos: position{line: 2826, col: 34, offset: 93508}, + pos: position{line: 2826, col: 34, offset: 93524}, expr: &choiceExpr{ - pos: position{line: 2826, col: 36, offset: 93510}, + pos: position{line: 2826, col: 36, offset: 93526}, alternatives: []interface{}{ ¬Expr{ - pos: position{line: 2863, col: 8, offset: 94369}, + pos: position{line: 2863, col: 8, offset: 94385}, expr: &anyMatcher{ - line: 2863, col: 9, offset: 94370, + line: 2863, col: 9, offset: 94386, }, }, &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonFileLocation23, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -55487,23 +55487,23 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonFileLocation84, expr: &seqExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, exprs: []interface{}{ &andCodeExpr{ - pos: position{line: 2550, col: 5, offset: 84817}, + pos: position{line: 2550, col: 5, offset: 84833}, run: (*parser).callonFileLocation86, }, &labeledExpr{ - pos: position{line: 2553, col: 5, offset: 84893}, + pos: position{line: 2553, col: 5, offset: 84909}, label: "element", expr: &choiceExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, alternatives: []interface{}{ &actionExpr{ - pos: position{line: 2555, col: 9, offset: 84991}, + pos: position{line: 2555, col: 9, offset: 85007}, run: (*parser).callonFileLocation89, expr: &choiceExpr{ pos: position{line: 698, col: 27, offset: 22399}, @@ -55524,12 +55524,12 @@ var g = &grammar{ pos: position{line: 698, col: 32, offset: 22404}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonFileLocation95, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -55541,10 +55541,10 @@ var g = &grammar{ &zeroOrMoreExpr{ pos: position{line: 698, col: 40, offset: 22412}, expr: &actionExpr{ - pos: position{line: 2850, col: 10, offset: 94095}, + pos: position{line: 2850, col: 10, offset: 94111}, run: (*parser).callonFileLocation99, expr: &charClassMatcher{ - pos: position{line: 2850, col: 11, offset: 94096}, + pos: position{line: 2850, col: 11, offset: 94112}, val: "[ \\t]", chars: []rune{' ', '\t'}, ignoreCase: false, @@ -55687,12 +55687,12 @@ var g = &grammar{ pos: position{line: 700, col: 14, offset: 22529}, label: "id", expr: &actionExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, run: (*parser).callonFileLocation127, expr: &oneOrMoreExpr{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, expr: &charClassMatcher{ - pos: position{line: 2835, col: 7, offset: 93747}, + pos: position{line: 2835, col: 7, offset: 93763}, val: "[^[]<>,]", chars: []rune{'[', ']', '<', '>', ','}, ignoreCase: false, @@ -55714,10 +55714,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2558, col: 11, offset: 85095}, + pos: position{line: 2558, col: 11, offset: 85111}, run: (*parser).callonFileLocation131, expr: &charClassMatcher{ - pos: position{line: 2558, col: 12, offset: 85096}, + pos: position{line: 2558, col: 12, offset: 85112}, val: "[<>&]", chars: []rune{'<', '>', '&'}, ignoreCase: false, @@ -55731,10 +55731,10 @@ var g = &grammar{ }, }, &actionExpr{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, run: (*parser).callonFileLocation133, expr: &litMatcher{ - pos: position{line: 2829, col: 11, offset: 93591}, + pos: position{line: 2829, col: 11, offset: 93607}, val: "{", ignoreCase: false, want: "\"{\"", @@ -57949,6 +57949,7 @@ func (c *current) onDocumentFragment87() (interface{}, error) { return []interface{}{ types.RawLine(c.text), }, nil + } func (p *parser) callonDocumentFragment87() (interface{}, error) { @@ -63061,6 +63062,7 @@ func (c *current) onDocumentHeader29() (interface{}, error) { return []interface{}{ types.RawLine(c.text), }, nil + } func (p *parser) callonDocumentHeader29() (interface{}, error) { diff --git a/pkg/parser/parser.peg b/pkg/parser/parser.peg index 99307f48..f0ecc560 100644 --- a/pkg/parser/parser.peg +++ b/pkg/parser/parser.peg @@ -2432,10 +2432,10 @@ Section <- } SectionTitle <- [^\r\n]+ { // can't have empty title, that may collide with example block delimiter (`====`) - return []interface{}{ - types.RawLine(c.text), - }, nil -} + return []interface{}{ + types.RawLine(c.text), + }, nil + } // ------------------------------------------------------------------------------------- // Substitutions diff --git a/pkg/parser/parser_ext_test.go b/pkg/parser/parser_ext_test.go index 944d2488..3e4cad18 100644 --- a/pkg/parser/parser_ext_test.go +++ b/pkg/parser/parser_ext_test.go @@ -3,8 +3,8 @@ package parser import ( "github.com/bytesparadise/libasciidoc/pkg/types" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("block delimiter tracker", func() { diff --git a/pkg/parser/parser_suite_test.go b/pkg/parser/parser_suite_test.go index 1325fda6..d32f7016 100644 --- a/pkg/parser/parser_suite_test.go +++ b/pkg/parser/parser_suite_test.go @@ -1,8 +1,8 @@ package parser_test import ( - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint "testing" diff --git a/pkg/parser/passthrough_test.go b/pkg/parser/passthrough_test.go index 516407ca..e2df5977 100644 --- a/pkg/parser/passthrough_test.go +++ b/pkg/parser/passthrough_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("passthroughs", func() { diff --git a/pkg/parser/q_a_list_test.go b/pkg/parser/q_a_list_test.go index 3c4a70b2..c3ee91c1 100644 --- a/pkg/parser/q_a_list_test.go +++ b/pkg/parser/q_a_list_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("q and a lists", func() { diff --git a/pkg/parser/quoted_string_test.go b/pkg/parser/quoted_string_test.go index 95fc6097..8f14b88f 100644 --- a/pkg/parser/quoted_string_test.go +++ b/pkg/parser/quoted_string_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("quoted strings", func() { diff --git a/pkg/parser/quoted_text_test.go b/pkg/parser/quoted_text_test.go index 734bb1a9..77dabe46 100644 --- a/pkg/parser/quoted_text_test.go +++ b/pkg/parser/quoted_text_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("quoted texts", func() { diff --git a/pkg/parser/section_test.go b/pkg/parser/section_test.go index fa69ca63..fe397626 100644 --- a/pkg/parser/section_test.go +++ b/pkg/parser/section_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("sections", func() { diff --git a/pkg/parser/special_character_test.go b/pkg/parser/special_character_test.go index f3e31cdb..9f110330 100644 --- a/pkg/parser/special_character_test.go +++ b/pkg/parser/special_character_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("special characters", func() { diff --git a/pkg/parser/table_of_contents_test.go b/pkg/parser/table_of_contents_test.go index 97f2dc1c..5c0a75a9 100644 --- a/pkg/parser/table_of_contents_test.go +++ b/pkg/parser/table_of_contents_test.go @@ -6,8 +6,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("tables of contents", func() { @@ -635,5 +635,133 @@ a preamble } Expect(ParseDocument(source)).To(MatchDocument(expected)) }) + + It("should render with custom title without passthrough macro", func() { + source := `= Title +:toc: +:toc-title:

Table of Contents

+ +== Section 1 + +== Section 2 +` + expected := &types.Document{ + Elements: []interface{}{ + &types.DocumentHeader{ + Title: []interface{}{ + &types.StringElement{ + Content: "Title", + }, + }, + Elements: []interface{}{ + &types.AttributeDeclaration{ + Name: types.AttrTableOfContents, + }, + &types.AttributeDeclaration{ + Name: types.AttrTableOfContentsTitle, + Value: "

Table of Contents

", + }, + }, + }, + &types.Section{ + Level: 1, + Attributes: types.Attributes{ + types.AttrID: "_section_1", + }, + Title: section1Title, + }, + &types.Section{ + Level: 1, + Attributes: types.Attributes{ + types.AttrID: "_section_2", + }, + Title: section2Title, + }, + }, + ElementReferences: types.ElementReferences{ + "_section_1": section1Title, + "_section_2": section2Title, + }, + TableOfContents: &types.TableOfContents{ + Sections: []*types.ToCSection{ + { + ID: "_section_1", + Level: 1, + Title: "Section 1", + }, + { + ID: "_section_2", + Level: 1, + Title: "Section 2", + }, + }, + }, + } + Expect(ParseDocument(source)).To(MatchDocument(expected)) + }) + + It("should render with custom title with passthrough macro", func() { + source := `= Title +:toc: +:toc-title: pass:[

Table of Contents

] + +== Section 1 + +== Section 2 +` + expected := &types.Document{ + Elements: []interface{}{ + &types.DocumentHeader{ + Title: []interface{}{ + &types.StringElement{ + Content: "Title", + }, + }, + Elements: []interface{}{ + &types.AttributeDeclaration{ + Name: types.AttrTableOfContents, + }, + &types.AttributeDeclaration{ + Name: types.AttrTableOfContentsTitle, + Value: "pass:[

Table of Contents

]", + }, + }, + }, + &types.Section{ + Level: 1, + Attributes: types.Attributes{ + types.AttrID: "_section_1", + }, + Title: section1Title, + }, + &types.Section{ + Level: 1, + Attributes: types.Attributes{ + types.AttrID: "_section_2", + }, + Title: section2Title, + }, + }, + ElementReferences: types.ElementReferences{ + "_section_1": section1Title, + "_section_2": section2Title, + }, + TableOfContents: &types.TableOfContents{ + Sections: []*types.ToCSection{ + { + ID: "_section_1", + Level: 1, + Title: "Section 1", + }, + { + ID: "_section_2", + Level: 1, + Title: "Section 2", + }, + }, + }, + } + Expect(ParseDocument(source)).To(MatchDocument(expected)) + }) }) }) diff --git a/pkg/parser/table_test.go b/pkg/parser/table_test.go index bdfed868..1a56c564 100644 --- a/pkg/parser/table_test.go +++ b/pkg/parser/table_test.go @@ -8,9 +8,9 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" log "github.com/sirupsen/logrus" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/ginkgo/extensions/table" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/ginkgo/extensions/table" // nolint:golintt + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("tables", func() { diff --git a/pkg/parser/thematic_break_test.go b/pkg/parser/thematic_break_test.go index 64565dee..acd51593 100644 --- a/pkg/parser/thematic_break_test.go +++ b/pkg/parser/thematic_break_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("thematic breaks", func() { diff --git a/pkg/parser/unordered_list_test.go b/pkg/parser/unordered_list_test.go index 6b28ab7d..e4abee5e 100644 --- a/pkg/parser/unordered_list_test.go +++ b/pkg/parser/unordered_list_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("unordered lists", func() { diff --git a/pkg/parser/user_macro_test.go b/pkg/parser/user_macro_test.go index 71041cbd..59b17053 100644 --- a/pkg/parser/user_macro_test.go +++ b/pkg/parser/user_macro_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("user macros", func() { diff --git a/pkg/renderer/sgml/document_details.go b/pkg/renderer/sgml/document_details.go index 477311e4..ea9d96cc 100644 --- a/pkg/renderer/sgml/document_details.go +++ b/pkg/renderer/sgml/document_details.go @@ -49,7 +49,7 @@ func (r *sgmlRenderer) renderDocumentDetails(ctx *renderer.Context) (*string, er if err != nil { return nil, errors.Wrap(err, "error while rendering the document details") } - documentDetails := string(documentDetailsBuff.String()) //nolint: gosec + documentDetails := string(documentDetailsBuff.String()) // nolint:gosec return &documentDetails, nil } return nil, nil @@ -100,6 +100,6 @@ func (r *sgmlRenderer) renderDocumentAuthorsDetails(ctx *renderer.Context) (*str break } } - result := string(authorsDetailsBuff.String()) //nolint: gosec + result := string(authorsDetailsBuff.String()) // nolint:gosec return &result, nil } diff --git a/pkg/renderer/sgml/elements.go b/pkg/renderer/sgml/elements.go index 48479c61..f914d412 100644 --- a/pkg/renderer/sgml/elements.go +++ b/pkg/renderer/sgml/elements.go @@ -43,7 +43,7 @@ func (r *sgmlRenderer) renderListElements(ctx *renderer.Context, elements []inte return buff.String(), nil } -// nolint: gocyclo +// nolint:gocyclo func (r *sgmlRenderer) renderElement(ctx *renderer.Context, element interface{}) (string, error) { // log.Debugf("rendering element of type `%T`", element) switch e := element.(type) { @@ -117,7 +117,7 @@ func (r *sgmlRenderer) renderElement(ctx *renderer.Context, element interface{}) } } -// nolint: gocyclo +// nolint:gocyclo func (r *sgmlRenderer) renderPlainText(ctx *renderer.Context, element interface{}) (string, error) { // log.Debugf("rendering plain string for element of type %T", element) switch element := element.(type) { diff --git a/pkg/renderer/sgml/html5/blank_line_test.go b/pkg/renderer/sgml/html5/blank_line_test.go index bcfd5247..141385e6 100644 --- a/pkg/renderer/sgml/html5/blank_line_test.go +++ b/pkg/renderer/sgml/html5/blank_line_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("blank lines", func() { diff --git a/pkg/renderer/sgml/html5/check_list_test.go b/pkg/renderer/sgml/html5/check_list_test.go index f39ac09b..69923d09 100644 --- a/pkg/renderer/sgml/html5/check_list_test.go +++ b/pkg/renderer/sgml/html5/check_list_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("checklists", func() { diff --git a/pkg/renderer/sgml/html5/comment_test.go b/pkg/renderer/sgml/html5/comment_test.go index f42639a1..b006a8d9 100644 --- a/pkg/renderer/sgml/html5/comment_test.go +++ b/pkg/renderer/sgml/html5/comment_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("comments", func() { diff --git a/pkg/renderer/sgml/html5/cross_reference_test.go b/pkg/renderer/sgml/html5/cross_reference_test.go index 75579068..3907f91c 100644 --- a/pkg/renderer/sgml/html5/cross_reference_test.go +++ b/pkg/renderer/sgml/html5/cross_reference_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("cross references", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_admonition_test.go b/pkg/renderer/sgml/html5/delimited_block_admonition_test.go index 9819ea5b..c29cd224 100644 --- a/pkg/renderer/sgml/html5/delimited_block_admonition_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_admonition_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("admonition blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_example_test.go b/pkg/renderer/sgml/html5/delimited_block_example_test.go index 12a38484..8b92e05e 100644 --- a/pkg/renderer/sgml/html5/delimited_block_example_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_example_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("example blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_fenced_test.go b/pkg/renderer/sgml/html5/delimited_block_fenced_test.go index 8118ab7f..56631e85 100644 --- a/pkg/renderer/sgml/html5/delimited_block_fenced_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_fenced_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("delimited blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_listing_test.go b/pkg/renderer/sgml/html5/delimited_block_listing_test.go index e3772e0f..27d16276 100644 --- a/pkg/renderer/sgml/html5/delimited_block_listing_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_listing_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("listing blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_literal_test.go b/pkg/renderer/sgml/html5/delimited_block_literal_test.go index a5bca714..aa036566 100644 --- a/pkg/renderer/sgml/html5/delimited_block_literal_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_literal_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("literal blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_markdown_quote_test.go b/pkg/renderer/sgml/html5/delimited_block_markdown_quote_test.go index 8ab0f02e..44d54824 100644 --- a/pkg/renderer/sgml/html5/delimited_block_markdown_quote_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_markdown_quote_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("markdown-style quote blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_passthrough_test.go b/pkg/renderer/sgml/html5/delimited_block_passthrough_test.go index eaac8767..c48b5df6 100644 --- a/pkg/renderer/sgml/html5/delimited_block_passthrough_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_passthrough_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("passthrough blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_passthrough_tmpl.go b/pkg/renderer/sgml/html5/delimited_block_passthrough_tmpl.go index c2f70cfd..f50d2d55 100644 --- a/pkg/renderer/sgml/html5/delimited_block_passthrough_tmpl.go +++ b/pkg/renderer/sgml/html5/delimited_block_passthrough_tmpl.go @@ -3,5 +3,5 @@ package html5 const ( // the name here is weird because "pass" as a prefix triggers a false security warning - passthroughBlock = "{{ .Content }}\n" //nolint (avoids a Gosec false positive because the const name starts with 'pass') + passthroughBlock = "{{ .Content }}\n" // nolint (avoids a Gosec false positive because the const name starts with 'pass') ) diff --git a/pkg/renderer/sgml/html5/delimited_block_quote_test.go b/pkg/renderer/sgml/html5/delimited_block_quote_test.go index 90a81928..fda8e5d6 100644 --- a/pkg/renderer/sgml/html5/delimited_block_quote_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_quote_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("quote blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_sidebar_test.go b/pkg/renderer/sgml/html5/delimited_block_sidebar_test.go index 3773f6ff..83149257 100644 --- a/pkg/renderer/sgml/html5/delimited_block_sidebar_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_sidebar_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("sidebar blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_source_test.go b/pkg/renderer/sgml/html5/delimited_block_source_test.go index 75c9abce..9e258d60 100644 --- a/pkg/renderer/sgml/html5/delimited_block_source_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_source_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("source blocks", func() { diff --git a/pkg/renderer/sgml/html5/delimited_block_verse_test.go b/pkg/renderer/sgml/html5/delimited_block_verse_test.go index 69adfd46..c1376fe8 100644 --- a/pkg/renderer/sgml/html5/delimited_block_verse_test.go +++ b/pkg/renderer/sgml/html5/delimited_block_verse_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("verse blocks", func() { diff --git a/pkg/renderer/sgml/html5/distinct_lists_test.go b/pkg/renderer/sgml/html5/distinct_lists_test.go index a24c99c0..348948b7 100644 --- a/pkg/renderer/sgml/html5/distinct_lists_test.go +++ b/pkg/renderer/sgml/html5/distinct_lists_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("lists of items", func() { diff --git a/pkg/renderer/sgml/html5/document_details_test.go b/pkg/renderer/sgml/html5/document_details_test.go index cb3ec1c0..9ac2704f 100644 --- a/pkg/renderer/sgml/html5/document_details_test.go +++ b/pkg/renderer/sgml/html5/document_details_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document details", func() { diff --git a/pkg/renderer/sgml/html5/file_inclusion_test.go b/pkg/renderer/sgml/html5/file_inclusion_test.go index 9789f1da..de3c7711 100644 --- a/pkg/renderer/sgml/html5/file_inclusion_test.go +++ b/pkg/renderer/sgml/html5/file_inclusion_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt log "github.com/sirupsen/logrus" ) diff --git a/pkg/renderer/sgml/html5/footnote_reference_test.go b/pkg/renderer/sgml/html5/footnote_reference_test.go index db7dcdad..e6fe6567 100644 --- a/pkg/renderer/sgml/html5/footnote_reference_test.go +++ b/pkg/renderer/sgml/html5/footnote_reference_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("footnotes", func() { diff --git a/pkg/renderer/sgml/html5/front_matter_test.go b/pkg/renderer/sgml/html5/front_matter_test.go index 6a18eee7..8f068b99 100644 --- a/pkg/renderer/sgml/html5/front_matter_test.go +++ b/pkg/renderer/sgml/html5/front_matter_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("documents with front-matter", func() { diff --git a/pkg/renderer/sgml/html5/html5_suite_test.go b/pkg/renderer/sgml/html5/html5_suite_test.go index 10ee2678..c1113bc6 100644 --- a/pkg/renderer/sgml/html5/html5_suite_test.go +++ b/pkg/renderer/sgml/html5/html5_suite_test.go @@ -1,8 +1,8 @@ package html5_test import ( - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt "testing" diff --git a/pkg/renderer/sgml/html5/html5_test.go b/pkg/renderer/sgml/html5/html5_test.go index b8f327f7..7686fa52 100644 --- a/pkg/renderer/sgml/html5/html5_test.go +++ b/pkg/renderer/sgml/html5/html5_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document header", func() { diff --git a/pkg/renderer/sgml/html5/icon_test.go b/pkg/renderer/sgml/html5/icon_test.go index f2df65a6..b90d422e 100644 --- a/pkg/renderer/sgml/html5/icon_test.go +++ b/pkg/renderer/sgml/html5/icon_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("icons", func() { diff --git a/pkg/renderer/sgml/html5/image_test.go b/pkg/renderer/sgml/html5/image_test.go index 81f0547f..affd1fee 100644 --- a/pkg/renderer/sgml/html5/image_test.go +++ b/pkg/renderer/sgml/html5/image_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("images", func() { diff --git a/pkg/renderer/sgml/html5/index_terms_test.go b/pkg/renderer/sgml/html5/index_terms_test.go index bfc5f67f..b48358b8 100644 --- a/pkg/renderer/sgml/html5/index_terms_test.go +++ b/pkg/renderer/sgml/html5/index_terms_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("index terms", func() { diff --git a/pkg/renderer/sgml/html5/labeled_list_test.go b/pkg/renderer/sgml/html5/labeled_list_test.go index 48d7bc0a..bf887ee7 100644 --- a/pkg/renderer/sgml/html5/labeled_list_test.go +++ b/pkg/renderer/sgml/html5/labeled_list_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("labeled lists", func() { diff --git a/pkg/renderer/sgml/html5/link_test.go b/pkg/renderer/sgml/html5/link_test.go index af93506a..37de6570 100644 --- a/pkg/renderer/sgml/html5/link_test.go +++ b/pkg/renderer/sgml/html5/link_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("links", func() { diff --git a/pkg/renderer/sgml/html5/ordered_list_test.go b/pkg/renderer/sgml/html5/ordered_list_test.go index b384dc5d..f58c818c 100644 --- a/pkg/renderer/sgml/html5/ordered_list_test.go +++ b/pkg/renderer/sgml/html5/ordered_list_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("ordered lists", func() { diff --git a/pkg/renderer/sgml/html5/paragraph_test.go b/pkg/renderer/sgml/html5/paragraph_test.go index 13b9f15d..4e8214f4 100644 --- a/pkg/renderer/sgml/html5/paragraph_test.go +++ b/pkg/renderer/sgml/html5/paragraph_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("paragraphs", func() { diff --git a/pkg/renderer/sgml/html5/passthrough_test.go b/pkg/renderer/sgml/html5/passthrough_test.go index 2a6adbf6..8a13038b 100644 --- a/pkg/renderer/sgml/html5/passthrough_test.go +++ b/pkg/renderer/sgml/html5/passthrough_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("passthroughs", func() { diff --git a/pkg/renderer/sgml/html5/quoted_string_test.go b/pkg/renderer/sgml/html5/quoted_string_test.go index 1a7e7af5..6d727602 100644 --- a/pkg/renderer/sgml/html5/quoted_string_test.go +++ b/pkg/renderer/sgml/html5/quoted_string_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("quoted strings", func() { diff --git a/pkg/renderer/sgml/html5/quoted_text_test.go b/pkg/renderer/sgml/html5/quoted_text_test.go index 387e41fa..f51a243d 100644 --- a/pkg/renderer/sgml/html5/quoted_text_test.go +++ b/pkg/renderer/sgml/html5/quoted_text_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("quoted texts", func() { diff --git a/pkg/renderer/sgml/html5/section_test.go b/pkg/renderer/sgml/html5/section_test.go index d01197f0..88a5cb83 100644 --- a/pkg/renderer/sgml/html5/section_test.go +++ b/pkg/renderer/sgml/html5/section_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("sections", func() { diff --git a/pkg/renderer/sgml/html5/special_character_test.go b/pkg/renderer/sgml/html5/special_character_test.go index 36682180..be017c92 100644 --- a/pkg/renderer/sgml/html5/special_character_test.go +++ b/pkg/renderer/sgml/html5/special_character_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("special characters", func() { diff --git a/pkg/renderer/sgml/html5/string_test.go b/pkg/renderer/sgml/html5/string_test.go index ad735f7a..99565908 100644 --- a/pkg/renderer/sgml/html5/string_test.go +++ b/pkg/renderer/sgml/html5/string_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("strings", func() { diff --git a/pkg/renderer/sgml/html5/table_of_contents.go b/pkg/renderer/sgml/html5/table_of_contents.go index 6a283000..a320cfcb 100644 --- a/pkg/renderer/sgml/html5/table_of_contents.go +++ b/pkg/renderer/sgml/html5/table_of_contents.go @@ -2,8 +2,8 @@ package html5 const ( tocRootTmpl = "
\n" + - "
Table of Contents
\n" + - "{{ . }}" + + "
{{ .Title }}
\n" + + "{{ .Sections }}" + "
\n" tocSectionTmpl = "\n" diff --git a/pkg/renderer/sgml/html5/table_of_contents_test.go b/pkg/renderer/sgml/html5/table_of_contents_test.go index 4a3e4b21..11b4e78a 100644 --- a/pkg/renderer/sgml/html5/table_of_contents_test.go +++ b/pkg/renderer/sgml/html5/table_of_contents_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = Describe("document toc", func() { @@ -181,15 +181,75 @@ A preamble... source := `= sect0 :toc: -level 1 sections not exists.` +level 1 sections do not exist.` expected := `
-

level 1 sections not exists.

+

level 1 sections do not exist.

` Expect(RenderHTML(source)).To(MatchHTML(expected)) }) + + It("should render with custom title with passthrough macro", func() { + source := `= Title +:toc: +:toc-title: pass:[

Table of Contents

] + +== Section 1 + +== Section 2 +` + expected := `
+

Table of Contents

+ +
+
+

Section 1

+
+
+
+
+

Section 2

+
+
+
+` + Expect(RenderHTML(source)).To(MatchHTML(expected)) + }) + + It("should render with custom title without passthrough macro", func() { + source := `= Title +:toc: +:toc-title:

Table of Contents

+ +== Section 1 + +== Section 2 +` + expected := `
+
<h3>Table of Contents</h3>
+ +
+
+

Section 1

+
+
+
+
+

Section 2

+
+
+
+` + Expect(RenderHTML(source)).To(MatchHTML(expected)) + }) }) Context("within preamble", func() { @@ -366,10 +426,10 @@ A preamble... source := `= sect0 :toc: preamble -level 1 sections not exists.` +level 1 sections do not exist.` expected := `
-

level 1 sections not exists.

+

level 1 sections do not exist.

` Expect(RenderHTML(source)).To(MatchHTML(expected)) diff --git a/pkg/renderer/sgml/html5/table_test.go b/pkg/renderer/sgml/html5/table_test.go index c5d2cd65..ce4c136e 100644 --- a/pkg/renderer/sgml/html5/table_test.go +++ b/pkg/renderer/sgml/html5/table_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("tables", func() { diff --git a/pkg/renderer/sgml/html5/templates_test.go b/pkg/renderer/sgml/html5/templates_test.go index f601cd2f..f7208137 100644 --- a/pkg/renderer/sgml/html5/templates_test.go +++ b/pkg/renderer/sgml/html5/templates_test.go @@ -4,8 +4,8 @@ import ( "reflect" "github.com/bytesparadise/libasciidoc/pkg/renderer/sgml/html5" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("fields", func() { diff --git a/pkg/renderer/sgml/html5/thematic_break_test.go b/pkg/renderer/sgml/html5/thematic_break_test.go index 7ebd3415..425c87a0 100644 --- a/pkg/renderer/sgml/html5/thematic_break_test.go +++ b/pkg/renderer/sgml/html5/thematic_break_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("thenatic breaks", func() { diff --git a/pkg/renderer/sgml/html5/unordered_list_test.go b/pkg/renderer/sgml/html5/unordered_list_test.go index 4ebaf29f..fb269952 100644 --- a/pkg/renderer/sgml/html5/unordered_list_test.go +++ b/pkg/renderer/sgml/html5/unordered_list_test.go @@ -3,8 +3,8 @@ package html5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("unordered lists", func() { diff --git a/pkg/renderer/sgml/html5/user_macro_test.go b/pkg/renderer/sgml/html5/user_macro_test.go index 8743fc2c..5dd1dc6a 100644 --- a/pkg/renderer/sgml/html5/user_macro_test.go +++ b/pkg/renderer/sgml/html5/user_macro_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/renderer/sgml" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var helloMacroTmpl *texttemplate.Template diff --git a/pkg/renderer/sgml/link.go b/pkg/renderer/sgml/link.go index b858be27..0685cd1c 100644 --- a/pkg/renderer/sgml/link.go +++ b/pkg/renderer/sgml/link.go @@ -10,7 +10,7 @@ import ( log "github.com/sirupsen/logrus" ) -func (r *sgmlRenderer) renderLink(ctx *renderer.Context, l *types.InlineLink) (string, error) { //nolint: unparam +func (r *sgmlRenderer) renderLink(ctx *renderer.Context, l *types.InlineLink) (string, error) { // nolint:unparam result := &strings.Builder{} location := l.Location.Stringify() text := "" diff --git a/pkg/renderer/sgml/predefined_attribute_test.go b/pkg/renderer/sgml/predefined_attribute_test.go index 2746250b..ceb01685 100644 --- a/pkg/renderer/sgml/predefined_attribute_test.go +++ b/pkg/renderer/sgml/predefined_attribute_test.go @@ -2,7 +2,7 @@ package sgml import ( . "github.com/onsi/ginkgo/extensions/table" - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/gomega" // nolint:golint ) var _ = DescribeTable("predefined attributes", diff --git a/pkg/renderer/sgml/quoted_text.go b/pkg/renderer/sgml/quoted_text.go index ae80724b..b2f1d196 100644 --- a/pkg/renderer/sgml/quoted_text.go +++ b/pkg/renderer/sgml/quoted_text.go @@ -54,7 +54,7 @@ func (r *sgmlRenderer) renderQuotedText(ctx *renderer.Context, t *types.QuotedTe ID: r.renderElementID(t.Attributes), Roles: roles, Content: string(elementsBuffer.String()), - }) //nolint: gosec + }) // nolint:gosec if err != nil { return "", errors.Wrap(err, "unable to render monospaced quote") } diff --git a/pkg/renderer/sgml/renderer.go b/pkg/renderer/sgml/renderer.go index 3ada1ea6..aef762c7 100644 --- a/pkg/renderer/sgml/renderer.go +++ b/pkg/renderer/sgml/renderer.go @@ -226,7 +226,7 @@ func (r *sgmlRenderer) Render(ctx *renderer.Context, doc *types.Document, output Header: renderedHeader, Roles: roles, ID: r.renderDocumentID(doc), - Content: string(renderedContent), //nolint: gosec + Content: string(renderedContent), // nolint:gosec RevNumber: ctx.Attributes.GetAsStringWithDefault("revnumber", ""), LastUpdated: ctx.Config.LastUpdated.Format(configuration.LastUpdatedFormat), CSS: ctx.Config.CSS, @@ -431,7 +431,7 @@ func (r *sgmlRenderer) renderManpageHeader(ctx *renderer.Context, header *types. }{ Header: renderedHeader, Name: renderedName, - Content: string(renderedContent), //nolint: gosec + Content: string(renderedContent), // nolint:gosec IncludeH1: len(renderedHeader) > 0, }) if err != nil { diff --git a/pkg/renderer/sgml/table_of_contents.go b/pkg/renderer/sgml/table_of_contents.go index aaf3285a..4e6d4979 100644 --- a/pkg/renderer/sgml/table_of_contents.go +++ b/pkg/renderer/sgml/table_of_contents.go @@ -4,6 +4,7 @@ import ( "strconv" "strings" + "github.com/bytesparadise/libasciidoc/pkg/parser" "github.com/bytesparadise/libasciidoc/pkg/renderer" "github.com/bytesparadise/libasciidoc/pkg/types" "github.com/pkg/errors" @@ -14,6 +15,12 @@ func (r *sgmlRenderer) renderTableOfContents(ctx *renderer.Context, toc *types.T if toc == nil || toc.Sections == nil { return "", nil } + + title, err := r.renderTableOfContentsTitle(ctx) + if err != nil { + return "", errors.Wrap(err, "error while rendering table of contents") + } + log.Debug("rendering table of contents...") renderedSections, err := r.renderTableOfContentsSections(ctx, toc.Sections) if err != nil { @@ -24,7 +31,13 @@ func (r *sgmlRenderer) renderTableOfContents(ctx *renderer.Context, toc *types.T return "", nil } result := &strings.Builder{} - err = r.tocRoot.Execute(result, renderedSections) + err = r.tocRoot.Execute(result, struct { + Title string + Sections string + }{ + Title: title, + Sections: renderedSections, + }) if err != nil { return "", errors.Wrap(err, "error while rendering table of contents") } @@ -32,6 +45,23 @@ func (r *sgmlRenderer) renderTableOfContents(ctx *renderer.Context, toc *types.T return result.String(), nil } +func (r *sgmlRenderer) renderTableOfContentsTitle(ctx *renderer.Context) (string, error) { + title, found, err := ctx.Attributes.GetAsString(types.AttrTableOfContentsTitle) + if err != nil { + return "", errors.Wrap(err, "error while rendering table of contents") + } + if !found { + return "Table of Contents", nil // default value // TODO: use a constant? + } + // parse + value, err := parser.ParseAttributeValue(title) + if err != nil { + return "", err + } + return r.renderElements(ctx, value) + +} + func (r *sgmlRenderer) renderTableOfContentsSections(ctx *renderer.Context, sections []*types.ToCSection) (string, error) { if len(sections) == 0 { return "", nil @@ -61,7 +91,7 @@ func (r *sgmlRenderer) renderTableOfContentsSections(ctx *renderer.Context, sect return "", errors.Wrap(err, "failed to render document ToC") } // log.Debugf("retrieved sections for ToC: %+v", sections) - return resultBuf.String(), nil //nolint: gosec + return resultBuf.String(), nil // nolint:gosec } func (r *sgmlRenderer) renderTableOfContentsEntry(ctx *renderer.Context, entry *types.ToCSection) (string, error) { @@ -90,7 +120,7 @@ func (r *sgmlRenderer) renderTableOfContentsEntry(ctx *renderer.Context, entry * if err != nil { return "", errors.Wrap(err, "failed to render document ToC") } - return resultBuf.String(), nil //nolint: gosec + return resultBuf.String(), nil // nolint:gosec } // newTableOfContents initializes a TableOfContents from the sections diff --git a/pkg/renderer/sgml/xhtml5/blank_line_test.go b/pkg/renderer/sgml/xhtml5/blank_line_test.go index a6031aa8..98d20ac5 100644 --- a/pkg/renderer/sgml/xhtml5/blank_line_test.go +++ b/pkg/renderer/sgml/xhtml5/blank_line_test.go @@ -2,8 +2,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("blank lines", func() { diff --git a/pkg/renderer/sgml/xhtml5/comment_test.go b/pkg/renderer/sgml/xhtml5/comment_test.go index 401f406f..29ed88e1 100644 --- a/pkg/renderer/sgml/xhtml5/comment_test.go +++ b/pkg/renderer/sgml/xhtml5/comment_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("comments", func() { diff --git a/pkg/renderer/sgml/xhtml5/cross_reference_test.go b/pkg/renderer/sgml/xhtml5/cross_reference_test.go index 5b2ceb00..6a5b159e 100644 --- a/pkg/renderer/sgml/xhtml5/cross_reference_test.go +++ b/pkg/renderer/sgml/xhtml5/cross_reference_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("cross references", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_admonition_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_admonition_test.go index 7fa65403..01a9a280 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_admonition_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_admonition_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("admonition blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_example_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_example_test.go index 265ed260..fb42ceaf 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_example_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_example_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("example blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_fenced_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_fenced_test.go index e2a9d4d8..8a49ebdc 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_fenced_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_fenced_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("fenced blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_listing_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_listing_test.go index ad4b3899..2b31c5fb 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_listing_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_listing_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("delimited blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_literal_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_literal_test.go index 074cf68a..bd43db82 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_literal_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_literal_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("literal blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_markdown_quote_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_markdown_quote_test.go index 3c6e20f7..f5f832a6 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_markdown_quote_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_markdown_quote_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("markdown-style quote blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_passthrough_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_passthrough_test.go index c9f038d4..0c9825f1 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_passthrough_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_passthrough_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("passthrough blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_quote_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_quote_test.go index a344758f..6e2b81f2 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_quote_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_quote_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("quote blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_sidebar_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_sidebar_test.go index 1e87a25d..6cad8049 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_sidebar_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_sidebar_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("sidebar blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_source_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_source_test.go index 90633219..f8cdf45d 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_source_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_source_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("source blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/delimited_block_verse_test.go b/pkg/renderer/sgml/xhtml5/delimited_block_verse_test.go index 2775bb71..8f483a81 100644 --- a/pkg/renderer/sgml/xhtml5/delimited_block_verse_test.go +++ b/pkg/renderer/sgml/xhtml5/delimited_block_verse_test.go @@ -5,8 +5,8 @@ import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("verse blocks", func() { diff --git a/pkg/renderer/sgml/xhtml5/distinct_lists_test.go b/pkg/renderer/sgml/xhtml5/distinct_lists_test.go index f5fda7ff..82cd366d 100644 --- a/pkg/renderer/sgml/xhtml5/distinct_lists_test.go +++ b/pkg/renderer/sgml/xhtml5/distinct_lists_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("lists of items", func() { diff --git a/pkg/renderer/sgml/xhtml5/document_details_test.go b/pkg/renderer/sgml/xhtml5/document_details_test.go index a3afa56f..0874f555 100644 --- a/pkg/renderer/sgml/xhtml5/document_details_test.go +++ b/pkg/renderer/sgml/xhtml5/document_details_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document details", func() { diff --git a/pkg/renderer/sgml/xhtml5/file_inclusion_test.go b/pkg/renderer/sgml/xhtml5/file_inclusion_test.go index f9a06a42..cf8c60b3 100644 --- a/pkg/renderer/sgml/xhtml5/file_inclusion_test.go +++ b/pkg/renderer/sgml/xhtml5/file_inclusion_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt log "github.com/sirupsen/logrus" ) diff --git a/pkg/renderer/sgml/xhtml5/footnote_reference_test.go b/pkg/renderer/sgml/xhtml5/footnote_reference_test.go index c5cbce33..981ef0d5 100644 --- a/pkg/renderer/sgml/xhtml5/footnote_reference_test.go +++ b/pkg/renderer/sgml/xhtml5/footnote_reference_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("footnotes", func() { diff --git a/pkg/renderer/sgml/xhtml5/icon_test.go b/pkg/renderer/sgml/xhtml5/icon_test.go index 831e1b7f..8e04453c 100644 --- a/pkg/renderer/sgml/xhtml5/icon_test.go +++ b/pkg/renderer/sgml/xhtml5/icon_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("icons", func() { diff --git a/pkg/renderer/sgml/xhtml5/image_test.go b/pkg/renderer/sgml/xhtml5/image_test.go index 26e80685..db1a9f6e 100644 --- a/pkg/renderer/sgml/xhtml5/image_test.go +++ b/pkg/renderer/sgml/xhtml5/image_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("images", func() { diff --git a/pkg/renderer/sgml/xhtml5/index_terms_test.go b/pkg/renderer/sgml/xhtml5/index_terms_test.go index e9be9bad..bc1ff5ff 100644 --- a/pkg/renderer/sgml/xhtml5/index_terms_test.go +++ b/pkg/renderer/sgml/xhtml5/index_terms_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("index terms", func() { diff --git a/pkg/renderer/sgml/xhtml5/labeled_list_test.go b/pkg/renderer/sgml/xhtml5/labeled_list_test.go index d8bed45a..b17eefbe 100644 --- a/pkg/renderer/sgml/xhtml5/labeled_list_test.go +++ b/pkg/renderer/sgml/xhtml5/labeled_list_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("labeled lists of items", func() { diff --git a/pkg/renderer/sgml/xhtml5/link_test.go b/pkg/renderer/sgml/xhtml5/link_test.go index 5a0ddfd2..5447adb0 100644 --- a/pkg/renderer/sgml/xhtml5/link_test.go +++ b/pkg/renderer/sgml/xhtml5/link_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("links", func() { diff --git a/pkg/renderer/sgml/xhtml5/ordered_list_test.go b/pkg/renderer/sgml/xhtml5/ordered_list_test.go index 9403bd14..be447750 100644 --- a/pkg/renderer/sgml/xhtml5/ordered_list_test.go +++ b/pkg/renderer/sgml/xhtml5/ordered_list_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("ordered lists", func() { diff --git a/pkg/renderer/sgml/xhtml5/paragraph_test.go b/pkg/renderer/sgml/xhtml5/paragraph_test.go index da967150..1be0167e 100644 --- a/pkg/renderer/sgml/xhtml5/paragraph_test.go +++ b/pkg/renderer/sgml/xhtml5/paragraph_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("paragraphs", func() { diff --git a/pkg/renderer/sgml/xhtml5/passthrough_test.go b/pkg/renderer/sgml/xhtml5/passthrough_test.go index 8d3ae64a..51180765 100644 --- a/pkg/renderer/sgml/xhtml5/passthrough_test.go +++ b/pkg/renderer/sgml/xhtml5/passthrough_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("passthroughs", func() { diff --git a/pkg/renderer/sgml/xhtml5/quoted_string_test.go b/pkg/renderer/sgml/xhtml5/quoted_string_test.go index d81d8eb4..f54cb489 100644 --- a/pkg/renderer/sgml/xhtml5/quoted_string_test.go +++ b/pkg/renderer/sgml/xhtml5/quoted_string_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("quoted strings", func() { diff --git a/pkg/renderer/sgml/xhtml5/quoted_text_test.go b/pkg/renderer/sgml/xhtml5/quoted_text_test.go index 15099784..8b917c90 100644 --- a/pkg/renderer/sgml/xhtml5/quoted_text_test.go +++ b/pkg/renderer/sgml/xhtml5/quoted_text_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("quoted texts", func() { diff --git a/pkg/renderer/sgml/xhtml5/section_test.go b/pkg/renderer/sgml/xhtml5/section_test.go index 55aa48e3..277dddb8 100644 --- a/pkg/renderer/sgml/xhtml5/section_test.go +++ b/pkg/renderer/sgml/xhtml5/section_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("sections", func() { diff --git a/pkg/renderer/sgml/xhtml5/string_test.go b/pkg/renderer/sgml/xhtml5/string_test.go index 81358813..9b6be01a 100644 --- a/pkg/renderer/sgml/xhtml5/string_test.go +++ b/pkg/renderer/sgml/xhtml5/string_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("strings", func() { diff --git a/pkg/renderer/sgml/xhtml5/suite_test.go b/pkg/renderer/sgml/xhtml5/suite_test.go index b7649c34..94386b65 100644 --- a/pkg/renderer/sgml/xhtml5/suite_test.go +++ b/pkg/renderer/sgml/xhtml5/suite_test.go @@ -6,8 +6,8 @@ import ( "github.com/bytesparadise/libasciidoc" "github.com/bytesparadise/libasciidoc/pkg/configuration" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt log "github.com/sirupsen/logrus" "testing" diff --git a/pkg/renderer/sgml/xhtml5/table_of_contents_test.go b/pkg/renderer/sgml/xhtml5/table_of_contents_test.go index a5cae9b9..481401ab 100644 --- a/pkg/renderer/sgml/xhtml5/table_of_contents_test.go +++ b/pkg/renderer/sgml/xhtml5/table_of_contents_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document toc", func() { diff --git a/pkg/renderer/sgml/xhtml5/table_test.go b/pkg/renderer/sgml/xhtml5/table_test.go index e413b636..29960405 100644 --- a/pkg/renderer/sgml/xhtml5/table_test.go +++ b/pkg/renderer/sgml/xhtml5/table_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("tables", func() { diff --git a/pkg/renderer/sgml/xhtml5/thematic_break_test.go b/pkg/renderer/sgml/xhtml5/thematic_break_test.go index db821c2b..0557d1bb 100644 --- a/pkg/renderer/sgml/xhtml5/thematic_break_test.go +++ b/pkg/renderer/sgml/xhtml5/thematic_break_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("thematic breaks", func() { diff --git a/pkg/renderer/sgml/xhtml5/unordered_list_test.go b/pkg/renderer/sgml/xhtml5/unordered_list_test.go index 64635d56..6b9a07f2 100644 --- a/pkg/renderer/sgml/xhtml5/unordered_list_test.go +++ b/pkg/renderer/sgml/xhtml5/unordered_list_test.go @@ -3,8 +3,8 @@ package xhtml5_test import ( . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("unordered lists", func() { diff --git a/pkg/renderer/sgml/xhtml5/user_macro_test.go b/pkg/renderer/sgml/xhtml5/user_macro_test.go index d35a8b63..70ae1041 100644 --- a/pkg/renderer/sgml/xhtml5/user_macro_test.go +++ b/pkg/renderer/sgml/xhtml5/user_macro_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/renderer/sgml" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var helloMacroTmpl *texttemplate.Template diff --git a/pkg/renderer/sgml/xhtml5/xhtml5_test.go b/pkg/renderer/sgml/xhtml5/xhtml5_test.go index 7026fe76..2a8dbc01 100644 --- a/pkg/renderer/sgml/xhtml5/xhtml5_test.go +++ b/pkg/renderer/sgml/xhtml5/xhtml5_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" . "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document header", func() { diff --git a/pkg/types/attributes.go b/pkg/types/attributes.go index 04c4c760..c9c1d907 100644 --- a/pkg/types/attributes.go +++ b/pkg/types/attributes.go @@ -34,6 +34,8 @@ const ( AttrTableOfContents = "toc" // AttrTableOfContentsLevels the document attribute which specifies the number of levels to display in the ToC AttrTableOfContentsLevels = "toclevels" + // AttrTableOfContentsTitle the document attribute which specifies the title of the table of contents + AttrTableOfContentsTitle = "toc-title" // AttrNoHeader attribute to disable the rendering of document footer AttrNoHeader = "noheader" // AttrNoFooter attribute to disable the rendering of document footer diff --git a/pkg/types/non_alphanumeric_replacement_test.go b/pkg/types/non_alphanumeric_replacement_test.go index 892c26ed..c8c99299 100644 --- a/pkg/types/non_alphanumeric_replacement_test.go +++ b/pkg/types/non_alphanumeric_replacement_test.go @@ -3,8 +3,8 @@ package types_test import ( "github.com/bytesparadise/libasciidoc/pkg/types" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("normalizing string", func() { diff --git a/pkg/types/types_suite_test.go b/pkg/types/types_suite_test.go index 34253936..59864035 100644 --- a/pkg/types/types_suite_test.go +++ b/pkg/types/types_suite_test.go @@ -5,8 +5,8 @@ import ( _ "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) func TestTypes(t *testing.T) { diff --git a/pkg/types/types_test.go b/pkg/types/types_test.go index 0976ad7d..138b4bb5 100644 --- a/pkg/types/types_test.go +++ b/pkg/types/types_test.go @@ -3,9 +3,9 @@ package types_test import ( "github.com/bytesparadise/libasciidoc/pkg/types" - . "github.com/onsi/ginkgo" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint . "github.com/onsi/ginkgo/extensions/table" - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("line ranges", func() { diff --git a/pkg/types/types_utils_test.go b/pkg/types/types_utils_test.go index 129ca3b7..b1d69348 100644 --- a/pkg/types/types_utils_test.go +++ b/pkg/types/types_utils_test.go @@ -2,9 +2,9 @@ package types_test import ( "github.com/bytesparadise/libasciidoc/pkg/types" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/ginkgo/extensions/table" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/ginkgo/extensions/table" // nolint:golintt + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("convert to inline elements", func() { diff --git a/pkg/validator/validator_suite_test.go b/pkg/validator/validator_suite_test.go index b76f5983..0530cd6a 100644 --- a/pkg/validator/validator_suite_test.go +++ b/pkg/validator/validator_suite_test.go @@ -3,8 +3,8 @@ package validator_test import ( "testing" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) func TestValidator(t *testing.T) { diff --git a/pkg/validator/validator_test.go b/pkg/validator/validator_test.go index 1eb17fd3..96c07d07 100644 --- a/pkg/validator/validator_test.go +++ b/pkg/validator/validator_test.go @@ -3,8 +3,8 @@ package validator import ( "github.com/bytesparadise/libasciidoc/pkg/types" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document validator", func() { diff --git a/test/pending_fixtures_test.go b/test/pending_fixtures_test.go index 57af3a10..8d5da658 100644 --- a/test/pending_fixtures_test.go +++ b/test/pending_fixtures_test.go @@ -3,7 +3,7 @@ package test_test import ( - . "github.com/onsi/ginkgo" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint . "github.com/onsi/ginkgo/extensions/table" ) diff --git a/test/supported_fixtures_test.go b/test/supported_fixtures_test.go index 6b9e3e6f..5239b176 100644 --- a/test/supported_fixtures_test.go +++ b/test/supported_fixtures_test.go @@ -10,9 +10,9 @@ import ( "github.com/bytesparadise/libasciidoc" "github.com/bytesparadise/libasciidoc/pkg/configuration" - . "github.com/onsi/ginkgo" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint . "github.com/onsi/ginkgo/extensions/table" - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/gomega" // nolint:golintt log "github.com/sirupsen/logrus" ) diff --git a/test/test_suite_test.go b/test/test_suite_test.go index feec15a0..d95d7d01 100644 --- a/test/test_suite_test.go +++ b/test/test_suite_test.go @@ -3,8 +3,8 @@ package test_test import ( "testing" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt _ "github.com/bytesparadise/libasciidoc/testsupport" ) diff --git a/testsupport/console_matcher_test.go b/testsupport/console_matcher_test.go index 251388cb..79c9b12c 100644 --- a/testsupport/console_matcher_test.go +++ b/testsupport/console_matcher_test.go @@ -5,8 +5,8 @@ import ( "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt log "github.com/sirupsen/logrus" ) diff --git a/testsupport/document_fragment_groups_matcher_test.go b/testsupport/document_fragment_groups_matcher_test.go index b13df55e..afad8e40 100644 --- a/testsupport/document_fragment_groups_matcher_test.go +++ b/testsupport/document_fragment_groups_matcher_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/testsupport" "github.com/davecgh/go-spew/spew" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt "github.com/sergi/go-diff/diffmatchpatch" ) diff --git a/testsupport/document_fragment_matcher_test.go b/testsupport/document_fragment_matcher_test.go index d323e5b9..456c1f83 100644 --- a/testsupport/document_fragment_matcher_test.go +++ b/testsupport/document_fragment_matcher_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/testsupport" "github.com/google/go-cmp/cmp" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document fragments matcher", func() { diff --git a/testsupport/document_fragments_matcher_test.go b/testsupport/document_fragments_matcher_test.go index 713f8cc9..5af5b933 100644 --- a/testsupport/document_fragments_matcher_test.go +++ b/testsupport/document_fragments_matcher_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/testsupport" "github.com/davecgh/go-spew/spew" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt "github.com/sergi/go-diff/diffmatchpatch" ) diff --git a/testsupport/document_matcher_test.go b/testsupport/document_matcher_test.go index b1a76c7a..629b3c55 100644 --- a/testsupport/document_matcher_test.go +++ b/testsupport/document_matcher_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/testsupport" "github.com/google/go-cmp/cmp" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document matcher", func() { diff --git a/testsupport/document_metadata_test.go b/testsupport/document_metadata_test.go index f6db1357..259cbd92 100644 --- a/testsupport/document_metadata_test.go +++ b/testsupport/document_metadata_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document metadata", func() { diff --git a/testsupport/html5_matcher.go b/testsupport/html5_matcher.go index 4fb1c0f3..1577b041 100644 --- a/testsupport/html5_matcher.go +++ b/testsupport/html5_matcher.go @@ -3,7 +3,7 @@ package testsupport import ( "fmt" - . "github.com/onsi/ginkgo" //nolint go-lint + . "github.com/onsi/ginkgo" // nolint go-lint gomegatypes "github.com/onsi/gomega/types" "github.com/pkg/errors" "github.com/sergi/go-diff/diffmatchpatch" diff --git a/testsupport/html5_matcher_test.go b/testsupport/html5_matcher_test.go index 9aef88b0..7e10253b 100644 --- a/testsupport/html5_matcher_test.go +++ b/testsupport/html5_matcher_test.go @@ -9,8 +9,8 @@ import ( "github.com/bytesparadise/libasciidoc/testsupport" "github.com/sergi/go-diff/diffmatchpatch" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("html5 template matcher", func() { diff --git a/testsupport/html5_template_matcher_test.go b/testsupport/html5_template_matcher_test.go index 9aef88b0..7e10253b 100644 --- a/testsupport/html5_template_matcher_test.go +++ b/testsupport/html5_template_matcher_test.go @@ -9,8 +9,8 @@ import ( "github.com/bytesparadise/libasciidoc/testsupport" "github.com/sergi/go-diff/diffmatchpatch" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("html5 template matcher", func() { diff --git a/testsupport/inline_elements_matcher_test.go b/testsupport/inline_elements_matcher_test.go index c026b499..3c11085e 100644 --- a/testsupport/inline_elements_matcher_test.go +++ b/testsupport/inline_elements_matcher_test.go @@ -7,8 +7,8 @@ import ( "github.com/bytesparadise/libasciidoc/testsupport" "github.com/davecgh/go-spew/spew" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt "github.com/sergi/go-diff/diffmatchpatch" ) diff --git a/testsupport/metadata_matcher_test.go b/testsupport/metadata_matcher_test.go index edaa4304..e414d266 100644 --- a/testsupport/metadata_matcher_test.go +++ b/testsupport/metadata_matcher_test.go @@ -3,8 +3,8 @@ package testsupport_test import ( "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("html5 body renderer", func() { diff --git a/testsupport/parse_document_fragment_groups_test.go b/testsupport/parse_document_fragment_groups_test.go index 46d4f086..9fc908b4 100644 --- a/testsupport/parse_document_fragment_groups_test.go +++ b/testsupport/parse_document_fragment_groups_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("parse document fragment groups", func() { diff --git a/testsupport/parse_document_test.go b/testsupport/parse_document_test.go index d33a7b9f..9b4f60d8 100644 --- a/testsupport/parse_document_test.go +++ b/testsupport/parse_document_test.go @@ -4,8 +4,8 @@ import ( "github.com/bytesparadise/libasciidoc/pkg/types" "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("parse document", func() { diff --git a/testsupport/render_html5_test.go b/testsupport/render_html5_test.go index ee99e470..42856fb0 100644 --- a/testsupport/render_html5_test.go +++ b/testsupport/render_html5_test.go @@ -3,8 +3,8 @@ package testsupport_test import ( "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("html5 body renderer", func() { diff --git a/testsupport/table_of_contents_matcher_test.go b/testsupport/table_of_contents_matcher_test.go index e642ab82..ed2e382e 100644 --- a/testsupport/table_of_contents_matcher_test.go +++ b/testsupport/table_of_contents_matcher_test.go @@ -8,8 +8,8 @@ import ( "github.com/google/go-cmp/cmp" "github.com/google/go-cmp/cmp/cmpopts" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) var _ = Describe("document fragments matcher", func() { diff --git a/testsupport/testsupport_suite_test.go b/testsupport/testsupport_suite_test.go index 977be419..d52fbf47 100644 --- a/testsupport/testsupport_suite_test.go +++ b/testsupport/testsupport_suite_test.go @@ -5,8 +5,8 @@ import ( _ "github.com/bytesparadise/libasciidoc/testsupport" - . "github.com/onsi/ginkgo" //nolint golint - . "github.com/onsi/gomega" //nolint golint + . "github.com/onsi/ginkgo" // nolint:golint + . "github.com/onsi/gomega" // nolint:golintt ) func TestTestsupport(t *testing.T) {