mkrf 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +2 -0
- data/MIT-LICENSE +7 -0
- data/README +54 -0
- data/Rakefile +107 -0
- data/lib/mkrf.rb +4 -0
- data/lib/mkrf/availability.rb +219 -0
- data/lib/mkrf/generator.rb +146 -0
- data/test/abstract_unit.rb +4 -0
- data/test/fixtures/down_a_directory/header_down_a_directory.h +1 -0
- data/test/fixtures/stdmkrf.h +1 -0
- data/test/sample_files/libtrivial/Rakefile +31 -0
- data/test/sample_files/libtrivial/extconf.rb +3 -0
- data/test/sample_files/libtrivial/lib/libtrivial.c +5 -0
- data/test/sample_files/libtrivial/lib/libtrivial.o +0 -0
- data/test/sample_files/libtrivial/libtrivial_so.bundle +0 -0
- data/test/sample_files/libtrivial/mkrf.log +1 -0
- data/test/sample_files/libxml-ruby-0.3.8/CHANGELOG +74 -0
- data/test/sample_files/libxml-ruby-0.3.8/LICENSE +22 -0
- data/test/sample_files/libxml-ruby-0.3.8/README +144 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/cbg.c +76 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/extconf.rb +49 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.c +86 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.h +82 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/libxml.rb +107 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/mkrf.log +1 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/old_extconf.rb +95 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.c +372 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attr.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.c +224 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_attribute.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.c +1159 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_document.h +27 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.c +168 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_dtd.h +17 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.c +167 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_input_cbg.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.c +2139 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node.h +28 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.c +248 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_node_set.h +26 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.c +153 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_ns.h +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.c +1417 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser.h +31 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.c +715 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_parser_context.h +22 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.c +426 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_sax_parser.h +52 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.c +142 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_schema.h +16 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.c +43 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_tree.h +12 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c +20 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.h +13 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.c +363 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath.h +24 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.c +125 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpath_context.h +24 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.c +100 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer.h +27 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.c +21 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xpointer_context.h +18 -0
- data/test/sample_files/libxml-ruby-0.3.8/ext/xml/sax_parser_callbacks.inc +202 -0
- data/test/sample_files/syck-0.55/CHANGELOG +186 -0
- data/test/sample_files/syck-0.55/COPYING +54 -0
- data/test/sample_files/syck-0.55/Makefile +582 -0
- data/test/sample_files/syck-0.55/Makefile.am +5 -0
- data/test/sample_files/syck-0.55/Makefile.in +582 -0
- data/test/sample_files/syck-0.55/README +105 -0
- data/test/sample_files/syck-0.55/README.BYTECODE +484 -0
- data/test/sample_files/syck-0.55/README.EXT +444 -0
- data/test/sample_files/syck-0.55/RELEASE +123 -0
- data/test/sample_files/syck-0.55/TODO +25 -0
- data/test/sample_files/syck-0.55/aclocal.m4 +883 -0
- data/test/sample_files/syck-0.55/bootstrap +7 -0
- data/test/sample_files/syck-0.55/config.h +79 -0
- data/test/sample_files/syck-0.55/config.h.in +78 -0
- data/test/sample_files/syck-0.55/config.status +1197 -0
- data/test/sample_files/syck-0.55/config/README +14 -0
- data/test/sample_files/syck-0.55/config/depcomp +529 -0
- data/test/sample_files/syck-0.55/config/install-sh +323 -0
- data/test/sample_files/syck-0.55/config/missing +357 -0
- data/test/sample_files/syck-0.55/configure +6728 -0
- data/test/sample_files/syck-0.55/configure.in +36 -0
- data/test/sample_files/syck-0.55/ext/ruby/CHANGELOG +303 -0
- data/test/sample_files/syck-0.55/ext/ruby/README +400 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/MANIFEST +1 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/bytecode.c +1170 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/emitter.c +1224 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/extconf.rb +10 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.c +1894 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/gram.h +79 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/handler.c +174 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/implicit.c +2989 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/mkrf.log +1 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/node.c +407 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/rubyext.c +2385 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.c +504 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/syck.h +458 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/token.c +2707 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yaml2byte.c +250 -0
- data/test/sample_files/syck-0.55/ext/ruby/ext/syck/yamlbyte.h +170 -0
- data/test/sample_files/syck-0.55/ext/ruby/install.rb +1022 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay.rb +161 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay/news.rb +69 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/okay/rpc.rb +434 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml.rb +436 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/baseemitter.rb +247 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/basenode.rb +216 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/compat.rb +26 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/constants.rb +45 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/dbm.rb +111 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/emitter.rb +107 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/encoding.rb +33 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/error.rb +34 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/rubytypes.rb +438 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/store.rb +29 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/stream.rb +40 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/stringio.rb +83 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/syck.rb +19 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/tag.rb +86 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/types.rb +188 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/yamlnode.rb +54 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yaml/ypath.rb +52 -0
- data/test/sample_files/syck-0.55/ext/ruby/lib/yod.rb +1168 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-modules.rb +27 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-sample.rb +336 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayNews-validate.rb +341 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-client.rb +51 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/okayRpc-server.rb +85 -0
- data/test/sample_files/syck-0.55/ext/ruby/samples/yaml-sortHashKeys.rb +128 -0
- data/test/sample_files/syck-0.55/ext/ruby/tests/basic.rb +1653 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsAnchorAlias.yml +51 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBasicTests.yml +282 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockMapping.yml +78 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsBlockSequence.yml +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsDocumentSeparator.yml +102 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsErrorTests.yml +23 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsFlowCollections.yml +73 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsFoldedScalars.yml +215 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsMapInSeq.yml +0 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsNullsAndEmpties.yml +66 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsRubyTests.yml +182 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsSpecificationExamples.yml +2699 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsTypeTransfers.yml +265 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/YtsYpath.yml +221 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/cookbook.rb +159 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/index.yml +10 -0
- data/test/sample_files/syck-0.55/ext/ruby/yts/yts.rb +193 -0
- data/test/sample_files/syck-0.55/lib/Makefile +497 -0
- data/test/sample_files/syck-0.55/lib/Makefile.am +27 -0
- data/test/sample_files/syck-0.55/lib/Makefile.in +497 -0
- data/test/sample_files/syck-0.55/lib/bytecode.c +1170 -0
- data/test/sample_files/syck-0.55/lib/bytecode.re +525 -0
- data/test/sample_files/syck-0.55/lib/emitter.c +1224 -0
- data/test/sample_files/syck-0.55/lib/gram.c +1894 -0
- data/test/sample_files/syck-0.55/lib/gram.h +79 -0
- data/test/sample_files/syck-0.55/lib/gram.output +2005 -0
- data/test/sample_files/syck-0.55/lib/gram.y +481 -0
- data/test/sample_files/syck-0.55/lib/handler.c +174 -0
- data/test/sample_files/syck-0.55/lib/implicit.c +2989 -0
- data/test/sample_files/syck-0.55/lib/implicit.re +206 -0
- data/test/sample_files/syck-0.55/lib/node.c +407 -0
- data/test/sample_files/syck-0.55/lib/syck.c +504 -0
- data/test/sample_files/syck-0.55/lib/syck.h +458 -0
- data/test/sample_files/syck-0.55/lib/syck_st.c +577 -0
- data/test/sample_files/syck-0.55/lib/syck_st.h +46 -0
- data/test/sample_files/syck-0.55/lib/token.c +2707 -0
- data/test/sample_files/syck-0.55/lib/token.re +1139 -0
- data/test/sample_files/syck-0.55/lib/yaml2byte.c +250 -0
- data/test/sample_files/syck-0.55/lib/yamlbyte.h +170 -0
- data/test/sample_files/syck-0.55/stamp-h1 +1 -0
- data/test/sample_files/syck-0.55/tests/Basic.c +141 -0
- data/test/sample_files/syck-0.55/tests/CuTest.c +294 -0
- data/test/sample_files/syck-0.55/tests/CuTest.h +84 -0
- data/test/sample_files/syck-0.55/tests/Emit.c +87 -0
- data/test/sample_files/syck-0.55/tests/Makefile +480 -0
- data/test/sample_files/syck-0.55/tests/Makefile.am +13 -0
- data/test/sample_files/syck-0.55/tests/Makefile.in +480 -0
- data/test/sample_files/syck-0.55/tests/Parse.c +208 -0
- data/test/sample_files/syck-0.55/tests/YTS.c +2310 -0
- data/test/sample_files/syck-0.55/tests/YTS.c.erb +326 -0
- data/test/sample_files/syck-0.55/tests/YTS.c.rb +44 -0
- data/test/test_availability.rb +68 -0
- data/test/test_generator.rb +74 -0
- metadata +252 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/* A Bison parser, made by GNU Bison 1.875d. */
|
|
2
|
+
|
|
3
|
+
/* Skeleton parser for Yacc-like parsing with Bison,
|
|
4
|
+
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
|
|
5
|
+
|
|
6
|
+
This program is free software; you can redistribute it and/or modify
|
|
7
|
+
it under the terms of the GNU General Public License as published by
|
|
8
|
+
the Free Software Foundation; either version 2, or (at your option)
|
|
9
|
+
any later version.
|
|
10
|
+
|
|
11
|
+
This program is distributed in the hope that it will be useful,
|
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
GNU General Public License for more details.
|
|
15
|
+
|
|
16
|
+
You should have received a copy of the GNU General Public License
|
|
17
|
+
along with this program; if not, write to the Free Software
|
|
18
|
+
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19
|
+
Boston, MA 02111-1307, USA. */
|
|
20
|
+
|
|
21
|
+
/* As a special exception, when this file is copied by Bison into a
|
|
22
|
+
Bison output file, you may use that output file without restriction.
|
|
23
|
+
This special exception was added by the Free Software Foundation
|
|
24
|
+
in version 1.24 of Bison. */
|
|
25
|
+
|
|
26
|
+
/* Tokens. */
|
|
27
|
+
#ifndef YYTOKENTYPE
|
|
28
|
+
# define YYTOKENTYPE
|
|
29
|
+
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
30
|
+
know about them. */
|
|
31
|
+
enum yytokentype {
|
|
32
|
+
YAML_ANCHOR = 258,
|
|
33
|
+
YAML_ALIAS = 259,
|
|
34
|
+
YAML_TRANSFER = 260,
|
|
35
|
+
YAML_TAGURI = 261,
|
|
36
|
+
YAML_ITRANSFER = 262,
|
|
37
|
+
YAML_WORD = 263,
|
|
38
|
+
YAML_PLAIN = 264,
|
|
39
|
+
YAML_BLOCK = 265,
|
|
40
|
+
YAML_DOCSEP = 266,
|
|
41
|
+
YAML_IOPEN = 267,
|
|
42
|
+
YAML_INDENT = 268,
|
|
43
|
+
YAML_IEND = 269
|
|
44
|
+
};
|
|
45
|
+
#endif
|
|
46
|
+
#define YAML_ANCHOR 258
|
|
47
|
+
#define YAML_ALIAS 259
|
|
48
|
+
#define YAML_TRANSFER 260
|
|
49
|
+
#define YAML_TAGURI 261
|
|
50
|
+
#define YAML_ITRANSFER 262
|
|
51
|
+
#define YAML_WORD 263
|
|
52
|
+
#define YAML_PLAIN 264
|
|
53
|
+
#define YAML_BLOCK 265
|
|
54
|
+
#define YAML_DOCSEP 266
|
|
55
|
+
#define YAML_IOPEN 267
|
|
56
|
+
#define YAML_INDENT 268
|
|
57
|
+
#define YAML_IEND 269
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED)
|
|
63
|
+
#line 35 "gram.y"
|
|
64
|
+
typedef union YYSTYPE {
|
|
65
|
+
SYMID nodeId;
|
|
66
|
+
SyckNode *nodeData;
|
|
67
|
+
char *name;
|
|
68
|
+
} YYSTYPE;
|
|
69
|
+
/* Line 1285 of yacc.c. */
|
|
70
|
+
#line 71 "gram.h"
|
|
71
|
+
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
72
|
+
# define YYSTYPE_IS_DECLARED 1
|
|
73
|
+
# define YYSTYPE_IS_TRIVIAL 1
|
|
74
|
+
#endif
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
@@ -0,0 +1,2005 @@
|
|
|
1
|
+
Grammar
|
|
2
|
+
|
|
3
|
+
0 $accept: doc $end
|
|
4
|
+
|
|
5
|
+
1 doc: atom
|
|
6
|
+
2 | YAML_DOCSEP atom_or_empty
|
|
7
|
+
3 | /* empty */
|
|
8
|
+
|
|
9
|
+
4 atom: word_rep
|
|
10
|
+
5 | ind_rep
|
|
11
|
+
|
|
12
|
+
6 ind_rep: struct_rep
|
|
13
|
+
7 | YAML_TRANSFER ind_rep
|
|
14
|
+
8 | YAML_TAGURI ind_rep
|
|
15
|
+
9 | YAML_ANCHOR ind_rep
|
|
16
|
+
10 | indent_open ind_rep indent_flex_end
|
|
17
|
+
|
|
18
|
+
11 atom_or_empty: atom
|
|
19
|
+
12 | empty
|
|
20
|
+
|
|
21
|
+
13 empty: indent_open empty indent_end
|
|
22
|
+
14 | /* empty */
|
|
23
|
+
15 | YAML_ITRANSFER empty
|
|
24
|
+
16 | YAML_TRANSFER empty
|
|
25
|
+
17 | YAML_TAGURI empty
|
|
26
|
+
18 | YAML_ANCHOR empty
|
|
27
|
+
|
|
28
|
+
19 indent_open: YAML_IOPEN
|
|
29
|
+
20 | indent_open YAML_INDENT
|
|
30
|
+
|
|
31
|
+
21 indent_end: YAML_IEND
|
|
32
|
+
|
|
33
|
+
22 indent_sep: YAML_INDENT
|
|
34
|
+
|
|
35
|
+
23 indent_flex_end: YAML_IEND
|
|
36
|
+
24 | indent_sep indent_flex_end
|
|
37
|
+
|
|
38
|
+
25 word_rep: YAML_TRANSFER word_rep
|
|
39
|
+
26 | YAML_TAGURI word_rep
|
|
40
|
+
27 | YAML_ITRANSFER word_rep
|
|
41
|
+
28 | YAML_ANCHOR word_rep
|
|
42
|
+
29 | YAML_ALIAS
|
|
43
|
+
30 | YAML_WORD
|
|
44
|
+
31 | YAML_PLAIN
|
|
45
|
+
32 | indent_open word_rep indent_flex_end
|
|
46
|
+
|
|
47
|
+
33 struct_rep: YAML_BLOCK
|
|
48
|
+
34 | implicit_seq
|
|
49
|
+
35 | inline_seq
|
|
50
|
+
36 | implicit_map
|
|
51
|
+
37 | inline_map
|
|
52
|
+
|
|
53
|
+
38 implicit_seq: indent_open top_imp_seq indent_end
|
|
54
|
+
39 | indent_open in_implicit_seq indent_end
|
|
55
|
+
|
|
56
|
+
40 basic_seq: '-' atom_or_empty
|
|
57
|
+
|
|
58
|
+
41 top_imp_seq: YAML_TRANSFER indent_sep in_implicit_seq
|
|
59
|
+
42 | YAML_TRANSFER top_imp_seq
|
|
60
|
+
43 | YAML_TAGURI indent_sep in_implicit_seq
|
|
61
|
+
44 | YAML_TAGURI top_imp_seq
|
|
62
|
+
45 | YAML_ANCHOR indent_sep in_implicit_seq
|
|
63
|
+
46 | YAML_ANCHOR top_imp_seq
|
|
64
|
+
|
|
65
|
+
47 in_implicit_seq: basic_seq
|
|
66
|
+
48 | in_implicit_seq indent_sep basic_seq
|
|
67
|
+
49 | in_implicit_seq indent_sep
|
|
68
|
+
|
|
69
|
+
50 inline_seq: '[' in_inline_seq ']'
|
|
70
|
+
51 | '[' ']'
|
|
71
|
+
|
|
72
|
+
52 in_inline_seq: inline_seq_atom
|
|
73
|
+
53 | in_inline_seq ',' inline_seq_atom
|
|
74
|
+
|
|
75
|
+
54 inline_seq_atom: atom
|
|
76
|
+
55 | basic_mapping
|
|
77
|
+
|
|
78
|
+
56 implicit_map: indent_open top_imp_map indent_end
|
|
79
|
+
57 | indent_open in_implicit_map indent_end
|
|
80
|
+
|
|
81
|
+
58 top_imp_map: YAML_TRANSFER indent_sep in_implicit_map
|
|
82
|
+
59 | YAML_TRANSFER top_imp_map
|
|
83
|
+
60 | YAML_TAGURI indent_sep in_implicit_map
|
|
84
|
+
61 | YAML_TAGURI top_imp_map
|
|
85
|
+
62 | YAML_ANCHOR indent_sep in_implicit_map
|
|
86
|
+
63 | YAML_ANCHOR top_imp_map
|
|
87
|
+
|
|
88
|
+
64 complex_key: word_rep
|
|
89
|
+
65 | '?' atom indent_sep
|
|
90
|
+
|
|
91
|
+
66 complex_value: atom_or_empty
|
|
92
|
+
|
|
93
|
+
67 complex_mapping: complex_key ':' complex_value
|
|
94
|
+
|
|
95
|
+
68 in_implicit_map: complex_mapping
|
|
96
|
+
69 | in_implicit_map indent_sep basic_seq
|
|
97
|
+
70 | in_implicit_map indent_sep complex_mapping
|
|
98
|
+
71 | in_implicit_map indent_sep
|
|
99
|
+
|
|
100
|
+
72 basic_mapping: atom ':' atom_or_empty
|
|
101
|
+
|
|
102
|
+
73 inline_map: '{' in_inline_map '}'
|
|
103
|
+
74 | '{' '}'
|
|
104
|
+
|
|
105
|
+
75 in_inline_map: inline_map_atom
|
|
106
|
+
76 | in_inline_map ',' inline_map_atom
|
|
107
|
+
|
|
108
|
+
77 inline_map_atom: atom
|
|
109
|
+
78 | basic_mapping
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
Terminals, with rules where they appear
|
|
113
|
+
|
|
114
|
+
$end (0) 0
|
|
115
|
+
',' (44) 53 76
|
|
116
|
+
'-' (45) 40
|
|
117
|
+
':' (58) 67 72
|
|
118
|
+
'?' (63) 65
|
|
119
|
+
'[' (91) 50 51
|
|
120
|
+
']' (93) 50 51
|
|
121
|
+
'{' (123) 73 74
|
|
122
|
+
'}' (125) 73 74
|
|
123
|
+
error (256)
|
|
124
|
+
YAML_ANCHOR (258) 9 18 28 45 46 62 63
|
|
125
|
+
YAML_ALIAS (259) 29
|
|
126
|
+
YAML_TRANSFER (260) 7 16 25 41 42 58 59
|
|
127
|
+
YAML_TAGURI (261) 8 17 26 43 44 60 61
|
|
128
|
+
YAML_ITRANSFER (262) 15 27
|
|
129
|
+
YAML_WORD (263) 30
|
|
130
|
+
YAML_PLAIN (264) 31
|
|
131
|
+
YAML_BLOCK (265) 33
|
|
132
|
+
YAML_DOCSEP (266) 2
|
|
133
|
+
YAML_IOPEN (267) 19
|
|
134
|
+
YAML_INDENT (268) 20 22
|
|
135
|
+
YAML_IEND (269) 21 23
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
Nonterminals, with rules where they appear
|
|
139
|
+
|
|
140
|
+
$accept (23)
|
|
141
|
+
on left: 0
|
|
142
|
+
doc (24)
|
|
143
|
+
on left: 1 2 3, on right: 0
|
|
144
|
+
atom (25)
|
|
145
|
+
on left: 4 5, on right: 1 11 54 65 72 77
|
|
146
|
+
ind_rep (26)
|
|
147
|
+
on left: 6 7 8 9 10, on right: 5 7 8 9 10
|
|
148
|
+
atom_or_empty (27)
|
|
149
|
+
on left: 11 12, on right: 2 40 66 72
|
|
150
|
+
empty (28)
|
|
151
|
+
on left: 13 14 15 16 17 18, on right: 12 13 15 16 17 18
|
|
152
|
+
indent_open (29)
|
|
153
|
+
on left: 19 20, on right: 10 13 20 32 38 39 56 57
|
|
154
|
+
indent_end (30)
|
|
155
|
+
on left: 21, on right: 13 38 39 56 57
|
|
156
|
+
indent_sep (31)
|
|
157
|
+
on left: 22, on right: 24 41 43 45 48 49 58 60 62 65 69 70 71
|
|
158
|
+
indent_flex_end (32)
|
|
159
|
+
on left: 23 24, on right: 10 24 32
|
|
160
|
+
word_rep (33)
|
|
161
|
+
on left: 25 26 27 28 29 30 31 32, on right: 4 25 26 27 28 32 64
|
|
162
|
+
struct_rep (34)
|
|
163
|
+
on left: 33 34 35 36 37, on right: 6
|
|
164
|
+
implicit_seq (35)
|
|
165
|
+
on left: 38 39, on right: 34
|
|
166
|
+
basic_seq (36)
|
|
167
|
+
on left: 40, on right: 47 48 69
|
|
168
|
+
top_imp_seq (37)
|
|
169
|
+
on left: 41 42 43 44 45 46, on right: 38 42 44 46
|
|
170
|
+
in_implicit_seq (38)
|
|
171
|
+
on left: 47 48 49, on right: 39 41 43 45 48 49
|
|
172
|
+
inline_seq (39)
|
|
173
|
+
on left: 50 51, on right: 35
|
|
174
|
+
in_inline_seq (40)
|
|
175
|
+
on left: 52 53, on right: 50 53
|
|
176
|
+
inline_seq_atom (41)
|
|
177
|
+
on left: 54 55, on right: 52 53
|
|
178
|
+
implicit_map (42)
|
|
179
|
+
on left: 56 57, on right: 36
|
|
180
|
+
top_imp_map (43)
|
|
181
|
+
on left: 58 59 60 61 62 63, on right: 56 59 61 63
|
|
182
|
+
complex_key (44)
|
|
183
|
+
on left: 64 65, on right: 67
|
|
184
|
+
complex_value (45)
|
|
185
|
+
on left: 66, on right: 67
|
|
186
|
+
complex_mapping (46)
|
|
187
|
+
on left: 67, on right: 68 70
|
|
188
|
+
in_implicit_map (47)
|
|
189
|
+
on left: 68 69 70 71, on right: 57 58 60 62 69 70 71
|
|
190
|
+
basic_mapping (48)
|
|
191
|
+
on left: 72, on right: 55 78
|
|
192
|
+
inline_map (49)
|
|
193
|
+
on left: 73 74, on right: 37
|
|
194
|
+
in_inline_map (50)
|
|
195
|
+
on left: 75 76, on right: 73 76
|
|
196
|
+
inline_map_atom (51)
|
|
197
|
+
on left: 77 78, on right: 75 76
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
state 0
|
|
201
|
+
|
|
202
|
+
0 $accept: . doc $end
|
|
203
|
+
|
|
204
|
+
YAML_ANCHOR shift, and go to state 1
|
|
205
|
+
YAML_ALIAS shift, and go to state 2
|
|
206
|
+
YAML_TRANSFER shift, and go to state 3
|
|
207
|
+
YAML_TAGURI shift, and go to state 4
|
|
208
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
209
|
+
YAML_WORD shift, and go to state 6
|
|
210
|
+
YAML_PLAIN shift, and go to state 7
|
|
211
|
+
YAML_BLOCK shift, and go to state 8
|
|
212
|
+
YAML_DOCSEP shift, and go to state 9
|
|
213
|
+
YAML_IOPEN shift, and go to state 10
|
|
214
|
+
'[' shift, and go to state 11
|
|
215
|
+
'{' shift, and go to state 12
|
|
216
|
+
|
|
217
|
+
$default reduce using rule 3 (doc)
|
|
218
|
+
|
|
219
|
+
doc go to state 13
|
|
220
|
+
atom go to state 14
|
|
221
|
+
ind_rep go to state 15
|
|
222
|
+
indent_open go to state 16
|
|
223
|
+
word_rep go to state 17
|
|
224
|
+
struct_rep go to state 18
|
|
225
|
+
implicit_seq go to state 19
|
|
226
|
+
inline_seq go to state 20
|
|
227
|
+
implicit_map go to state 21
|
|
228
|
+
inline_map go to state 22
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
state 1
|
|
232
|
+
|
|
233
|
+
9 ind_rep: YAML_ANCHOR . ind_rep
|
|
234
|
+
28 word_rep: YAML_ANCHOR . word_rep
|
|
235
|
+
|
|
236
|
+
YAML_ANCHOR shift, and go to state 1
|
|
237
|
+
YAML_ALIAS shift, and go to state 2
|
|
238
|
+
YAML_TRANSFER shift, and go to state 3
|
|
239
|
+
YAML_TAGURI shift, and go to state 4
|
|
240
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
241
|
+
YAML_WORD shift, and go to state 6
|
|
242
|
+
YAML_PLAIN shift, and go to state 7
|
|
243
|
+
YAML_BLOCK shift, and go to state 8
|
|
244
|
+
YAML_IOPEN shift, and go to state 10
|
|
245
|
+
'[' shift, and go to state 11
|
|
246
|
+
'{' shift, and go to state 12
|
|
247
|
+
|
|
248
|
+
ind_rep go to state 23
|
|
249
|
+
indent_open go to state 16
|
|
250
|
+
word_rep go to state 24
|
|
251
|
+
struct_rep go to state 18
|
|
252
|
+
implicit_seq go to state 19
|
|
253
|
+
inline_seq go to state 20
|
|
254
|
+
implicit_map go to state 21
|
|
255
|
+
inline_map go to state 22
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
state 2
|
|
259
|
+
|
|
260
|
+
29 word_rep: YAML_ALIAS .
|
|
261
|
+
|
|
262
|
+
$default reduce using rule 29 (word_rep)
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
state 3
|
|
266
|
+
|
|
267
|
+
7 ind_rep: YAML_TRANSFER . ind_rep
|
|
268
|
+
25 word_rep: YAML_TRANSFER . word_rep
|
|
269
|
+
|
|
270
|
+
YAML_ANCHOR shift, and go to state 1
|
|
271
|
+
YAML_ALIAS shift, and go to state 2
|
|
272
|
+
YAML_TRANSFER shift, and go to state 3
|
|
273
|
+
YAML_TAGURI shift, and go to state 4
|
|
274
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
275
|
+
YAML_WORD shift, and go to state 6
|
|
276
|
+
YAML_PLAIN shift, and go to state 7
|
|
277
|
+
YAML_BLOCK shift, and go to state 8
|
|
278
|
+
YAML_IOPEN shift, and go to state 10
|
|
279
|
+
'[' shift, and go to state 11
|
|
280
|
+
'{' shift, and go to state 12
|
|
281
|
+
|
|
282
|
+
ind_rep go to state 25
|
|
283
|
+
indent_open go to state 16
|
|
284
|
+
word_rep go to state 26
|
|
285
|
+
struct_rep go to state 18
|
|
286
|
+
implicit_seq go to state 19
|
|
287
|
+
inline_seq go to state 20
|
|
288
|
+
implicit_map go to state 21
|
|
289
|
+
inline_map go to state 22
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
state 4
|
|
293
|
+
|
|
294
|
+
8 ind_rep: YAML_TAGURI . ind_rep
|
|
295
|
+
26 word_rep: YAML_TAGURI . word_rep
|
|
296
|
+
|
|
297
|
+
YAML_ANCHOR shift, and go to state 1
|
|
298
|
+
YAML_ALIAS shift, and go to state 2
|
|
299
|
+
YAML_TRANSFER shift, and go to state 3
|
|
300
|
+
YAML_TAGURI shift, and go to state 4
|
|
301
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
302
|
+
YAML_WORD shift, and go to state 6
|
|
303
|
+
YAML_PLAIN shift, and go to state 7
|
|
304
|
+
YAML_BLOCK shift, and go to state 8
|
|
305
|
+
YAML_IOPEN shift, and go to state 10
|
|
306
|
+
'[' shift, and go to state 11
|
|
307
|
+
'{' shift, and go to state 12
|
|
308
|
+
|
|
309
|
+
ind_rep go to state 27
|
|
310
|
+
indent_open go to state 16
|
|
311
|
+
word_rep go to state 28
|
|
312
|
+
struct_rep go to state 18
|
|
313
|
+
implicit_seq go to state 19
|
|
314
|
+
inline_seq go to state 20
|
|
315
|
+
implicit_map go to state 21
|
|
316
|
+
inline_map go to state 22
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
state 5
|
|
320
|
+
|
|
321
|
+
27 word_rep: YAML_ITRANSFER . word_rep
|
|
322
|
+
|
|
323
|
+
YAML_ANCHOR shift, and go to state 29
|
|
324
|
+
YAML_ALIAS shift, and go to state 2
|
|
325
|
+
YAML_TRANSFER shift, and go to state 30
|
|
326
|
+
YAML_TAGURI shift, and go to state 31
|
|
327
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
328
|
+
YAML_WORD shift, and go to state 6
|
|
329
|
+
YAML_PLAIN shift, and go to state 7
|
|
330
|
+
YAML_IOPEN shift, and go to state 10
|
|
331
|
+
|
|
332
|
+
indent_open go to state 32
|
|
333
|
+
word_rep go to state 33
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
state 6
|
|
337
|
+
|
|
338
|
+
30 word_rep: YAML_WORD .
|
|
339
|
+
|
|
340
|
+
$default reduce using rule 30 (word_rep)
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
state 7
|
|
344
|
+
|
|
345
|
+
31 word_rep: YAML_PLAIN .
|
|
346
|
+
|
|
347
|
+
$default reduce using rule 31 (word_rep)
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
state 8
|
|
351
|
+
|
|
352
|
+
33 struct_rep: YAML_BLOCK .
|
|
353
|
+
|
|
354
|
+
$default reduce using rule 33 (struct_rep)
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
state 9
|
|
358
|
+
|
|
359
|
+
2 doc: YAML_DOCSEP . atom_or_empty
|
|
360
|
+
|
|
361
|
+
YAML_ANCHOR shift, and go to state 34
|
|
362
|
+
YAML_ALIAS shift, and go to state 2
|
|
363
|
+
YAML_TRANSFER shift, and go to state 35
|
|
364
|
+
YAML_TAGURI shift, and go to state 36
|
|
365
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
366
|
+
YAML_WORD shift, and go to state 6
|
|
367
|
+
YAML_PLAIN shift, and go to state 7
|
|
368
|
+
YAML_BLOCK shift, and go to state 8
|
|
369
|
+
YAML_IOPEN shift, and go to state 10
|
|
370
|
+
'[' shift, and go to state 11
|
|
371
|
+
'{' shift, and go to state 12
|
|
372
|
+
|
|
373
|
+
$default reduce using rule 14 (empty)
|
|
374
|
+
|
|
375
|
+
atom go to state 38
|
|
376
|
+
ind_rep go to state 15
|
|
377
|
+
atom_or_empty go to state 39
|
|
378
|
+
empty go to state 40
|
|
379
|
+
indent_open go to state 41
|
|
380
|
+
word_rep go to state 17
|
|
381
|
+
struct_rep go to state 18
|
|
382
|
+
implicit_seq go to state 19
|
|
383
|
+
inline_seq go to state 20
|
|
384
|
+
implicit_map go to state 21
|
|
385
|
+
inline_map go to state 22
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
state 10
|
|
389
|
+
|
|
390
|
+
19 indent_open: YAML_IOPEN .
|
|
391
|
+
|
|
392
|
+
$default reduce using rule 19 (indent_open)
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
state 11
|
|
396
|
+
|
|
397
|
+
50 inline_seq: '[' . in_inline_seq ']'
|
|
398
|
+
51 | '[' . ']'
|
|
399
|
+
|
|
400
|
+
YAML_ANCHOR shift, and go to state 1
|
|
401
|
+
YAML_ALIAS shift, and go to state 2
|
|
402
|
+
YAML_TRANSFER shift, and go to state 3
|
|
403
|
+
YAML_TAGURI shift, and go to state 4
|
|
404
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
405
|
+
YAML_WORD shift, and go to state 6
|
|
406
|
+
YAML_PLAIN shift, and go to state 7
|
|
407
|
+
YAML_BLOCK shift, and go to state 8
|
|
408
|
+
YAML_IOPEN shift, and go to state 10
|
|
409
|
+
'[' shift, and go to state 11
|
|
410
|
+
']' shift, and go to state 42
|
|
411
|
+
'{' shift, and go to state 12
|
|
412
|
+
|
|
413
|
+
atom go to state 43
|
|
414
|
+
ind_rep go to state 15
|
|
415
|
+
indent_open go to state 16
|
|
416
|
+
word_rep go to state 17
|
|
417
|
+
struct_rep go to state 18
|
|
418
|
+
implicit_seq go to state 19
|
|
419
|
+
inline_seq go to state 20
|
|
420
|
+
in_inline_seq go to state 44
|
|
421
|
+
inline_seq_atom go to state 45
|
|
422
|
+
implicit_map go to state 21
|
|
423
|
+
basic_mapping go to state 46
|
|
424
|
+
inline_map go to state 22
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
state 12
|
|
428
|
+
|
|
429
|
+
73 inline_map: '{' . in_inline_map '}'
|
|
430
|
+
74 | '{' . '}'
|
|
431
|
+
|
|
432
|
+
YAML_ANCHOR shift, and go to state 1
|
|
433
|
+
YAML_ALIAS shift, and go to state 2
|
|
434
|
+
YAML_TRANSFER shift, and go to state 3
|
|
435
|
+
YAML_TAGURI shift, and go to state 4
|
|
436
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
437
|
+
YAML_WORD shift, and go to state 6
|
|
438
|
+
YAML_PLAIN shift, and go to state 7
|
|
439
|
+
YAML_BLOCK shift, and go to state 8
|
|
440
|
+
YAML_IOPEN shift, and go to state 10
|
|
441
|
+
'[' shift, and go to state 11
|
|
442
|
+
'{' shift, and go to state 12
|
|
443
|
+
'}' shift, and go to state 47
|
|
444
|
+
|
|
445
|
+
atom go to state 48
|
|
446
|
+
ind_rep go to state 15
|
|
447
|
+
indent_open go to state 16
|
|
448
|
+
word_rep go to state 17
|
|
449
|
+
struct_rep go to state 18
|
|
450
|
+
implicit_seq go to state 19
|
|
451
|
+
inline_seq go to state 20
|
|
452
|
+
implicit_map go to state 21
|
|
453
|
+
basic_mapping go to state 49
|
|
454
|
+
inline_map go to state 22
|
|
455
|
+
in_inline_map go to state 50
|
|
456
|
+
inline_map_atom go to state 51
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
state 13
|
|
460
|
+
|
|
461
|
+
0 $accept: doc . $end
|
|
462
|
+
|
|
463
|
+
$end shift, and go to state 52
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
state 14
|
|
467
|
+
|
|
468
|
+
1 doc: atom .
|
|
469
|
+
|
|
470
|
+
$default reduce using rule 1 (doc)
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
state 15
|
|
474
|
+
|
|
475
|
+
5 atom: ind_rep .
|
|
476
|
+
|
|
477
|
+
$default reduce using rule 5 (atom)
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
state 16
|
|
481
|
+
|
|
482
|
+
10 ind_rep: indent_open . ind_rep indent_flex_end
|
|
483
|
+
20 indent_open: indent_open . YAML_INDENT
|
|
484
|
+
32 word_rep: indent_open . word_rep indent_flex_end
|
|
485
|
+
38 implicit_seq: indent_open . top_imp_seq indent_end
|
|
486
|
+
39 | indent_open . in_implicit_seq indent_end
|
|
487
|
+
56 implicit_map: indent_open . top_imp_map indent_end
|
|
488
|
+
57 | indent_open . in_implicit_map indent_end
|
|
489
|
+
|
|
490
|
+
YAML_ANCHOR shift, and go to state 53
|
|
491
|
+
YAML_ALIAS shift, and go to state 2
|
|
492
|
+
YAML_TRANSFER shift, and go to state 54
|
|
493
|
+
YAML_TAGURI shift, and go to state 55
|
|
494
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
495
|
+
YAML_WORD shift, and go to state 6
|
|
496
|
+
YAML_PLAIN shift, and go to state 7
|
|
497
|
+
YAML_BLOCK shift, and go to state 8
|
|
498
|
+
YAML_IOPEN shift, and go to state 10
|
|
499
|
+
YAML_INDENT shift, and go to state 56
|
|
500
|
+
'-' shift, and go to state 57
|
|
501
|
+
'[' shift, and go to state 11
|
|
502
|
+
'{' shift, and go to state 12
|
|
503
|
+
'?' shift, and go to state 58
|
|
504
|
+
|
|
505
|
+
ind_rep go to state 59
|
|
506
|
+
indent_open go to state 16
|
|
507
|
+
word_rep go to state 60
|
|
508
|
+
struct_rep go to state 18
|
|
509
|
+
implicit_seq go to state 19
|
|
510
|
+
basic_seq go to state 61
|
|
511
|
+
top_imp_seq go to state 62
|
|
512
|
+
in_implicit_seq go to state 63
|
|
513
|
+
inline_seq go to state 20
|
|
514
|
+
implicit_map go to state 21
|
|
515
|
+
top_imp_map go to state 64
|
|
516
|
+
complex_key go to state 65
|
|
517
|
+
complex_mapping go to state 66
|
|
518
|
+
in_implicit_map go to state 67
|
|
519
|
+
inline_map go to state 22
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
state 17
|
|
523
|
+
|
|
524
|
+
4 atom: word_rep .
|
|
525
|
+
|
|
526
|
+
$default reduce using rule 4 (atom)
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
state 18
|
|
530
|
+
|
|
531
|
+
6 ind_rep: struct_rep .
|
|
532
|
+
|
|
533
|
+
$default reduce using rule 6 (ind_rep)
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
state 19
|
|
537
|
+
|
|
538
|
+
34 struct_rep: implicit_seq .
|
|
539
|
+
|
|
540
|
+
$default reduce using rule 34 (struct_rep)
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
state 20
|
|
544
|
+
|
|
545
|
+
35 struct_rep: inline_seq .
|
|
546
|
+
|
|
547
|
+
$default reduce using rule 35 (struct_rep)
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
state 21
|
|
551
|
+
|
|
552
|
+
36 struct_rep: implicit_map .
|
|
553
|
+
|
|
554
|
+
$default reduce using rule 36 (struct_rep)
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
state 22
|
|
558
|
+
|
|
559
|
+
37 struct_rep: inline_map .
|
|
560
|
+
|
|
561
|
+
$default reduce using rule 37 (struct_rep)
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
state 23
|
|
565
|
+
|
|
566
|
+
9 ind_rep: YAML_ANCHOR ind_rep .
|
|
567
|
+
|
|
568
|
+
$default reduce using rule 9 (ind_rep)
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
state 24
|
|
572
|
+
|
|
573
|
+
28 word_rep: YAML_ANCHOR word_rep .
|
|
574
|
+
|
|
575
|
+
$default reduce using rule 28 (word_rep)
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
state 25
|
|
579
|
+
|
|
580
|
+
7 ind_rep: YAML_TRANSFER ind_rep .
|
|
581
|
+
|
|
582
|
+
$default reduce using rule 7 (ind_rep)
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
state 26
|
|
586
|
+
|
|
587
|
+
25 word_rep: YAML_TRANSFER word_rep .
|
|
588
|
+
|
|
589
|
+
$default reduce using rule 25 (word_rep)
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
state 27
|
|
593
|
+
|
|
594
|
+
8 ind_rep: YAML_TAGURI ind_rep .
|
|
595
|
+
|
|
596
|
+
$default reduce using rule 8 (ind_rep)
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
state 28
|
|
600
|
+
|
|
601
|
+
26 word_rep: YAML_TAGURI word_rep .
|
|
602
|
+
|
|
603
|
+
$default reduce using rule 26 (word_rep)
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
state 29
|
|
607
|
+
|
|
608
|
+
28 word_rep: YAML_ANCHOR . word_rep
|
|
609
|
+
|
|
610
|
+
YAML_ANCHOR shift, and go to state 29
|
|
611
|
+
YAML_ALIAS shift, and go to state 2
|
|
612
|
+
YAML_TRANSFER shift, and go to state 30
|
|
613
|
+
YAML_TAGURI shift, and go to state 31
|
|
614
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
615
|
+
YAML_WORD shift, and go to state 6
|
|
616
|
+
YAML_PLAIN shift, and go to state 7
|
|
617
|
+
YAML_IOPEN shift, and go to state 10
|
|
618
|
+
|
|
619
|
+
indent_open go to state 32
|
|
620
|
+
word_rep go to state 24
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
state 30
|
|
624
|
+
|
|
625
|
+
25 word_rep: YAML_TRANSFER . word_rep
|
|
626
|
+
|
|
627
|
+
YAML_ANCHOR shift, and go to state 29
|
|
628
|
+
YAML_ALIAS shift, and go to state 2
|
|
629
|
+
YAML_TRANSFER shift, and go to state 30
|
|
630
|
+
YAML_TAGURI shift, and go to state 31
|
|
631
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
632
|
+
YAML_WORD shift, and go to state 6
|
|
633
|
+
YAML_PLAIN shift, and go to state 7
|
|
634
|
+
YAML_IOPEN shift, and go to state 10
|
|
635
|
+
|
|
636
|
+
indent_open go to state 32
|
|
637
|
+
word_rep go to state 26
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
state 31
|
|
641
|
+
|
|
642
|
+
26 word_rep: YAML_TAGURI . word_rep
|
|
643
|
+
|
|
644
|
+
YAML_ANCHOR shift, and go to state 29
|
|
645
|
+
YAML_ALIAS shift, and go to state 2
|
|
646
|
+
YAML_TRANSFER shift, and go to state 30
|
|
647
|
+
YAML_TAGURI shift, and go to state 31
|
|
648
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
649
|
+
YAML_WORD shift, and go to state 6
|
|
650
|
+
YAML_PLAIN shift, and go to state 7
|
|
651
|
+
YAML_IOPEN shift, and go to state 10
|
|
652
|
+
|
|
653
|
+
indent_open go to state 32
|
|
654
|
+
word_rep go to state 28
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
state 32
|
|
658
|
+
|
|
659
|
+
20 indent_open: indent_open . YAML_INDENT
|
|
660
|
+
32 word_rep: indent_open . word_rep indent_flex_end
|
|
661
|
+
|
|
662
|
+
YAML_ANCHOR shift, and go to state 29
|
|
663
|
+
YAML_ALIAS shift, and go to state 2
|
|
664
|
+
YAML_TRANSFER shift, and go to state 30
|
|
665
|
+
YAML_TAGURI shift, and go to state 31
|
|
666
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
667
|
+
YAML_WORD shift, and go to state 6
|
|
668
|
+
YAML_PLAIN shift, and go to state 7
|
|
669
|
+
YAML_IOPEN shift, and go to state 10
|
|
670
|
+
YAML_INDENT shift, and go to state 56
|
|
671
|
+
|
|
672
|
+
indent_open go to state 32
|
|
673
|
+
word_rep go to state 68
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
state 33
|
|
677
|
+
|
|
678
|
+
27 word_rep: YAML_ITRANSFER word_rep .
|
|
679
|
+
|
|
680
|
+
$default reduce using rule 27 (word_rep)
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
state 34
|
|
684
|
+
|
|
685
|
+
9 ind_rep: YAML_ANCHOR . ind_rep
|
|
686
|
+
18 empty: YAML_ANCHOR . empty
|
|
687
|
+
28 word_rep: YAML_ANCHOR . word_rep
|
|
688
|
+
|
|
689
|
+
YAML_ANCHOR shift, and go to state 34
|
|
690
|
+
YAML_ALIAS shift, and go to state 2
|
|
691
|
+
YAML_TRANSFER shift, and go to state 35
|
|
692
|
+
YAML_TAGURI shift, and go to state 36
|
|
693
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
694
|
+
YAML_WORD shift, and go to state 6
|
|
695
|
+
YAML_PLAIN shift, and go to state 7
|
|
696
|
+
YAML_BLOCK shift, and go to state 8
|
|
697
|
+
YAML_IOPEN shift, and go to state 10
|
|
698
|
+
'[' shift, and go to state 11
|
|
699
|
+
'{' shift, and go to state 12
|
|
700
|
+
|
|
701
|
+
$default reduce using rule 14 (empty)
|
|
702
|
+
|
|
703
|
+
ind_rep go to state 23
|
|
704
|
+
empty go to state 69
|
|
705
|
+
indent_open go to state 41
|
|
706
|
+
word_rep go to state 24
|
|
707
|
+
struct_rep go to state 18
|
|
708
|
+
implicit_seq go to state 19
|
|
709
|
+
inline_seq go to state 20
|
|
710
|
+
implicit_map go to state 21
|
|
711
|
+
inline_map go to state 22
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
state 35
|
|
715
|
+
|
|
716
|
+
7 ind_rep: YAML_TRANSFER . ind_rep
|
|
717
|
+
16 empty: YAML_TRANSFER . empty
|
|
718
|
+
25 word_rep: YAML_TRANSFER . word_rep
|
|
719
|
+
|
|
720
|
+
YAML_ANCHOR shift, and go to state 34
|
|
721
|
+
YAML_ALIAS shift, and go to state 2
|
|
722
|
+
YAML_TRANSFER shift, and go to state 35
|
|
723
|
+
YAML_TAGURI shift, and go to state 36
|
|
724
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
725
|
+
YAML_WORD shift, and go to state 6
|
|
726
|
+
YAML_PLAIN shift, and go to state 7
|
|
727
|
+
YAML_BLOCK shift, and go to state 8
|
|
728
|
+
YAML_IOPEN shift, and go to state 10
|
|
729
|
+
'[' shift, and go to state 11
|
|
730
|
+
'{' shift, and go to state 12
|
|
731
|
+
|
|
732
|
+
$default reduce using rule 14 (empty)
|
|
733
|
+
|
|
734
|
+
ind_rep go to state 25
|
|
735
|
+
empty go to state 70
|
|
736
|
+
indent_open go to state 41
|
|
737
|
+
word_rep go to state 26
|
|
738
|
+
struct_rep go to state 18
|
|
739
|
+
implicit_seq go to state 19
|
|
740
|
+
inline_seq go to state 20
|
|
741
|
+
implicit_map go to state 21
|
|
742
|
+
inline_map go to state 22
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
state 36
|
|
746
|
+
|
|
747
|
+
8 ind_rep: YAML_TAGURI . ind_rep
|
|
748
|
+
17 empty: YAML_TAGURI . empty
|
|
749
|
+
26 word_rep: YAML_TAGURI . word_rep
|
|
750
|
+
|
|
751
|
+
YAML_ANCHOR shift, and go to state 34
|
|
752
|
+
YAML_ALIAS shift, and go to state 2
|
|
753
|
+
YAML_TRANSFER shift, and go to state 35
|
|
754
|
+
YAML_TAGURI shift, and go to state 36
|
|
755
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
756
|
+
YAML_WORD shift, and go to state 6
|
|
757
|
+
YAML_PLAIN shift, and go to state 7
|
|
758
|
+
YAML_BLOCK shift, and go to state 8
|
|
759
|
+
YAML_IOPEN shift, and go to state 10
|
|
760
|
+
'[' shift, and go to state 11
|
|
761
|
+
'{' shift, and go to state 12
|
|
762
|
+
|
|
763
|
+
$default reduce using rule 14 (empty)
|
|
764
|
+
|
|
765
|
+
ind_rep go to state 27
|
|
766
|
+
empty go to state 71
|
|
767
|
+
indent_open go to state 41
|
|
768
|
+
word_rep go to state 28
|
|
769
|
+
struct_rep go to state 18
|
|
770
|
+
implicit_seq go to state 19
|
|
771
|
+
inline_seq go to state 20
|
|
772
|
+
implicit_map go to state 21
|
|
773
|
+
inline_map go to state 22
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
state 37
|
|
777
|
+
|
|
778
|
+
15 empty: YAML_ITRANSFER . empty
|
|
779
|
+
27 word_rep: YAML_ITRANSFER . word_rep
|
|
780
|
+
|
|
781
|
+
YAML_ANCHOR shift, and go to state 72
|
|
782
|
+
YAML_ALIAS shift, and go to state 2
|
|
783
|
+
YAML_TRANSFER shift, and go to state 73
|
|
784
|
+
YAML_TAGURI shift, and go to state 74
|
|
785
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
786
|
+
YAML_WORD shift, and go to state 6
|
|
787
|
+
YAML_PLAIN shift, and go to state 7
|
|
788
|
+
YAML_IOPEN shift, and go to state 10
|
|
789
|
+
|
|
790
|
+
$default reduce using rule 14 (empty)
|
|
791
|
+
|
|
792
|
+
empty go to state 75
|
|
793
|
+
indent_open go to state 76
|
|
794
|
+
word_rep go to state 33
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
state 38
|
|
798
|
+
|
|
799
|
+
11 atom_or_empty: atom .
|
|
800
|
+
|
|
801
|
+
$default reduce using rule 11 (atom_or_empty)
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
state 39
|
|
805
|
+
|
|
806
|
+
2 doc: YAML_DOCSEP atom_or_empty .
|
|
807
|
+
|
|
808
|
+
$default reduce using rule 2 (doc)
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
state 40
|
|
812
|
+
|
|
813
|
+
12 atom_or_empty: empty .
|
|
814
|
+
|
|
815
|
+
$default reduce using rule 12 (atom_or_empty)
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
state 41
|
|
819
|
+
|
|
820
|
+
10 ind_rep: indent_open . ind_rep indent_flex_end
|
|
821
|
+
13 empty: indent_open . empty indent_end
|
|
822
|
+
20 indent_open: indent_open . YAML_INDENT
|
|
823
|
+
32 word_rep: indent_open . word_rep indent_flex_end
|
|
824
|
+
38 implicit_seq: indent_open . top_imp_seq indent_end
|
|
825
|
+
39 | indent_open . in_implicit_seq indent_end
|
|
826
|
+
56 implicit_map: indent_open . top_imp_map indent_end
|
|
827
|
+
57 | indent_open . in_implicit_map indent_end
|
|
828
|
+
|
|
829
|
+
YAML_ANCHOR shift, and go to state 77
|
|
830
|
+
YAML_ALIAS shift, and go to state 2
|
|
831
|
+
YAML_TRANSFER shift, and go to state 78
|
|
832
|
+
YAML_TAGURI shift, and go to state 79
|
|
833
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
834
|
+
YAML_WORD shift, and go to state 6
|
|
835
|
+
YAML_PLAIN shift, and go to state 7
|
|
836
|
+
YAML_BLOCK shift, and go to state 8
|
|
837
|
+
YAML_IOPEN shift, and go to state 10
|
|
838
|
+
YAML_INDENT shift, and go to state 56
|
|
839
|
+
'-' shift, and go to state 57
|
|
840
|
+
'[' shift, and go to state 11
|
|
841
|
+
'{' shift, and go to state 12
|
|
842
|
+
'?' shift, and go to state 58
|
|
843
|
+
|
|
844
|
+
$default reduce using rule 14 (empty)
|
|
845
|
+
|
|
846
|
+
ind_rep go to state 59
|
|
847
|
+
empty go to state 80
|
|
848
|
+
indent_open go to state 41
|
|
849
|
+
word_rep go to state 60
|
|
850
|
+
struct_rep go to state 18
|
|
851
|
+
implicit_seq go to state 19
|
|
852
|
+
basic_seq go to state 61
|
|
853
|
+
top_imp_seq go to state 62
|
|
854
|
+
in_implicit_seq go to state 63
|
|
855
|
+
inline_seq go to state 20
|
|
856
|
+
implicit_map go to state 21
|
|
857
|
+
top_imp_map go to state 64
|
|
858
|
+
complex_key go to state 65
|
|
859
|
+
complex_mapping go to state 66
|
|
860
|
+
in_implicit_map go to state 67
|
|
861
|
+
inline_map go to state 22
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
state 42
|
|
865
|
+
|
|
866
|
+
51 inline_seq: '[' ']' .
|
|
867
|
+
|
|
868
|
+
$default reduce using rule 51 (inline_seq)
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
state 43
|
|
872
|
+
|
|
873
|
+
54 inline_seq_atom: atom .
|
|
874
|
+
72 basic_mapping: atom . ':' atom_or_empty
|
|
875
|
+
|
|
876
|
+
':' shift, and go to state 81
|
|
877
|
+
|
|
878
|
+
$default reduce using rule 54 (inline_seq_atom)
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
state 44
|
|
882
|
+
|
|
883
|
+
50 inline_seq: '[' in_inline_seq . ']'
|
|
884
|
+
53 in_inline_seq: in_inline_seq . ',' inline_seq_atom
|
|
885
|
+
|
|
886
|
+
']' shift, and go to state 82
|
|
887
|
+
',' shift, and go to state 83
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
state 45
|
|
891
|
+
|
|
892
|
+
52 in_inline_seq: inline_seq_atom .
|
|
893
|
+
|
|
894
|
+
$default reduce using rule 52 (in_inline_seq)
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
state 46
|
|
898
|
+
|
|
899
|
+
55 inline_seq_atom: basic_mapping .
|
|
900
|
+
|
|
901
|
+
$default reduce using rule 55 (inline_seq_atom)
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
state 47
|
|
905
|
+
|
|
906
|
+
74 inline_map: '{' '}' .
|
|
907
|
+
|
|
908
|
+
$default reduce using rule 74 (inline_map)
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
state 48
|
|
912
|
+
|
|
913
|
+
72 basic_mapping: atom . ':' atom_or_empty
|
|
914
|
+
77 inline_map_atom: atom .
|
|
915
|
+
|
|
916
|
+
':' shift, and go to state 81
|
|
917
|
+
|
|
918
|
+
$default reduce using rule 77 (inline_map_atom)
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
state 49
|
|
922
|
+
|
|
923
|
+
78 inline_map_atom: basic_mapping .
|
|
924
|
+
|
|
925
|
+
$default reduce using rule 78 (inline_map_atom)
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
state 50
|
|
929
|
+
|
|
930
|
+
73 inline_map: '{' in_inline_map . '}'
|
|
931
|
+
76 in_inline_map: in_inline_map . ',' inline_map_atom
|
|
932
|
+
|
|
933
|
+
'}' shift, and go to state 84
|
|
934
|
+
',' shift, and go to state 85
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
state 51
|
|
938
|
+
|
|
939
|
+
75 in_inline_map: inline_map_atom .
|
|
940
|
+
|
|
941
|
+
$default reduce using rule 75 (in_inline_map)
|
|
942
|
+
|
|
943
|
+
|
|
944
|
+
state 52
|
|
945
|
+
|
|
946
|
+
0 $accept: doc $end .
|
|
947
|
+
|
|
948
|
+
$default accept
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
state 53
|
|
952
|
+
|
|
953
|
+
9 ind_rep: YAML_ANCHOR . ind_rep
|
|
954
|
+
28 word_rep: YAML_ANCHOR . word_rep
|
|
955
|
+
45 top_imp_seq: YAML_ANCHOR . indent_sep in_implicit_seq
|
|
956
|
+
46 | YAML_ANCHOR . top_imp_seq
|
|
957
|
+
62 top_imp_map: YAML_ANCHOR . indent_sep in_implicit_map
|
|
958
|
+
63 | YAML_ANCHOR . top_imp_map
|
|
959
|
+
|
|
960
|
+
YAML_ANCHOR shift, and go to state 53
|
|
961
|
+
YAML_ALIAS shift, and go to state 2
|
|
962
|
+
YAML_TRANSFER shift, and go to state 54
|
|
963
|
+
YAML_TAGURI shift, and go to state 55
|
|
964
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
965
|
+
YAML_WORD shift, and go to state 6
|
|
966
|
+
YAML_PLAIN shift, and go to state 7
|
|
967
|
+
YAML_BLOCK shift, and go to state 8
|
|
968
|
+
YAML_IOPEN shift, and go to state 10
|
|
969
|
+
YAML_INDENT shift, and go to state 86
|
|
970
|
+
'[' shift, and go to state 11
|
|
971
|
+
'{' shift, and go to state 12
|
|
972
|
+
|
|
973
|
+
ind_rep go to state 23
|
|
974
|
+
indent_open go to state 16
|
|
975
|
+
indent_sep go to state 87
|
|
976
|
+
word_rep go to state 24
|
|
977
|
+
struct_rep go to state 18
|
|
978
|
+
implicit_seq go to state 19
|
|
979
|
+
top_imp_seq go to state 88
|
|
980
|
+
inline_seq go to state 20
|
|
981
|
+
implicit_map go to state 21
|
|
982
|
+
top_imp_map go to state 89
|
|
983
|
+
inline_map go to state 22
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
state 54
|
|
987
|
+
|
|
988
|
+
7 ind_rep: YAML_TRANSFER . ind_rep
|
|
989
|
+
25 word_rep: YAML_TRANSFER . word_rep
|
|
990
|
+
41 top_imp_seq: YAML_TRANSFER . indent_sep in_implicit_seq
|
|
991
|
+
42 | YAML_TRANSFER . top_imp_seq
|
|
992
|
+
58 top_imp_map: YAML_TRANSFER . indent_sep in_implicit_map
|
|
993
|
+
59 | YAML_TRANSFER . top_imp_map
|
|
994
|
+
|
|
995
|
+
YAML_ANCHOR shift, and go to state 53
|
|
996
|
+
YAML_ALIAS shift, and go to state 2
|
|
997
|
+
YAML_TRANSFER shift, and go to state 54
|
|
998
|
+
YAML_TAGURI shift, and go to state 55
|
|
999
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1000
|
+
YAML_WORD shift, and go to state 6
|
|
1001
|
+
YAML_PLAIN shift, and go to state 7
|
|
1002
|
+
YAML_BLOCK shift, and go to state 8
|
|
1003
|
+
YAML_IOPEN shift, and go to state 10
|
|
1004
|
+
YAML_INDENT shift, and go to state 86
|
|
1005
|
+
'[' shift, and go to state 11
|
|
1006
|
+
'{' shift, and go to state 12
|
|
1007
|
+
|
|
1008
|
+
ind_rep go to state 25
|
|
1009
|
+
indent_open go to state 16
|
|
1010
|
+
indent_sep go to state 90
|
|
1011
|
+
word_rep go to state 26
|
|
1012
|
+
struct_rep go to state 18
|
|
1013
|
+
implicit_seq go to state 19
|
|
1014
|
+
top_imp_seq go to state 91
|
|
1015
|
+
inline_seq go to state 20
|
|
1016
|
+
implicit_map go to state 21
|
|
1017
|
+
top_imp_map go to state 92
|
|
1018
|
+
inline_map go to state 22
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
state 55
|
|
1022
|
+
|
|
1023
|
+
8 ind_rep: YAML_TAGURI . ind_rep
|
|
1024
|
+
26 word_rep: YAML_TAGURI . word_rep
|
|
1025
|
+
43 top_imp_seq: YAML_TAGURI . indent_sep in_implicit_seq
|
|
1026
|
+
44 | YAML_TAGURI . top_imp_seq
|
|
1027
|
+
60 top_imp_map: YAML_TAGURI . indent_sep in_implicit_map
|
|
1028
|
+
61 | YAML_TAGURI . top_imp_map
|
|
1029
|
+
|
|
1030
|
+
YAML_ANCHOR shift, and go to state 53
|
|
1031
|
+
YAML_ALIAS shift, and go to state 2
|
|
1032
|
+
YAML_TRANSFER shift, and go to state 54
|
|
1033
|
+
YAML_TAGURI shift, and go to state 55
|
|
1034
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1035
|
+
YAML_WORD shift, and go to state 6
|
|
1036
|
+
YAML_PLAIN shift, and go to state 7
|
|
1037
|
+
YAML_BLOCK shift, and go to state 8
|
|
1038
|
+
YAML_IOPEN shift, and go to state 10
|
|
1039
|
+
YAML_INDENT shift, and go to state 86
|
|
1040
|
+
'[' shift, and go to state 11
|
|
1041
|
+
'{' shift, and go to state 12
|
|
1042
|
+
|
|
1043
|
+
ind_rep go to state 27
|
|
1044
|
+
indent_open go to state 16
|
|
1045
|
+
indent_sep go to state 93
|
|
1046
|
+
word_rep go to state 28
|
|
1047
|
+
struct_rep go to state 18
|
|
1048
|
+
implicit_seq go to state 19
|
|
1049
|
+
top_imp_seq go to state 94
|
|
1050
|
+
inline_seq go to state 20
|
|
1051
|
+
implicit_map go to state 21
|
|
1052
|
+
top_imp_map go to state 95
|
|
1053
|
+
inline_map go to state 22
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
state 56
|
|
1057
|
+
|
|
1058
|
+
20 indent_open: indent_open YAML_INDENT .
|
|
1059
|
+
|
|
1060
|
+
$default reduce using rule 20 (indent_open)
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
state 57
|
|
1064
|
+
|
|
1065
|
+
40 basic_seq: '-' . atom_or_empty
|
|
1066
|
+
|
|
1067
|
+
YAML_ANCHOR shift, and go to state 34
|
|
1068
|
+
YAML_ALIAS shift, and go to state 2
|
|
1069
|
+
YAML_TRANSFER shift, and go to state 35
|
|
1070
|
+
YAML_TAGURI shift, and go to state 36
|
|
1071
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1072
|
+
YAML_WORD shift, and go to state 6
|
|
1073
|
+
YAML_PLAIN shift, and go to state 7
|
|
1074
|
+
YAML_BLOCK shift, and go to state 8
|
|
1075
|
+
YAML_IOPEN shift, and go to state 10
|
|
1076
|
+
'[' shift, and go to state 11
|
|
1077
|
+
'{' shift, and go to state 12
|
|
1078
|
+
|
|
1079
|
+
$default reduce using rule 14 (empty)
|
|
1080
|
+
|
|
1081
|
+
atom go to state 38
|
|
1082
|
+
ind_rep go to state 15
|
|
1083
|
+
atom_or_empty go to state 96
|
|
1084
|
+
empty go to state 40
|
|
1085
|
+
indent_open go to state 41
|
|
1086
|
+
word_rep go to state 17
|
|
1087
|
+
struct_rep go to state 18
|
|
1088
|
+
implicit_seq go to state 19
|
|
1089
|
+
inline_seq go to state 20
|
|
1090
|
+
implicit_map go to state 21
|
|
1091
|
+
inline_map go to state 22
|
|
1092
|
+
|
|
1093
|
+
|
|
1094
|
+
state 58
|
|
1095
|
+
|
|
1096
|
+
65 complex_key: '?' . atom indent_sep
|
|
1097
|
+
|
|
1098
|
+
YAML_ANCHOR shift, and go to state 1
|
|
1099
|
+
YAML_ALIAS shift, and go to state 2
|
|
1100
|
+
YAML_TRANSFER shift, and go to state 3
|
|
1101
|
+
YAML_TAGURI shift, and go to state 4
|
|
1102
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1103
|
+
YAML_WORD shift, and go to state 6
|
|
1104
|
+
YAML_PLAIN shift, and go to state 7
|
|
1105
|
+
YAML_BLOCK shift, and go to state 8
|
|
1106
|
+
YAML_IOPEN shift, and go to state 10
|
|
1107
|
+
'[' shift, and go to state 11
|
|
1108
|
+
'{' shift, and go to state 12
|
|
1109
|
+
|
|
1110
|
+
atom go to state 97
|
|
1111
|
+
ind_rep go to state 15
|
|
1112
|
+
indent_open go to state 16
|
|
1113
|
+
word_rep go to state 17
|
|
1114
|
+
struct_rep go to state 18
|
|
1115
|
+
implicit_seq go to state 19
|
|
1116
|
+
inline_seq go to state 20
|
|
1117
|
+
implicit_map go to state 21
|
|
1118
|
+
inline_map go to state 22
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
state 59
|
|
1122
|
+
|
|
1123
|
+
10 ind_rep: indent_open ind_rep . indent_flex_end
|
|
1124
|
+
|
|
1125
|
+
YAML_INDENT shift, and go to state 86
|
|
1126
|
+
YAML_IEND shift, and go to state 98
|
|
1127
|
+
|
|
1128
|
+
indent_sep go to state 99
|
|
1129
|
+
indent_flex_end go to state 100
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
state 60
|
|
1133
|
+
|
|
1134
|
+
32 word_rep: indent_open word_rep . indent_flex_end
|
|
1135
|
+
64 complex_key: word_rep .
|
|
1136
|
+
|
|
1137
|
+
YAML_INDENT shift, and go to state 86
|
|
1138
|
+
YAML_IEND shift, and go to state 98
|
|
1139
|
+
|
|
1140
|
+
$default reduce using rule 64 (complex_key)
|
|
1141
|
+
|
|
1142
|
+
indent_sep go to state 99
|
|
1143
|
+
indent_flex_end go to state 101
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
state 61
|
|
1147
|
+
|
|
1148
|
+
47 in_implicit_seq: basic_seq .
|
|
1149
|
+
|
|
1150
|
+
$default reduce using rule 47 (in_implicit_seq)
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
state 62
|
|
1154
|
+
|
|
1155
|
+
38 implicit_seq: indent_open top_imp_seq . indent_end
|
|
1156
|
+
|
|
1157
|
+
YAML_IEND shift, and go to state 102
|
|
1158
|
+
|
|
1159
|
+
indent_end go to state 103
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
state 63
|
|
1163
|
+
|
|
1164
|
+
39 implicit_seq: indent_open in_implicit_seq . indent_end
|
|
1165
|
+
48 in_implicit_seq: in_implicit_seq . indent_sep basic_seq
|
|
1166
|
+
49 | in_implicit_seq . indent_sep
|
|
1167
|
+
|
|
1168
|
+
YAML_INDENT shift, and go to state 86
|
|
1169
|
+
YAML_IEND shift, and go to state 102
|
|
1170
|
+
|
|
1171
|
+
indent_end go to state 104
|
|
1172
|
+
indent_sep go to state 105
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
state 64
|
|
1176
|
+
|
|
1177
|
+
56 implicit_map: indent_open top_imp_map . indent_end
|
|
1178
|
+
|
|
1179
|
+
YAML_IEND shift, and go to state 102
|
|
1180
|
+
|
|
1181
|
+
indent_end go to state 106
|
|
1182
|
+
|
|
1183
|
+
|
|
1184
|
+
state 65
|
|
1185
|
+
|
|
1186
|
+
67 complex_mapping: complex_key . ':' complex_value
|
|
1187
|
+
|
|
1188
|
+
':' shift, and go to state 107
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
state 66
|
|
1192
|
+
|
|
1193
|
+
68 in_implicit_map: complex_mapping .
|
|
1194
|
+
|
|
1195
|
+
$default reduce using rule 68 (in_implicit_map)
|
|
1196
|
+
|
|
1197
|
+
|
|
1198
|
+
state 67
|
|
1199
|
+
|
|
1200
|
+
57 implicit_map: indent_open in_implicit_map . indent_end
|
|
1201
|
+
69 in_implicit_map: in_implicit_map . indent_sep basic_seq
|
|
1202
|
+
70 | in_implicit_map . indent_sep complex_mapping
|
|
1203
|
+
71 | in_implicit_map . indent_sep
|
|
1204
|
+
|
|
1205
|
+
YAML_INDENT shift, and go to state 86
|
|
1206
|
+
YAML_IEND shift, and go to state 102
|
|
1207
|
+
|
|
1208
|
+
indent_end go to state 108
|
|
1209
|
+
indent_sep go to state 109
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
state 68
|
|
1213
|
+
|
|
1214
|
+
32 word_rep: indent_open word_rep . indent_flex_end
|
|
1215
|
+
|
|
1216
|
+
YAML_INDENT shift, and go to state 86
|
|
1217
|
+
YAML_IEND shift, and go to state 98
|
|
1218
|
+
|
|
1219
|
+
indent_sep go to state 99
|
|
1220
|
+
indent_flex_end go to state 101
|
|
1221
|
+
|
|
1222
|
+
|
|
1223
|
+
state 69
|
|
1224
|
+
|
|
1225
|
+
18 empty: YAML_ANCHOR empty .
|
|
1226
|
+
|
|
1227
|
+
$default reduce using rule 18 (empty)
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
state 70
|
|
1231
|
+
|
|
1232
|
+
16 empty: YAML_TRANSFER empty .
|
|
1233
|
+
|
|
1234
|
+
$default reduce using rule 16 (empty)
|
|
1235
|
+
|
|
1236
|
+
|
|
1237
|
+
state 71
|
|
1238
|
+
|
|
1239
|
+
17 empty: YAML_TAGURI empty .
|
|
1240
|
+
|
|
1241
|
+
$default reduce using rule 17 (empty)
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
state 72
|
|
1245
|
+
|
|
1246
|
+
18 empty: YAML_ANCHOR . empty
|
|
1247
|
+
28 word_rep: YAML_ANCHOR . word_rep
|
|
1248
|
+
|
|
1249
|
+
YAML_ANCHOR shift, and go to state 72
|
|
1250
|
+
YAML_ALIAS shift, and go to state 2
|
|
1251
|
+
YAML_TRANSFER shift, and go to state 73
|
|
1252
|
+
YAML_TAGURI shift, and go to state 74
|
|
1253
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1254
|
+
YAML_WORD shift, and go to state 6
|
|
1255
|
+
YAML_PLAIN shift, and go to state 7
|
|
1256
|
+
YAML_IOPEN shift, and go to state 10
|
|
1257
|
+
|
|
1258
|
+
$default reduce using rule 14 (empty)
|
|
1259
|
+
|
|
1260
|
+
empty go to state 69
|
|
1261
|
+
indent_open go to state 76
|
|
1262
|
+
word_rep go to state 24
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
state 73
|
|
1266
|
+
|
|
1267
|
+
16 empty: YAML_TRANSFER . empty
|
|
1268
|
+
25 word_rep: YAML_TRANSFER . word_rep
|
|
1269
|
+
|
|
1270
|
+
YAML_ANCHOR shift, and go to state 72
|
|
1271
|
+
YAML_ALIAS shift, and go to state 2
|
|
1272
|
+
YAML_TRANSFER shift, and go to state 73
|
|
1273
|
+
YAML_TAGURI shift, and go to state 74
|
|
1274
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1275
|
+
YAML_WORD shift, and go to state 6
|
|
1276
|
+
YAML_PLAIN shift, and go to state 7
|
|
1277
|
+
YAML_IOPEN shift, and go to state 10
|
|
1278
|
+
|
|
1279
|
+
$default reduce using rule 14 (empty)
|
|
1280
|
+
|
|
1281
|
+
empty go to state 70
|
|
1282
|
+
indent_open go to state 76
|
|
1283
|
+
word_rep go to state 26
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
state 74
|
|
1287
|
+
|
|
1288
|
+
17 empty: YAML_TAGURI . empty
|
|
1289
|
+
26 word_rep: YAML_TAGURI . word_rep
|
|
1290
|
+
|
|
1291
|
+
YAML_ANCHOR shift, and go to state 72
|
|
1292
|
+
YAML_ALIAS shift, and go to state 2
|
|
1293
|
+
YAML_TRANSFER shift, and go to state 73
|
|
1294
|
+
YAML_TAGURI shift, and go to state 74
|
|
1295
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1296
|
+
YAML_WORD shift, and go to state 6
|
|
1297
|
+
YAML_PLAIN shift, and go to state 7
|
|
1298
|
+
YAML_IOPEN shift, and go to state 10
|
|
1299
|
+
|
|
1300
|
+
$default reduce using rule 14 (empty)
|
|
1301
|
+
|
|
1302
|
+
empty go to state 71
|
|
1303
|
+
indent_open go to state 76
|
|
1304
|
+
word_rep go to state 28
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
state 75
|
|
1308
|
+
|
|
1309
|
+
15 empty: YAML_ITRANSFER empty .
|
|
1310
|
+
|
|
1311
|
+
$default reduce using rule 15 (empty)
|
|
1312
|
+
|
|
1313
|
+
|
|
1314
|
+
state 76
|
|
1315
|
+
|
|
1316
|
+
13 empty: indent_open . empty indent_end
|
|
1317
|
+
20 indent_open: indent_open . YAML_INDENT
|
|
1318
|
+
32 word_rep: indent_open . word_rep indent_flex_end
|
|
1319
|
+
|
|
1320
|
+
YAML_ANCHOR shift, and go to state 72
|
|
1321
|
+
YAML_ALIAS shift, and go to state 2
|
|
1322
|
+
YAML_TRANSFER shift, and go to state 73
|
|
1323
|
+
YAML_TAGURI shift, and go to state 74
|
|
1324
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1325
|
+
YAML_WORD shift, and go to state 6
|
|
1326
|
+
YAML_PLAIN shift, and go to state 7
|
|
1327
|
+
YAML_IOPEN shift, and go to state 10
|
|
1328
|
+
YAML_INDENT shift, and go to state 56
|
|
1329
|
+
|
|
1330
|
+
$default reduce using rule 14 (empty)
|
|
1331
|
+
|
|
1332
|
+
empty go to state 80
|
|
1333
|
+
indent_open go to state 76
|
|
1334
|
+
word_rep go to state 68
|
|
1335
|
+
|
|
1336
|
+
|
|
1337
|
+
state 77
|
|
1338
|
+
|
|
1339
|
+
9 ind_rep: YAML_ANCHOR . ind_rep
|
|
1340
|
+
18 empty: YAML_ANCHOR . empty
|
|
1341
|
+
28 word_rep: YAML_ANCHOR . word_rep
|
|
1342
|
+
45 top_imp_seq: YAML_ANCHOR . indent_sep in_implicit_seq
|
|
1343
|
+
46 | YAML_ANCHOR . top_imp_seq
|
|
1344
|
+
62 top_imp_map: YAML_ANCHOR . indent_sep in_implicit_map
|
|
1345
|
+
63 | YAML_ANCHOR . top_imp_map
|
|
1346
|
+
|
|
1347
|
+
YAML_ANCHOR shift, and go to state 77
|
|
1348
|
+
YAML_ALIAS shift, and go to state 2
|
|
1349
|
+
YAML_TRANSFER shift, and go to state 78
|
|
1350
|
+
YAML_TAGURI shift, and go to state 79
|
|
1351
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1352
|
+
YAML_WORD shift, and go to state 6
|
|
1353
|
+
YAML_PLAIN shift, and go to state 7
|
|
1354
|
+
YAML_BLOCK shift, and go to state 8
|
|
1355
|
+
YAML_IOPEN shift, and go to state 10
|
|
1356
|
+
YAML_INDENT shift, and go to state 86
|
|
1357
|
+
'[' shift, and go to state 11
|
|
1358
|
+
'{' shift, and go to state 12
|
|
1359
|
+
|
|
1360
|
+
$default reduce using rule 14 (empty)
|
|
1361
|
+
|
|
1362
|
+
ind_rep go to state 23
|
|
1363
|
+
empty go to state 69
|
|
1364
|
+
indent_open go to state 41
|
|
1365
|
+
indent_sep go to state 87
|
|
1366
|
+
word_rep go to state 24
|
|
1367
|
+
struct_rep go to state 18
|
|
1368
|
+
implicit_seq go to state 19
|
|
1369
|
+
top_imp_seq go to state 88
|
|
1370
|
+
inline_seq go to state 20
|
|
1371
|
+
implicit_map go to state 21
|
|
1372
|
+
top_imp_map go to state 89
|
|
1373
|
+
inline_map go to state 22
|
|
1374
|
+
|
|
1375
|
+
|
|
1376
|
+
state 78
|
|
1377
|
+
|
|
1378
|
+
7 ind_rep: YAML_TRANSFER . ind_rep
|
|
1379
|
+
16 empty: YAML_TRANSFER . empty
|
|
1380
|
+
25 word_rep: YAML_TRANSFER . word_rep
|
|
1381
|
+
41 top_imp_seq: YAML_TRANSFER . indent_sep in_implicit_seq
|
|
1382
|
+
42 | YAML_TRANSFER . top_imp_seq
|
|
1383
|
+
58 top_imp_map: YAML_TRANSFER . indent_sep in_implicit_map
|
|
1384
|
+
59 | YAML_TRANSFER . top_imp_map
|
|
1385
|
+
|
|
1386
|
+
YAML_ANCHOR shift, and go to state 77
|
|
1387
|
+
YAML_ALIAS shift, and go to state 2
|
|
1388
|
+
YAML_TRANSFER shift, and go to state 78
|
|
1389
|
+
YAML_TAGURI shift, and go to state 79
|
|
1390
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1391
|
+
YAML_WORD shift, and go to state 6
|
|
1392
|
+
YAML_PLAIN shift, and go to state 7
|
|
1393
|
+
YAML_BLOCK shift, and go to state 8
|
|
1394
|
+
YAML_IOPEN shift, and go to state 10
|
|
1395
|
+
YAML_INDENT shift, and go to state 86
|
|
1396
|
+
'[' shift, and go to state 11
|
|
1397
|
+
'{' shift, and go to state 12
|
|
1398
|
+
|
|
1399
|
+
$default reduce using rule 14 (empty)
|
|
1400
|
+
|
|
1401
|
+
ind_rep go to state 25
|
|
1402
|
+
empty go to state 70
|
|
1403
|
+
indent_open go to state 41
|
|
1404
|
+
indent_sep go to state 90
|
|
1405
|
+
word_rep go to state 26
|
|
1406
|
+
struct_rep go to state 18
|
|
1407
|
+
implicit_seq go to state 19
|
|
1408
|
+
top_imp_seq go to state 91
|
|
1409
|
+
inline_seq go to state 20
|
|
1410
|
+
implicit_map go to state 21
|
|
1411
|
+
top_imp_map go to state 92
|
|
1412
|
+
inline_map go to state 22
|
|
1413
|
+
|
|
1414
|
+
|
|
1415
|
+
state 79
|
|
1416
|
+
|
|
1417
|
+
8 ind_rep: YAML_TAGURI . ind_rep
|
|
1418
|
+
17 empty: YAML_TAGURI . empty
|
|
1419
|
+
26 word_rep: YAML_TAGURI . word_rep
|
|
1420
|
+
43 top_imp_seq: YAML_TAGURI . indent_sep in_implicit_seq
|
|
1421
|
+
44 | YAML_TAGURI . top_imp_seq
|
|
1422
|
+
60 top_imp_map: YAML_TAGURI . indent_sep in_implicit_map
|
|
1423
|
+
61 | YAML_TAGURI . top_imp_map
|
|
1424
|
+
|
|
1425
|
+
YAML_ANCHOR shift, and go to state 77
|
|
1426
|
+
YAML_ALIAS shift, and go to state 2
|
|
1427
|
+
YAML_TRANSFER shift, and go to state 78
|
|
1428
|
+
YAML_TAGURI shift, and go to state 79
|
|
1429
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1430
|
+
YAML_WORD shift, and go to state 6
|
|
1431
|
+
YAML_PLAIN shift, and go to state 7
|
|
1432
|
+
YAML_BLOCK shift, and go to state 8
|
|
1433
|
+
YAML_IOPEN shift, and go to state 10
|
|
1434
|
+
YAML_INDENT shift, and go to state 86
|
|
1435
|
+
'[' shift, and go to state 11
|
|
1436
|
+
'{' shift, and go to state 12
|
|
1437
|
+
|
|
1438
|
+
$default reduce using rule 14 (empty)
|
|
1439
|
+
|
|
1440
|
+
ind_rep go to state 27
|
|
1441
|
+
empty go to state 71
|
|
1442
|
+
indent_open go to state 41
|
|
1443
|
+
indent_sep go to state 93
|
|
1444
|
+
word_rep go to state 28
|
|
1445
|
+
struct_rep go to state 18
|
|
1446
|
+
implicit_seq go to state 19
|
|
1447
|
+
top_imp_seq go to state 94
|
|
1448
|
+
inline_seq go to state 20
|
|
1449
|
+
implicit_map go to state 21
|
|
1450
|
+
top_imp_map go to state 95
|
|
1451
|
+
inline_map go to state 22
|
|
1452
|
+
|
|
1453
|
+
|
|
1454
|
+
state 80
|
|
1455
|
+
|
|
1456
|
+
13 empty: indent_open empty . indent_end
|
|
1457
|
+
|
|
1458
|
+
YAML_IEND shift, and go to state 102
|
|
1459
|
+
|
|
1460
|
+
indent_end go to state 110
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
state 81
|
|
1464
|
+
|
|
1465
|
+
72 basic_mapping: atom ':' . atom_or_empty
|
|
1466
|
+
|
|
1467
|
+
YAML_ANCHOR shift, and go to state 34
|
|
1468
|
+
YAML_ALIAS shift, and go to state 2
|
|
1469
|
+
YAML_TRANSFER shift, and go to state 35
|
|
1470
|
+
YAML_TAGURI shift, and go to state 36
|
|
1471
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1472
|
+
YAML_WORD shift, and go to state 6
|
|
1473
|
+
YAML_PLAIN shift, and go to state 7
|
|
1474
|
+
YAML_BLOCK shift, and go to state 8
|
|
1475
|
+
YAML_IOPEN shift, and go to state 10
|
|
1476
|
+
'[' shift, and go to state 11
|
|
1477
|
+
'{' shift, and go to state 12
|
|
1478
|
+
|
|
1479
|
+
$default reduce using rule 14 (empty)
|
|
1480
|
+
|
|
1481
|
+
atom go to state 38
|
|
1482
|
+
ind_rep go to state 15
|
|
1483
|
+
atom_or_empty go to state 111
|
|
1484
|
+
empty go to state 40
|
|
1485
|
+
indent_open go to state 41
|
|
1486
|
+
word_rep go to state 17
|
|
1487
|
+
struct_rep go to state 18
|
|
1488
|
+
implicit_seq go to state 19
|
|
1489
|
+
inline_seq go to state 20
|
|
1490
|
+
implicit_map go to state 21
|
|
1491
|
+
inline_map go to state 22
|
|
1492
|
+
|
|
1493
|
+
|
|
1494
|
+
state 82
|
|
1495
|
+
|
|
1496
|
+
50 inline_seq: '[' in_inline_seq ']' .
|
|
1497
|
+
|
|
1498
|
+
$default reduce using rule 50 (inline_seq)
|
|
1499
|
+
|
|
1500
|
+
|
|
1501
|
+
state 83
|
|
1502
|
+
|
|
1503
|
+
53 in_inline_seq: in_inline_seq ',' . inline_seq_atom
|
|
1504
|
+
|
|
1505
|
+
YAML_ANCHOR shift, and go to state 1
|
|
1506
|
+
YAML_ALIAS shift, and go to state 2
|
|
1507
|
+
YAML_TRANSFER shift, and go to state 3
|
|
1508
|
+
YAML_TAGURI shift, and go to state 4
|
|
1509
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1510
|
+
YAML_WORD shift, and go to state 6
|
|
1511
|
+
YAML_PLAIN shift, and go to state 7
|
|
1512
|
+
YAML_BLOCK shift, and go to state 8
|
|
1513
|
+
YAML_IOPEN shift, and go to state 10
|
|
1514
|
+
'[' shift, and go to state 11
|
|
1515
|
+
'{' shift, and go to state 12
|
|
1516
|
+
|
|
1517
|
+
atom go to state 43
|
|
1518
|
+
ind_rep go to state 15
|
|
1519
|
+
indent_open go to state 16
|
|
1520
|
+
word_rep go to state 17
|
|
1521
|
+
struct_rep go to state 18
|
|
1522
|
+
implicit_seq go to state 19
|
|
1523
|
+
inline_seq go to state 20
|
|
1524
|
+
inline_seq_atom go to state 112
|
|
1525
|
+
implicit_map go to state 21
|
|
1526
|
+
basic_mapping go to state 46
|
|
1527
|
+
inline_map go to state 22
|
|
1528
|
+
|
|
1529
|
+
|
|
1530
|
+
state 84
|
|
1531
|
+
|
|
1532
|
+
73 inline_map: '{' in_inline_map '}' .
|
|
1533
|
+
|
|
1534
|
+
$default reduce using rule 73 (inline_map)
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
state 85
|
|
1538
|
+
|
|
1539
|
+
76 in_inline_map: in_inline_map ',' . inline_map_atom
|
|
1540
|
+
|
|
1541
|
+
YAML_ANCHOR shift, and go to state 1
|
|
1542
|
+
YAML_ALIAS shift, and go to state 2
|
|
1543
|
+
YAML_TRANSFER shift, and go to state 3
|
|
1544
|
+
YAML_TAGURI shift, and go to state 4
|
|
1545
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1546
|
+
YAML_WORD shift, and go to state 6
|
|
1547
|
+
YAML_PLAIN shift, and go to state 7
|
|
1548
|
+
YAML_BLOCK shift, and go to state 8
|
|
1549
|
+
YAML_IOPEN shift, and go to state 10
|
|
1550
|
+
'[' shift, and go to state 11
|
|
1551
|
+
'{' shift, and go to state 12
|
|
1552
|
+
|
|
1553
|
+
atom go to state 48
|
|
1554
|
+
ind_rep go to state 15
|
|
1555
|
+
indent_open go to state 16
|
|
1556
|
+
word_rep go to state 17
|
|
1557
|
+
struct_rep go to state 18
|
|
1558
|
+
implicit_seq go to state 19
|
|
1559
|
+
inline_seq go to state 20
|
|
1560
|
+
implicit_map go to state 21
|
|
1561
|
+
basic_mapping go to state 49
|
|
1562
|
+
inline_map go to state 22
|
|
1563
|
+
inline_map_atom go to state 113
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
state 86
|
|
1567
|
+
|
|
1568
|
+
22 indent_sep: YAML_INDENT .
|
|
1569
|
+
|
|
1570
|
+
$default reduce using rule 22 (indent_sep)
|
|
1571
|
+
|
|
1572
|
+
|
|
1573
|
+
state 87
|
|
1574
|
+
|
|
1575
|
+
45 top_imp_seq: YAML_ANCHOR indent_sep . in_implicit_seq
|
|
1576
|
+
62 top_imp_map: YAML_ANCHOR indent_sep . in_implicit_map
|
|
1577
|
+
|
|
1578
|
+
YAML_ANCHOR shift, and go to state 29
|
|
1579
|
+
YAML_ALIAS shift, and go to state 2
|
|
1580
|
+
YAML_TRANSFER shift, and go to state 30
|
|
1581
|
+
YAML_TAGURI shift, and go to state 31
|
|
1582
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1583
|
+
YAML_WORD shift, and go to state 6
|
|
1584
|
+
YAML_PLAIN shift, and go to state 7
|
|
1585
|
+
YAML_IOPEN shift, and go to state 10
|
|
1586
|
+
'-' shift, and go to state 57
|
|
1587
|
+
'?' shift, and go to state 58
|
|
1588
|
+
|
|
1589
|
+
indent_open go to state 32
|
|
1590
|
+
word_rep go to state 114
|
|
1591
|
+
basic_seq go to state 61
|
|
1592
|
+
in_implicit_seq go to state 115
|
|
1593
|
+
complex_key go to state 65
|
|
1594
|
+
complex_mapping go to state 66
|
|
1595
|
+
in_implicit_map go to state 116
|
|
1596
|
+
|
|
1597
|
+
|
|
1598
|
+
state 88
|
|
1599
|
+
|
|
1600
|
+
46 top_imp_seq: YAML_ANCHOR top_imp_seq .
|
|
1601
|
+
|
|
1602
|
+
$default reduce using rule 46 (top_imp_seq)
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
state 89
|
|
1606
|
+
|
|
1607
|
+
63 top_imp_map: YAML_ANCHOR top_imp_map .
|
|
1608
|
+
|
|
1609
|
+
$default reduce using rule 63 (top_imp_map)
|
|
1610
|
+
|
|
1611
|
+
|
|
1612
|
+
state 90
|
|
1613
|
+
|
|
1614
|
+
41 top_imp_seq: YAML_TRANSFER indent_sep . in_implicit_seq
|
|
1615
|
+
58 top_imp_map: YAML_TRANSFER indent_sep . in_implicit_map
|
|
1616
|
+
|
|
1617
|
+
YAML_ANCHOR shift, and go to state 29
|
|
1618
|
+
YAML_ALIAS shift, and go to state 2
|
|
1619
|
+
YAML_TRANSFER shift, and go to state 30
|
|
1620
|
+
YAML_TAGURI shift, and go to state 31
|
|
1621
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1622
|
+
YAML_WORD shift, and go to state 6
|
|
1623
|
+
YAML_PLAIN shift, and go to state 7
|
|
1624
|
+
YAML_IOPEN shift, and go to state 10
|
|
1625
|
+
'-' shift, and go to state 57
|
|
1626
|
+
'?' shift, and go to state 58
|
|
1627
|
+
|
|
1628
|
+
indent_open go to state 32
|
|
1629
|
+
word_rep go to state 114
|
|
1630
|
+
basic_seq go to state 61
|
|
1631
|
+
in_implicit_seq go to state 117
|
|
1632
|
+
complex_key go to state 65
|
|
1633
|
+
complex_mapping go to state 66
|
|
1634
|
+
in_implicit_map go to state 118
|
|
1635
|
+
|
|
1636
|
+
|
|
1637
|
+
state 91
|
|
1638
|
+
|
|
1639
|
+
42 top_imp_seq: YAML_TRANSFER top_imp_seq .
|
|
1640
|
+
|
|
1641
|
+
$default reduce using rule 42 (top_imp_seq)
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
state 92
|
|
1645
|
+
|
|
1646
|
+
59 top_imp_map: YAML_TRANSFER top_imp_map .
|
|
1647
|
+
|
|
1648
|
+
$default reduce using rule 59 (top_imp_map)
|
|
1649
|
+
|
|
1650
|
+
|
|
1651
|
+
state 93
|
|
1652
|
+
|
|
1653
|
+
43 top_imp_seq: YAML_TAGURI indent_sep . in_implicit_seq
|
|
1654
|
+
60 top_imp_map: YAML_TAGURI indent_sep . in_implicit_map
|
|
1655
|
+
|
|
1656
|
+
YAML_ANCHOR shift, and go to state 29
|
|
1657
|
+
YAML_ALIAS shift, and go to state 2
|
|
1658
|
+
YAML_TRANSFER shift, and go to state 30
|
|
1659
|
+
YAML_TAGURI shift, and go to state 31
|
|
1660
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1661
|
+
YAML_WORD shift, and go to state 6
|
|
1662
|
+
YAML_PLAIN shift, and go to state 7
|
|
1663
|
+
YAML_IOPEN shift, and go to state 10
|
|
1664
|
+
'-' shift, and go to state 57
|
|
1665
|
+
'?' shift, and go to state 58
|
|
1666
|
+
|
|
1667
|
+
indent_open go to state 32
|
|
1668
|
+
word_rep go to state 114
|
|
1669
|
+
basic_seq go to state 61
|
|
1670
|
+
in_implicit_seq go to state 119
|
|
1671
|
+
complex_key go to state 65
|
|
1672
|
+
complex_mapping go to state 66
|
|
1673
|
+
in_implicit_map go to state 120
|
|
1674
|
+
|
|
1675
|
+
|
|
1676
|
+
state 94
|
|
1677
|
+
|
|
1678
|
+
44 top_imp_seq: YAML_TAGURI top_imp_seq .
|
|
1679
|
+
|
|
1680
|
+
$default reduce using rule 44 (top_imp_seq)
|
|
1681
|
+
|
|
1682
|
+
|
|
1683
|
+
state 95
|
|
1684
|
+
|
|
1685
|
+
61 top_imp_map: YAML_TAGURI top_imp_map .
|
|
1686
|
+
|
|
1687
|
+
$default reduce using rule 61 (top_imp_map)
|
|
1688
|
+
|
|
1689
|
+
|
|
1690
|
+
state 96
|
|
1691
|
+
|
|
1692
|
+
40 basic_seq: '-' atom_or_empty .
|
|
1693
|
+
|
|
1694
|
+
$default reduce using rule 40 (basic_seq)
|
|
1695
|
+
|
|
1696
|
+
|
|
1697
|
+
state 97
|
|
1698
|
+
|
|
1699
|
+
65 complex_key: '?' atom . indent_sep
|
|
1700
|
+
|
|
1701
|
+
YAML_INDENT shift, and go to state 86
|
|
1702
|
+
|
|
1703
|
+
indent_sep go to state 121
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
state 98
|
|
1707
|
+
|
|
1708
|
+
23 indent_flex_end: YAML_IEND .
|
|
1709
|
+
|
|
1710
|
+
$default reduce using rule 23 (indent_flex_end)
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
state 99
|
|
1714
|
+
|
|
1715
|
+
24 indent_flex_end: indent_sep . indent_flex_end
|
|
1716
|
+
|
|
1717
|
+
YAML_INDENT shift, and go to state 86
|
|
1718
|
+
YAML_IEND shift, and go to state 98
|
|
1719
|
+
|
|
1720
|
+
indent_sep go to state 99
|
|
1721
|
+
indent_flex_end go to state 122
|
|
1722
|
+
|
|
1723
|
+
|
|
1724
|
+
state 100
|
|
1725
|
+
|
|
1726
|
+
10 ind_rep: indent_open ind_rep indent_flex_end .
|
|
1727
|
+
|
|
1728
|
+
$default reduce using rule 10 (ind_rep)
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
state 101
|
|
1732
|
+
|
|
1733
|
+
32 word_rep: indent_open word_rep indent_flex_end .
|
|
1734
|
+
|
|
1735
|
+
$default reduce using rule 32 (word_rep)
|
|
1736
|
+
|
|
1737
|
+
|
|
1738
|
+
state 102
|
|
1739
|
+
|
|
1740
|
+
21 indent_end: YAML_IEND .
|
|
1741
|
+
|
|
1742
|
+
$default reduce using rule 21 (indent_end)
|
|
1743
|
+
|
|
1744
|
+
|
|
1745
|
+
state 103
|
|
1746
|
+
|
|
1747
|
+
38 implicit_seq: indent_open top_imp_seq indent_end .
|
|
1748
|
+
|
|
1749
|
+
$default reduce using rule 38 (implicit_seq)
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
state 104
|
|
1753
|
+
|
|
1754
|
+
39 implicit_seq: indent_open in_implicit_seq indent_end .
|
|
1755
|
+
|
|
1756
|
+
$default reduce using rule 39 (implicit_seq)
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
state 105
|
|
1760
|
+
|
|
1761
|
+
48 in_implicit_seq: in_implicit_seq indent_sep . basic_seq
|
|
1762
|
+
49 | in_implicit_seq indent_sep .
|
|
1763
|
+
|
|
1764
|
+
'-' shift, and go to state 57
|
|
1765
|
+
|
|
1766
|
+
$default reduce using rule 49 (in_implicit_seq)
|
|
1767
|
+
|
|
1768
|
+
basic_seq go to state 123
|
|
1769
|
+
|
|
1770
|
+
|
|
1771
|
+
state 106
|
|
1772
|
+
|
|
1773
|
+
56 implicit_map: indent_open top_imp_map indent_end .
|
|
1774
|
+
|
|
1775
|
+
$default reduce using rule 56 (implicit_map)
|
|
1776
|
+
|
|
1777
|
+
|
|
1778
|
+
state 107
|
|
1779
|
+
|
|
1780
|
+
67 complex_mapping: complex_key ':' . complex_value
|
|
1781
|
+
|
|
1782
|
+
YAML_ANCHOR shift, and go to state 34
|
|
1783
|
+
YAML_ALIAS shift, and go to state 2
|
|
1784
|
+
YAML_TRANSFER shift, and go to state 35
|
|
1785
|
+
YAML_TAGURI shift, and go to state 36
|
|
1786
|
+
YAML_ITRANSFER shift, and go to state 37
|
|
1787
|
+
YAML_WORD shift, and go to state 6
|
|
1788
|
+
YAML_PLAIN shift, and go to state 7
|
|
1789
|
+
YAML_BLOCK shift, and go to state 8
|
|
1790
|
+
YAML_IOPEN shift, and go to state 10
|
|
1791
|
+
'[' shift, and go to state 11
|
|
1792
|
+
'{' shift, and go to state 12
|
|
1793
|
+
|
|
1794
|
+
$default reduce using rule 14 (empty)
|
|
1795
|
+
|
|
1796
|
+
atom go to state 38
|
|
1797
|
+
ind_rep go to state 15
|
|
1798
|
+
atom_or_empty go to state 124
|
|
1799
|
+
empty go to state 40
|
|
1800
|
+
indent_open go to state 41
|
|
1801
|
+
word_rep go to state 17
|
|
1802
|
+
struct_rep go to state 18
|
|
1803
|
+
implicit_seq go to state 19
|
|
1804
|
+
inline_seq go to state 20
|
|
1805
|
+
implicit_map go to state 21
|
|
1806
|
+
complex_value go to state 125
|
|
1807
|
+
inline_map go to state 22
|
|
1808
|
+
|
|
1809
|
+
|
|
1810
|
+
state 108
|
|
1811
|
+
|
|
1812
|
+
57 implicit_map: indent_open in_implicit_map indent_end .
|
|
1813
|
+
|
|
1814
|
+
$default reduce using rule 57 (implicit_map)
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
state 109
|
|
1818
|
+
|
|
1819
|
+
69 in_implicit_map: in_implicit_map indent_sep . basic_seq
|
|
1820
|
+
70 | in_implicit_map indent_sep . complex_mapping
|
|
1821
|
+
71 | in_implicit_map indent_sep .
|
|
1822
|
+
|
|
1823
|
+
YAML_ANCHOR shift, and go to state 29
|
|
1824
|
+
YAML_ALIAS shift, and go to state 2
|
|
1825
|
+
YAML_TRANSFER shift, and go to state 30
|
|
1826
|
+
YAML_TAGURI shift, and go to state 31
|
|
1827
|
+
YAML_ITRANSFER shift, and go to state 5
|
|
1828
|
+
YAML_WORD shift, and go to state 6
|
|
1829
|
+
YAML_PLAIN shift, and go to state 7
|
|
1830
|
+
YAML_IOPEN shift, and go to state 10
|
|
1831
|
+
'-' shift, and go to state 57
|
|
1832
|
+
'?' shift, and go to state 58
|
|
1833
|
+
|
|
1834
|
+
$default reduce using rule 71 (in_implicit_map)
|
|
1835
|
+
|
|
1836
|
+
indent_open go to state 32
|
|
1837
|
+
word_rep go to state 114
|
|
1838
|
+
basic_seq go to state 126
|
|
1839
|
+
complex_key go to state 65
|
|
1840
|
+
complex_mapping go to state 127
|
|
1841
|
+
|
|
1842
|
+
|
|
1843
|
+
state 110
|
|
1844
|
+
|
|
1845
|
+
13 empty: indent_open empty indent_end .
|
|
1846
|
+
|
|
1847
|
+
$default reduce using rule 13 (empty)
|
|
1848
|
+
|
|
1849
|
+
|
|
1850
|
+
state 111
|
|
1851
|
+
|
|
1852
|
+
72 basic_mapping: atom ':' atom_or_empty .
|
|
1853
|
+
|
|
1854
|
+
$default reduce using rule 72 (basic_mapping)
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
state 112
|
|
1858
|
+
|
|
1859
|
+
53 in_inline_seq: in_inline_seq ',' inline_seq_atom .
|
|
1860
|
+
|
|
1861
|
+
$default reduce using rule 53 (in_inline_seq)
|
|
1862
|
+
|
|
1863
|
+
|
|
1864
|
+
state 113
|
|
1865
|
+
|
|
1866
|
+
76 in_inline_map: in_inline_map ',' inline_map_atom .
|
|
1867
|
+
|
|
1868
|
+
$default reduce using rule 76 (in_inline_map)
|
|
1869
|
+
|
|
1870
|
+
|
|
1871
|
+
state 114
|
|
1872
|
+
|
|
1873
|
+
64 complex_key: word_rep .
|
|
1874
|
+
|
|
1875
|
+
$default reduce using rule 64 (complex_key)
|
|
1876
|
+
|
|
1877
|
+
|
|
1878
|
+
state 115
|
|
1879
|
+
|
|
1880
|
+
45 top_imp_seq: YAML_ANCHOR indent_sep in_implicit_seq .
|
|
1881
|
+
48 in_implicit_seq: in_implicit_seq . indent_sep basic_seq
|
|
1882
|
+
49 | in_implicit_seq . indent_sep
|
|
1883
|
+
|
|
1884
|
+
YAML_INDENT shift, and go to state 86
|
|
1885
|
+
|
|
1886
|
+
$default reduce using rule 45 (top_imp_seq)
|
|
1887
|
+
|
|
1888
|
+
indent_sep go to state 105
|
|
1889
|
+
|
|
1890
|
+
|
|
1891
|
+
state 116
|
|
1892
|
+
|
|
1893
|
+
62 top_imp_map: YAML_ANCHOR indent_sep in_implicit_map .
|
|
1894
|
+
69 in_implicit_map: in_implicit_map . indent_sep basic_seq
|
|
1895
|
+
70 | in_implicit_map . indent_sep complex_mapping
|
|
1896
|
+
71 | in_implicit_map . indent_sep
|
|
1897
|
+
|
|
1898
|
+
YAML_INDENT shift, and go to state 86
|
|
1899
|
+
|
|
1900
|
+
$default reduce using rule 62 (top_imp_map)
|
|
1901
|
+
|
|
1902
|
+
indent_sep go to state 109
|
|
1903
|
+
|
|
1904
|
+
|
|
1905
|
+
state 117
|
|
1906
|
+
|
|
1907
|
+
41 top_imp_seq: YAML_TRANSFER indent_sep in_implicit_seq .
|
|
1908
|
+
48 in_implicit_seq: in_implicit_seq . indent_sep basic_seq
|
|
1909
|
+
49 | in_implicit_seq . indent_sep
|
|
1910
|
+
|
|
1911
|
+
YAML_INDENT shift, and go to state 86
|
|
1912
|
+
|
|
1913
|
+
$default reduce using rule 41 (top_imp_seq)
|
|
1914
|
+
|
|
1915
|
+
indent_sep go to state 105
|
|
1916
|
+
|
|
1917
|
+
|
|
1918
|
+
state 118
|
|
1919
|
+
|
|
1920
|
+
58 top_imp_map: YAML_TRANSFER indent_sep in_implicit_map .
|
|
1921
|
+
69 in_implicit_map: in_implicit_map . indent_sep basic_seq
|
|
1922
|
+
70 | in_implicit_map . indent_sep complex_mapping
|
|
1923
|
+
71 | in_implicit_map . indent_sep
|
|
1924
|
+
|
|
1925
|
+
YAML_INDENT shift, and go to state 86
|
|
1926
|
+
|
|
1927
|
+
$default reduce using rule 58 (top_imp_map)
|
|
1928
|
+
|
|
1929
|
+
indent_sep go to state 109
|
|
1930
|
+
|
|
1931
|
+
|
|
1932
|
+
state 119
|
|
1933
|
+
|
|
1934
|
+
43 top_imp_seq: YAML_TAGURI indent_sep in_implicit_seq .
|
|
1935
|
+
48 in_implicit_seq: in_implicit_seq . indent_sep basic_seq
|
|
1936
|
+
49 | in_implicit_seq . indent_sep
|
|
1937
|
+
|
|
1938
|
+
YAML_INDENT shift, and go to state 86
|
|
1939
|
+
|
|
1940
|
+
$default reduce using rule 43 (top_imp_seq)
|
|
1941
|
+
|
|
1942
|
+
indent_sep go to state 105
|
|
1943
|
+
|
|
1944
|
+
|
|
1945
|
+
state 120
|
|
1946
|
+
|
|
1947
|
+
60 top_imp_map: YAML_TAGURI indent_sep in_implicit_map .
|
|
1948
|
+
69 in_implicit_map: in_implicit_map . indent_sep basic_seq
|
|
1949
|
+
70 | in_implicit_map . indent_sep complex_mapping
|
|
1950
|
+
71 | in_implicit_map . indent_sep
|
|
1951
|
+
|
|
1952
|
+
YAML_INDENT shift, and go to state 86
|
|
1953
|
+
|
|
1954
|
+
$default reduce using rule 60 (top_imp_map)
|
|
1955
|
+
|
|
1956
|
+
indent_sep go to state 109
|
|
1957
|
+
|
|
1958
|
+
|
|
1959
|
+
state 121
|
|
1960
|
+
|
|
1961
|
+
65 complex_key: '?' atom indent_sep .
|
|
1962
|
+
|
|
1963
|
+
$default reduce using rule 65 (complex_key)
|
|
1964
|
+
|
|
1965
|
+
|
|
1966
|
+
state 122
|
|
1967
|
+
|
|
1968
|
+
24 indent_flex_end: indent_sep indent_flex_end .
|
|
1969
|
+
|
|
1970
|
+
$default reduce using rule 24 (indent_flex_end)
|
|
1971
|
+
|
|
1972
|
+
|
|
1973
|
+
state 123
|
|
1974
|
+
|
|
1975
|
+
48 in_implicit_seq: in_implicit_seq indent_sep basic_seq .
|
|
1976
|
+
|
|
1977
|
+
$default reduce using rule 48 (in_implicit_seq)
|
|
1978
|
+
|
|
1979
|
+
|
|
1980
|
+
state 124
|
|
1981
|
+
|
|
1982
|
+
66 complex_value: atom_or_empty .
|
|
1983
|
+
|
|
1984
|
+
$default reduce using rule 66 (complex_value)
|
|
1985
|
+
|
|
1986
|
+
|
|
1987
|
+
state 125
|
|
1988
|
+
|
|
1989
|
+
67 complex_mapping: complex_key ':' complex_value .
|
|
1990
|
+
|
|
1991
|
+
$default reduce using rule 67 (complex_mapping)
|
|
1992
|
+
|
|
1993
|
+
|
|
1994
|
+
state 126
|
|
1995
|
+
|
|
1996
|
+
69 in_implicit_map: in_implicit_map indent_sep basic_seq .
|
|
1997
|
+
|
|
1998
|
+
$default reduce using rule 69 (in_implicit_map)
|
|
1999
|
+
|
|
2000
|
+
|
|
2001
|
+
state 127
|
|
2002
|
+
|
|
2003
|
+
70 in_implicit_map: in_implicit_map indent_sep complex_mapping .
|
|
2004
|
+
|
|
2005
|
+
$default reduce using rule 70 (in_implicit_map)
|