oga 2.11 → 2.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +1 -1
- data/ext/c/lexer.c +1216 -1002
- data/ext/java/org/liboga/xml/Lexer.java +346 -313
- data/ext/ragel/base_lexer.rl +3 -0
- data/lib/oga/version.rb +1 -1
- data/oga.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2267ebf8ba6a58b91153e72833f671ad55470d759d93816fd3084b05c2aa6ca5
|
4
|
+
data.tar.gz: a34fee2348bc6492a1f6c3c24eee976479ede3dac290cd74f58568da6e4884ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bd99edf8a7e785fd13be6590b9dcad5c9ddc6119c9f9f120b5ea205dced9cbb5579465d5432f90aedd0ccf04a4a676efad9f8c77405c9454de89112dd73a098
|
7
|
+
data.tar.gz: f3029cc519e6315c58cde6a2eed4eda20a2097749a2bf0597cdc63bcbb8e05a8dc00e3ff3ae790a717a1e0e11a59cc1f0c263577482125ff59d73573a781ccd1
|
data/README.md
CHANGED
@@ -270,7 +270,7 @@ well as complicating the parsing internals of Oga. As a result I have decided
|
|
270
270
|
that Oga _does not_ insert these tags when left out.
|
271
271
|
|
272
272
|
A more in depth explanation can be found here:
|
273
|
-
<https://
|
273
|
+
<https://gitlab.com/yorickpeterse/oga/issues/98#note_45443992>
|
274
274
|
|
275
275
|
## Documentation
|
276
276
|
|
data/ext/c/lexer.c
CHANGED
@@ -71,29 +71,29 @@ void liboga_xml_lexer_callback_simple(VALUE self, VALUE name)
|
|
71
71
|
|
72
72
|
|
73
73
|
#line 74 "ext/c/lexer.c"
|
74
|
-
static const int c_lexer_start =
|
75
|
-
static const int c_lexer_first_final =
|
74
|
+
static const int c_lexer_start = 35;
|
75
|
+
static const int c_lexer_first_final = 35;
|
76
76
|
static const int c_lexer_error = 0;
|
77
77
|
|
78
|
-
static const int c_lexer_en_comment_body =
|
79
|
-
static const int c_lexer_en_cdata_body =
|
80
|
-
static const int c_lexer_en_proc_ins_body =
|
81
|
-
static const int c_lexer_en_string_squote =
|
82
|
-
static const int c_lexer_en_string_dquote =
|
83
|
-
static const int c_lexer_en_doctype_inline =
|
84
|
-
static const int c_lexer_en_doctype =
|
85
|
-
static const int c_lexer_en_xml_decl =
|
86
|
-
static const int c_lexer_en_element_name =
|
87
|
-
static const int c_lexer_en_element_close =
|
88
|
-
static const int c_lexer_en_attribute_pre =
|
89
|
-
static const int c_lexer_en_unquoted_attribute_value =
|
90
|
-
static const int c_lexer_en_quoted_attribute_value =
|
91
|
-
static const int c_lexer_en_element_head =
|
92
|
-
static const int c_lexer_en_html_element_head =
|
93
|
-
static const int c_lexer_en_text =
|
94
|
-
static const int c_lexer_en_html_script =
|
95
|
-
static const int c_lexer_en_html_style =
|
96
|
-
static const int c_lexer_en_main =
|
78
|
+
static const int c_lexer_en_comment_body = 42;
|
79
|
+
static const int c_lexer_en_cdata_body = 45;
|
80
|
+
static const int c_lexer_en_proc_ins_body = 48;
|
81
|
+
static const int c_lexer_en_string_squote = 51;
|
82
|
+
static const int c_lexer_en_string_dquote = 53;
|
83
|
+
static const int c_lexer_en_doctype_inline = 55;
|
84
|
+
static const int c_lexer_en_doctype = 57;
|
85
|
+
static const int c_lexer_en_xml_decl = 70;
|
86
|
+
static const int c_lexer_en_element_name = 73;
|
87
|
+
static const int c_lexer_en_element_close = 75;
|
88
|
+
static const int c_lexer_en_attribute_pre = 77;
|
89
|
+
static const int c_lexer_en_unquoted_attribute_value = 79;
|
90
|
+
static const int c_lexer_en_quoted_attribute_value = 81;
|
91
|
+
static const int c_lexer_en_element_head = 82;
|
92
|
+
static const int c_lexer_en_html_element_head = 89;
|
93
|
+
static const int c_lexer_en_text = 96;
|
94
|
+
static const int c_lexer_en_html_script = 100;
|
95
|
+
static const int c_lexer_en_html_style = 104;
|
96
|
+
static const int c_lexer_en_main = 35;
|
97
97
|
|
98
98
|
|
99
99
|
#line 70 "ext/c/lexer.rl"
|
@@ -167,8 +167,8 @@ VALUE oga_xml_lexer_advance(VALUE self, VALUE data_block)
|
|
167
167
|
|
168
168
|
_again:
|
169
169
|
switch ( ( state->cs) ) {
|
170
|
-
case
|
171
|
-
case
|
170
|
+
case 35: goto st35;
|
171
|
+
case 36: goto st36;
|
172
172
|
case 1: goto st1;
|
173
173
|
case 2: goto st2;
|
174
174
|
case 3: goto st3;
|
@@ -178,7 +178,7 @@ _again:
|
|
178
178
|
case 7: goto st7;
|
179
179
|
case 8: goto st8;
|
180
180
|
case 9: goto st9;
|
181
|
-
case
|
181
|
+
case 37: goto st37;
|
182
182
|
case 10: goto st10;
|
183
183
|
case 11: goto st11;
|
184
184
|
case 12: goto st12;
|
@@ -186,21 +186,19 @@ _again:
|
|
186
186
|
case 14: goto st14;
|
187
187
|
case 15: goto st15;
|
188
188
|
case 16: goto st16;
|
189
|
-
case 36: goto st36;
|
190
|
-
case 17: goto st17;
|
191
|
-
case 37: goto st37;
|
192
189
|
case 38: goto st38;
|
190
|
+
case 17: goto st17;
|
193
191
|
case 39: goto st39;
|
194
192
|
case 40: goto st40;
|
195
193
|
case 41: goto st41;
|
196
194
|
case 42: goto st42;
|
197
|
-
case 18: goto st18;
|
198
195
|
case 43: goto st43;
|
199
196
|
case 44: goto st44;
|
197
|
+
case 18: goto st18;
|
200
198
|
case 45: goto st45;
|
201
|
-
case 19: goto st19;
|
202
199
|
case 46: goto st46;
|
203
200
|
case 47: goto st47;
|
201
|
+
case 19: goto st19;
|
204
202
|
case 48: goto st48;
|
205
203
|
case 49: goto st49;
|
206
204
|
case 50: goto st50;
|
@@ -210,9 +208,9 @@ _again:
|
|
210
208
|
case 54: goto st54;
|
211
209
|
case 55: goto st55;
|
212
210
|
case 56: goto st56;
|
213
|
-
case 0: goto st0;
|
214
211
|
case 57: goto st57;
|
215
212
|
case 58: goto st58;
|
213
|
+
case 0: goto st0;
|
216
214
|
case 59: goto st59;
|
217
215
|
case 60: goto st60;
|
218
216
|
case 61: goto st61;
|
@@ -242,6 +240,7 @@ _again:
|
|
242
240
|
case 85: goto st85;
|
243
241
|
case 86: goto st86;
|
244
242
|
case 87: goto st87;
|
243
|
+
case 20: goto st20;
|
245
244
|
case 88: goto st88;
|
246
245
|
case 89: goto st89;
|
247
246
|
case 90: goto st90;
|
@@ -249,24 +248,33 @@ _again:
|
|
249
248
|
case 92: goto st92;
|
250
249
|
case 93: goto st93;
|
251
250
|
case 94: goto st94;
|
252
|
-
case 20: goto st20;
|
253
251
|
case 21: goto st21;
|
252
|
+
case 95: goto st95;
|
253
|
+
case 96: goto st96;
|
254
|
+
case 97: goto st97;
|
255
|
+
case 98: goto st98;
|
256
|
+
case 99: goto st99;
|
257
|
+
case 100: goto st100;
|
258
|
+
case 101: goto st101;
|
259
|
+
case 102: goto st102;
|
254
260
|
case 22: goto st22;
|
255
261
|
case 23: goto st23;
|
256
262
|
case 24: goto st24;
|
257
263
|
case 25: goto st25;
|
258
264
|
case 26: goto st26;
|
259
|
-
case 95: goto st95;
|
260
|
-
case 96: goto st96;
|
261
|
-
case 97: goto st97;
|
262
|
-
case 98: goto st98;
|
263
265
|
case 27: goto st27;
|
264
266
|
case 28: goto st28;
|
267
|
+
case 103: goto st103;
|
268
|
+
case 104: goto st104;
|
269
|
+
case 105: goto st105;
|
270
|
+
case 106: goto st106;
|
265
271
|
case 29: goto st29;
|
266
272
|
case 30: goto st30;
|
267
273
|
case 31: goto st31;
|
268
274
|
case 32: goto st32;
|
269
|
-
case
|
275
|
+
case 33: goto st33;
|
276
|
+
case 34: goto st34;
|
277
|
+
case 107: goto st107;
|
270
278
|
default: break;
|
271
279
|
}
|
272
280
|
|
@@ -276,85 +284,85 @@ _resume:
|
|
276
284
|
switch ( ( state->cs) )
|
277
285
|
{
|
278
286
|
tr0:
|
279
|
-
( state->cs) =
|
280
|
-
#line
|
287
|
+
( state->cs) = 35;
|
288
|
+
#line 621 "ext/ragel/base_lexer.rl"
|
281
289
|
{{p = ((te))-1;}{
|
282
290
|
p--;
|
283
|
-
( state->cs) =
|
291
|
+
( state->cs) = 96;
|
284
292
|
}}
|
285
293
|
goto _again;
|
286
294
|
tr4:
|
287
|
-
( state->cs) =
|
295
|
+
( state->cs) = 35;
|
288
296
|
#line 89 "ext/ragel/base_lexer.rl"
|
289
297
|
{te = p+1;{
|
290
298
|
callback_simple(id_on_comment_start);
|
291
299
|
|
292
|
-
( state->cs) =
|
300
|
+
( state->cs) = 42;
|
293
301
|
}}
|
294
302
|
goto _again;
|
295
303
|
tr17:
|
296
|
-
( state->cs) =
|
304
|
+
( state->cs) = 35;
|
297
305
|
#line 128 "ext/ragel/base_lexer.rl"
|
298
306
|
{te = p+1;{
|
299
307
|
callback_simple(id_on_cdata_start);
|
300
308
|
|
301
|
-
( state->cs) =
|
309
|
+
( state->cs) = 45;
|
302
310
|
}}
|
303
311
|
goto _again;
|
304
312
|
tr20:
|
305
|
-
( state->cs) =
|
313
|
+
( state->cs) = 35;
|
306
314
|
#line 1 "NONE"
|
307
315
|
{ switch( ( state->act) ) {
|
308
|
-
case
|
316
|
+
case 62:
|
309
317
|
{{p = ((te))-1;}
|
310
318
|
callback_simple(id_on_xml_decl_start);
|
311
|
-
( state->cs) =
|
319
|
+
( state->cs) = 70;
|
312
320
|
}
|
313
321
|
break;
|
314
|
-
case
|
322
|
+
case 65:
|
315
323
|
{{p = ((te))-1;}
|
316
324
|
callback_simple(id_on_proc_ins_start);
|
317
325
|
callback(id_on_proc_ins_name, data, encoding, ts + 2, te);
|
318
326
|
|
319
|
-
( state->cs) =
|
327
|
+
( state->cs) = 48;
|
320
328
|
}
|
321
329
|
break;
|
322
330
|
}
|
323
331
|
}
|
324
332
|
goto _again;
|
325
|
-
|
326
|
-
( state->cs) =
|
327
|
-
#line
|
333
|
+
tr45:
|
334
|
+
( state->cs) = 35;
|
335
|
+
#line 621 "ext/ragel/base_lexer.rl"
|
328
336
|
{te = p+1;{
|
329
337
|
p--;
|
330
|
-
( state->cs) =
|
338
|
+
( state->cs) = 96;
|
331
339
|
}}
|
332
340
|
goto _again;
|
333
|
-
|
334
|
-
( state->cs) =
|
335
|
-
#line
|
341
|
+
tr47:
|
342
|
+
( state->cs) = 35;
|
343
|
+
#line 621 "ext/ragel/base_lexer.rl"
|
336
344
|
{te = p;p--;{
|
337
345
|
p--;
|
338
|
-
( state->cs) =
|
346
|
+
( state->cs) = 96;
|
339
347
|
}}
|
340
348
|
goto _again;
|
341
|
-
|
342
|
-
( state->cs) =
|
349
|
+
tr48:
|
350
|
+
( state->cs) = 35;
|
343
351
|
#line 371 "ext/ragel/base_lexer.rl"
|
344
352
|
{te = p+1;{
|
345
353
|
p--;
|
346
|
-
( state->cs) =
|
354
|
+
( state->cs) = 73;
|
347
355
|
}}
|
348
356
|
goto _again;
|
349
|
-
|
350
|
-
( state->cs) =
|
357
|
+
tr50:
|
358
|
+
( state->cs) = 35;
|
351
359
|
#line 376 "ext/ragel/base_lexer.rl"
|
352
360
|
{te = p+1;{
|
353
|
-
( state->cs) =
|
361
|
+
( state->cs) = 75;
|
354
362
|
}}
|
355
363
|
goto _again;
|
356
|
-
|
357
|
-
( state->cs) =
|
364
|
+
tr52:
|
365
|
+
( state->cs) = 35;
|
358
366
|
#line 260 "ext/ragel/base_lexer.rl"
|
359
367
|
{te = p;p--;{
|
360
368
|
callback_simple(id_on_doctype_start);
|
@@ -366,58 +374,58 @@ tr48:
|
|
366
374
|
lines = 0;
|
367
375
|
}
|
368
376
|
|
369
|
-
( state->cs) =
|
377
|
+
( state->cs) = 57;
|
370
378
|
}}
|
371
379
|
goto _again;
|
372
|
-
|
373
|
-
( state->cs) =
|
380
|
+
tr54:
|
381
|
+
( state->cs) = 35;
|
374
382
|
#line 170 "ext/ragel/base_lexer.rl"
|
375
383
|
{te = p;p--;{
|
376
384
|
callback_simple(id_on_proc_ins_start);
|
377
385
|
callback(id_on_proc_ins_name, data, encoding, ts + 2, te);
|
378
386
|
|
379
|
-
( state->cs) =
|
387
|
+
( state->cs) = 48;
|
380
388
|
}}
|
381
389
|
goto _again;
|
382
|
-
|
390
|
+
st35:
|
383
391
|
#line 1 "NONE"
|
384
392
|
{ts = 0;}
|
385
393
|
if ( ++p == pe )
|
386
|
-
goto
|
387
|
-
case
|
394
|
+
goto _test_eof35;
|
395
|
+
case 35:
|
388
396
|
#line 1 "NONE"
|
389
397
|
{ts = p;}
|
390
|
-
#line
|
398
|
+
#line 399 "ext/c/lexer.c"
|
391
399
|
if ( (*p) == 60 )
|
392
|
-
goto
|
393
|
-
goto
|
394
|
-
|
400
|
+
goto tr46;
|
401
|
+
goto tr45;
|
402
|
+
tr46:
|
395
403
|
#line 1 "NONE"
|
396
404
|
{te = p+1;}
|
397
|
-
goto
|
398
|
-
|
405
|
+
goto st36;
|
406
|
+
st36:
|
399
407
|
if ( ++p == pe )
|
400
|
-
goto
|
401
|
-
case
|
402
|
-
#line
|
408
|
+
goto _test_eof36;
|
409
|
+
case 36:
|
410
|
+
#line 411 "ext/c/lexer.c"
|
403
411
|
switch( (*p) ) {
|
404
412
|
case 33: goto st1;
|
405
|
-
case 47: goto
|
413
|
+
case 47: goto tr50;
|
406
414
|
case 63: goto st16;
|
407
|
-
case 96: goto
|
415
|
+
case 96: goto tr47;
|
408
416
|
}
|
409
417
|
if ( (*p) < 58 ) {
|
410
418
|
if ( 0 <= (*p) && (*p) <= 44 )
|
411
|
-
goto
|
419
|
+
goto tr47;
|
412
420
|
} else if ( (*p) > 64 ) {
|
413
421
|
if ( (*p) > 94 ) {
|
414
422
|
if ( 123 <= (*p) )
|
415
|
-
goto
|
423
|
+
goto tr47;
|
416
424
|
} else if ( (*p) >= 91 )
|
417
|
-
goto
|
425
|
+
goto tr47;
|
418
426
|
} else
|
419
|
-
goto
|
420
|
-
goto
|
427
|
+
goto tr47;
|
428
|
+
goto tr48;
|
421
429
|
st1:
|
422
430
|
if ( ++p == pe )
|
423
431
|
goto _test_eof1;
|
@@ -506,19 +514,19 @@ tr11:
|
|
506
514
|
{
|
507
515
|
if ( (*p) == '\n' ) lines++;
|
508
516
|
}
|
509
|
-
goto
|
510
|
-
|
517
|
+
goto st37;
|
518
|
+
st37:
|
511
519
|
if ( ++p == pe )
|
512
|
-
goto
|
513
|
-
case
|
514
|
-
#line
|
520
|
+
goto _test_eof37;
|
521
|
+
case 37:
|
522
|
+
#line 523 "ext/c/lexer.c"
|
515
523
|
switch( (*p) ) {
|
516
524
|
case 13: goto tr11;
|
517
525
|
case 32: goto tr11;
|
518
526
|
}
|
519
527
|
if ( 9 <= (*p) && (*p) <= 10 )
|
520
528
|
goto tr11;
|
521
|
-
goto
|
529
|
+
goto tr52;
|
522
530
|
st10:
|
523
531
|
if ( ++p == pe )
|
524
532
|
goto _test_eof10;
|
@@ -586,19 +594,19 @@ tr18:
|
|
586
594
|
#line 1 "NONE"
|
587
595
|
{te = p+1;}
|
588
596
|
#line 170 "ext/ragel/base_lexer.rl"
|
589
|
-
{( state->act) =
|
590
|
-
goto
|
591
|
-
|
597
|
+
{( state->act) = 65;}
|
598
|
+
goto st38;
|
599
|
+
tr56:
|
592
600
|
#line 1 "NONE"
|
593
601
|
{te = p+1;}
|
594
602
|
#line 324 "ext/ragel/base_lexer.rl"
|
595
|
-
{( state->act) =
|
596
|
-
goto
|
597
|
-
|
603
|
+
{( state->act) = 62;}
|
604
|
+
goto st38;
|
605
|
+
st38:
|
598
606
|
if ( ++p == pe )
|
599
|
-
goto
|
600
|
-
case
|
601
|
-
#line
|
607
|
+
goto _test_eof38;
|
608
|
+
case 38:
|
609
|
+
#line 610 "ext/c/lexer.c"
|
602
610
|
switch( (*p) ) {
|
603
611
|
case 47: goto tr20;
|
604
612
|
case 58: goto st17;
|
@@ -635,84 +643,84 @@ case 17:
|
|
635
643
|
goto tr20;
|
636
644
|
} else
|
637
645
|
goto tr20;
|
638
|
-
goto
|
639
|
-
|
646
|
+
goto st39;
|
647
|
+
st39:
|
640
648
|
if ( ++p == pe )
|
641
|
-
goto
|
642
|
-
case
|
649
|
+
goto _test_eof39;
|
650
|
+
case 39:
|
643
651
|
switch( (*p) ) {
|
644
|
-
case 47: goto
|
645
|
-
case 96: goto
|
652
|
+
case 47: goto tr54;
|
653
|
+
case 96: goto tr54;
|
646
654
|
}
|
647
655
|
if ( (*p) < 58 ) {
|
648
656
|
if ( 0 <= (*p) && (*p) <= 44 )
|
649
|
-
goto
|
657
|
+
goto tr54;
|
650
658
|
} else if ( (*p) > 64 ) {
|
651
659
|
if ( (*p) > 94 ) {
|
652
660
|
if ( 123 <= (*p) )
|
653
|
-
goto
|
661
|
+
goto tr54;
|
654
662
|
} else if ( (*p) >= 91 )
|
655
|
-
goto
|
663
|
+
goto tr54;
|
656
664
|
} else
|
657
|
-
goto
|
658
|
-
goto
|
665
|
+
goto tr54;
|
666
|
+
goto st39;
|
659
667
|
tr19:
|
660
668
|
#line 1 "NONE"
|
661
669
|
{te = p+1;}
|
662
670
|
#line 170 "ext/ragel/base_lexer.rl"
|
663
|
-
{( state->act) =
|
664
|
-
goto
|
665
|
-
|
671
|
+
{( state->act) = 65;}
|
672
|
+
goto st40;
|
673
|
+
st40:
|
666
674
|
if ( ++p == pe )
|
667
|
-
goto
|
668
|
-
case
|
669
|
-
#line
|
675
|
+
goto _test_eof40;
|
676
|
+
case 40:
|
677
|
+
#line 678 "ext/c/lexer.c"
|
670
678
|
switch( (*p) ) {
|
671
|
-
case 47: goto
|
679
|
+
case 47: goto tr54;
|
672
680
|
case 58: goto st17;
|
673
|
-
case 96: goto
|
674
|
-
case 109: goto
|
681
|
+
case 96: goto tr54;
|
682
|
+
case 109: goto tr55;
|
675
683
|
}
|
676
684
|
if ( (*p) < 59 ) {
|
677
685
|
if ( 0 <= (*p) && (*p) <= 44 )
|
678
|
-
goto
|
686
|
+
goto tr54;
|
679
687
|
} else if ( (*p) > 64 ) {
|
680
688
|
if ( (*p) > 94 ) {
|
681
689
|
if ( 123 <= (*p) )
|
682
|
-
goto
|
690
|
+
goto tr54;
|
683
691
|
} else if ( (*p) >= 91 )
|
684
|
-
goto
|
692
|
+
goto tr54;
|
685
693
|
} else
|
686
|
-
goto
|
694
|
+
goto tr54;
|
687
695
|
goto tr18;
|
688
|
-
|
696
|
+
tr55:
|
689
697
|
#line 1 "NONE"
|
690
698
|
{te = p+1;}
|
691
699
|
#line 170 "ext/ragel/base_lexer.rl"
|
692
|
-
{( state->act) =
|
693
|
-
goto
|
694
|
-
|
700
|
+
{( state->act) = 65;}
|
701
|
+
goto st41;
|
702
|
+
st41:
|
695
703
|
if ( ++p == pe )
|
696
|
-
goto
|
697
|
-
case
|
698
|
-
#line
|
704
|
+
goto _test_eof41;
|
705
|
+
case 41:
|
706
|
+
#line 707 "ext/c/lexer.c"
|
699
707
|
switch( (*p) ) {
|
700
|
-
case 47: goto
|
708
|
+
case 47: goto tr54;
|
701
709
|
case 58: goto st17;
|
702
|
-
case 96: goto
|
703
|
-
case 108: goto
|
710
|
+
case 96: goto tr54;
|
711
|
+
case 108: goto tr56;
|
704
712
|
}
|
705
713
|
if ( (*p) < 59 ) {
|
706
714
|
if ( 0 <= (*p) && (*p) <= 44 )
|
707
|
-
goto
|
715
|
+
goto tr54;
|
708
716
|
} else if ( (*p) > 64 ) {
|
709
717
|
if ( (*p) > 94 ) {
|
710
718
|
if ( 123 <= (*p) )
|
711
|
-
goto
|
719
|
+
goto tr54;
|
712
720
|
} else if ( (*p) >= 91 )
|
713
|
-
goto
|
721
|
+
goto tr54;
|
714
722
|
} else
|
715
|
-
goto
|
723
|
+
goto tr54;
|
716
724
|
goto tr18;
|
717
725
|
tr22:
|
718
726
|
#line 96 "ext/ragel/base_lexer.rl"
|
@@ -726,17 +734,17 @@ tr22:
|
|
726
734
|
lines = 0;
|
727
735
|
}
|
728
736
|
}}
|
729
|
-
goto
|
737
|
+
goto st42;
|
730
738
|
tr23:
|
731
|
-
( state->cs) =
|
739
|
+
( state->cs) = 42;
|
732
740
|
#line 107 "ext/ragel/base_lexer.rl"
|
733
741
|
{te = p+1;{
|
734
742
|
callback_simple(id_on_comment_end);
|
735
743
|
|
736
|
-
( state->cs) =
|
744
|
+
( state->cs) = 35;
|
737
745
|
}}
|
738
746
|
goto _again;
|
739
|
-
|
747
|
+
tr59:
|
740
748
|
#line 96 "ext/ragel/base_lexer.rl"
|
741
749
|
{te = p;p--;{
|
742
750
|
callback(id_on_comment_body, data, encoding, ts, te);
|
@@ -748,49 +756,49 @@ tr55:
|
|
748
756
|
lines = 0;
|
749
757
|
}
|
750
758
|
}}
|
751
|
-
goto
|
752
|
-
|
759
|
+
goto st42;
|
760
|
+
st42:
|
753
761
|
#line 1 "NONE"
|
754
762
|
{ts = 0;}
|
755
763
|
if ( ++p == pe )
|
756
|
-
goto
|
757
|
-
case
|
764
|
+
goto _test_eof42;
|
765
|
+
case 42:
|
758
766
|
#line 1 "NONE"
|
759
767
|
{ts = p;}
|
760
|
-
#line
|
768
|
+
#line 769 "ext/c/lexer.c"
|
761
769
|
if ( (*p) == 45 )
|
762
|
-
goto
|
763
|
-
goto
|
764
|
-
|
770
|
+
goto tr58;
|
771
|
+
goto tr57;
|
772
|
+
tr57:
|
765
773
|
#line 61 "ext/ragel/base_lexer.rl"
|
766
774
|
{
|
767
775
|
if ( (*p) == '\n' ) lines++;
|
768
776
|
}
|
769
|
-
goto
|
770
|
-
|
777
|
+
goto st43;
|
778
|
+
st43:
|
771
779
|
if ( ++p == pe )
|
772
|
-
goto
|
773
|
-
case
|
774
|
-
#line
|
780
|
+
goto _test_eof43;
|
781
|
+
case 43:
|
782
|
+
#line 783 "ext/c/lexer.c"
|
775
783
|
if ( (*p) == 45 )
|
776
|
-
goto
|
777
|
-
goto
|
778
|
-
|
784
|
+
goto tr59;
|
785
|
+
goto tr57;
|
786
|
+
tr58:
|
779
787
|
#line 1 "NONE"
|
780
788
|
{te = p+1;}
|
781
789
|
#line 61 "ext/ragel/base_lexer.rl"
|
782
790
|
{
|
783
791
|
if ( (*p) == '\n' ) lines++;
|
784
792
|
}
|
785
|
-
goto
|
786
|
-
|
793
|
+
goto st44;
|
794
|
+
st44:
|
787
795
|
if ( ++p == pe )
|
788
|
-
goto
|
789
|
-
case
|
790
|
-
#line
|
796
|
+
goto _test_eof44;
|
797
|
+
case 44:
|
798
|
+
#line 799 "ext/c/lexer.c"
|
791
799
|
if ( (*p) == 45 )
|
792
800
|
goto st18;
|
793
|
-
goto
|
801
|
+
goto tr59;
|
794
802
|
st18:
|
795
803
|
if ( ++p == pe )
|
796
804
|
goto _test_eof18;
|
@@ -810,17 +818,17 @@ tr24:
|
|
810
818
|
lines = 0;
|
811
819
|
}
|
812
820
|
}}
|
813
|
-
goto
|
821
|
+
goto st45;
|
814
822
|
tr25:
|
815
|
-
( state->cs) =
|
823
|
+
( state->cs) = 45;
|
816
824
|
#line 146 "ext/ragel/base_lexer.rl"
|
817
825
|
{te = p+1;{
|
818
826
|
callback_simple(id_on_cdata_end);
|
819
827
|
|
820
|
-
( state->cs) =
|
828
|
+
( state->cs) = 35;
|
821
829
|
}}
|
822
830
|
goto _again;
|
823
|
-
|
831
|
+
tr63:
|
824
832
|
#line 135 "ext/ragel/base_lexer.rl"
|
825
833
|
{te = p;p--;{
|
826
834
|
callback(id_on_cdata_body, data, encoding, ts, te);
|
@@ -832,49 +840,49 @@ tr59:
|
|
832
840
|
lines = 0;
|
833
841
|
}
|
834
842
|
}}
|
835
|
-
goto
|
836
|
-
|
843
|
+
goto st45;
|
844
|
+
st45:
|
837
845
|
#line 1 "NONE"
|
838
846
|
{ts = 0;}
|
839
847
|
if ( ++p == pe )
|
840
|
-
goto
|
841
|
-
case
|
848
|
+
goto _test_eof45;
|
849
|
+
case 45:
|
842
850
|
#line 1 "NONE"
|
843
851
|
{ts = p;}
|
844
|
-
#line
|
852
|
+
#line 853 "ext/c/lexer.c"
|
845
853
|
if ( (*p) == 93 )
|
846
|
-
goto
|
847
|
-
goto
|
848
|
-
|
854
|
+
goto tr62;
|
855
|
+
goto tr61;
|
856
|
+
tr61:
|
849
857
|
#line 61 "ext/ragel/base_lexer.rl"
|
850
858
|
{
|
851
859
|
if ( (*p) == '\n' ) lines++;
|
852
860
|
}
|
853
|
-
goto
|
854
|
-
|
861
|
+
goto st46;
|
862
|
+
st46:
|
855
863
|
if ( ++p == pe )
|
856
|
-
goto
|
857
|
-
case
|
858
|
-
#line
|
864
|
+
goto _test_eof46;
|
865
|
+
case 46:
|
866
|
+
#line 867 "ext/c/lexer.c"
|
859
867
|
if ( (*p) == 93 )
|
860
|
-
goto
|
861
|
-
goto
|
862
|
-
|
868
|
+
goto tr63;
|
869
|
+
goto tr61;
|
870
|
+
tr62:
|
863
871
|
#line 1 "NONE"
|
864
872
|
{te = p+1;}
|
865
873
|
#line 61 "ext/ragel/base_lexer.rl"
|
866
874
|
{
|
867
875
|
if ( (*p) == '\n' ) lines++;
|
868
876
|
}
|
869
|
-
goto
|
870
|
-
|
877
|
+
goto st47;
|
878
|
+
st47:
|
871
879
|
if ( ++p == pe )
|
872
|
-
goto
|
873
|
-
case
|
874
|
-
#line
|
880
|
+
goto _test_eof47;
|
881
|
+
case 47:
|
882
|
+
#line 883 "ext/c/lexer.c"
|
875
883
|
if ( (*p) == 93 )
|
876
884
|
goto st19;
|
877
|
-
goto
|
885
|
+
goto tr63;
|
878
886
|
st19:
|
879
887
|
if ( ++p == pe )
|
880
888
|
goto _test_eof19;
|
@@ -882,7 +890,7 @@ case 19:
|
|
882
890
|
if ( (*p) == 62 )
|
883
891
|
goto tr25;
|
884
892
|
goto tr24;
|
885
|
-
|
893
|
+
tr67:
|
886
894
|
#line 178 "ext/ragel/base_lexer.rl"
|
887
895
|
{te = p;p--;{
|
888
896
|
callback(id_on_proc_ins_body, data, encoding, ts, te);
|
@@ -894,65 +902,65 @@ tr63:
|
|
894
902
|
lines = 0;
|
895
903
|
}
|
896
904
|
}}
|
897
|
-
goto
|
898
|
-
|
899
|
-
( state->cs) =
|
905
|
+
goto st48;
|
906
|
+
tr68:
|
907
|
+
( state->cs) = 48;
|
900
908
|
#line 189 "ext/ragel/base_lexer.rl"
|
901
909
|
{te = p+1;{
|
902
910
|
callback_simple(id_on_proc_ins_end);
|
903
911
|
|
904
|
-
( state->cs) =
|
912
|
+
( state->cs) = 35;
|
905
913
|
}}
|
906
914
|
goto _again;
|
907
|
-
|
915
|
+
st48:
|
908
916
|
#line 1 "NONE"
|
909
917
|
{ts = 0;}
|
910
918
|
if ( ++p == pe )
|
911
|
-
goto
|
912
|
-
case
|
919
|
+
goto _test_eof48;
|
920
|
+
case 48:
|
913
921
|
#line 1 "NONE"
|
914
922
|
{ts = p;}
|
915
|
-
#line
|
923
|
+
#line 924 "ext/c/lexer.c"
|
916
924
|
if ( (*p) == 63 )
|
917
|
-
goto
|
918
|
-
goto
|
919
|
-
|
925
|
+
goto tr66;
|
926
|
+
goto tr65;
|
927
|
+
tr65:
|
920
928
|
#line 61 "ext/ragel/base_lexer.rl"
|
921
929
|
{
|
922
930
|
if ( (*p) == '\n' ) lines++;
|
923
931
|
}
|
924
|
-
goto
|
925
|
-
|
932
|
+
goto st49;
|
933
|
+
st49:
|
926
934
|
if ( ++p == pe )
|
927
|
-
goto
|
928
|
-
case
|
929
|
-
#line
|
935
|
+
goto _test_eof49;
|
936
|
+
case 49:
|
937
|
+
#line 938 "ext/c/lexer.c"
|
930
938
|
if ( (*p) == 63 )
|
931
|
-
goto
|
932
|
-
goto
|
933
|
-
|
939
|
+
goto tr67;
|
940
|
+
goto tr65;
|
941
|
+
tr66:
|
934
942
|
#line 61 "ext/ragel/base_lexer.rl"
|
935
943
|
{
|
936
944
|
if ( (*p) == '\n' ) lines++;
|
937
945
|
}
|
938
|
-
goto
|
939
|
-
|
946
|
+
goto st50;
|
947
|
+
st50:
|
940
948
|
if ( ++p == pe )
|
941
|
-
goto
|
942
|
-
case
|
943
|
-
#line
|
949
|
+
goto _test_eof50;
|
950
|
+
case 50:
|
951
|
+
#line 952 "ext/c/lexer.c"
|
944
952
|
if ( (*p) == 62 )
|
945
|
-
goto
|
946
|
-
goto
|
947
|
-
|
953
|
+
goto tr68;
|
954
|
+
goto tr67;
|
955
|
+
tr70:
|
948
956
|
#line 231 "ext/ragel/base_lexer.rl"
|
949
957
|
{te = p+1;{
|
950
958
|
callback_simple(id_on_string_squote);
|
951
959
|
|
952
960
|
{( state->cs) = ( state->stack)[--( state->top)];goto _again;}
|
953
961
|
}}
|
954
|
-
goto
|
955
|
-
|
962
|
+
goto st51;
|
963
|
+
tr71:
|
956
964
|
#line 205 "ext/ragel/base_lexer.rl"
|
957
965
|
{te = p;p--;{
|
958
966
|
callback(id_on_string_body, data, encoding, ts, te);
|
@@ -964,42 +972,42 @@ tr67:
|
|
964
972
|
lines = 0;
|
965
973
|
}
|
966
974
|
}}
|
967
|
-
goto
|
968
|
-
|
975
|
+
goto st51;
|
976
|
+
st51:
|
969
977
|
#line 1 "NONE"
|
970
978
|
{ts = 0;}
|
971
979
|
if ( ++p == pe )
|
972
|
-
goto
|
973
|
-
case
|
980
|
+
goto _test_eof51;
|
981
|
+
case 51:
|
974
982
|
#line 1 "NONE"
|
975
983
|
{ts = p;}
|
976
|
-
#line
|
984
|
+
#line 985 "ext/c/lexer.c"
|
977
985
|
if ( (*p) == 39 )
|
978
|
-
goto
|
979
|
-
goto
|
980
|
-
|
986
|
+
goto tr70;
|
987
|
+
goto tr69;
|
988
|
+
tr69:
|
981
989
|
#line 61 "ext/ragel/base_lexer.rl"
|
982
990
|
{
|
983
991
|
if ( (*p) == '\n' ) lines++;
|
984
992
|
}
|
985
|
-
goto
|
986
|
-
|
993
|
+
goto st52;
|
994
|
+
st52:
|
987
995
|
if ( ++p == pe )
|
988
|
-
goto
|
989
|
-
case
|
990
|
-
#line
|
996
|
+
goto _test_eof52;
|
997
|
+
case 52:
|
998
|
+
#line 999 "ext/c/lexer.c"
|
991
999
|
if ( (*p) == 39 )
|
992
|
-
goto
|
993
|
-
goto
|
994
|
-
|
1000
|
+
goto tr71;
|
1001
|
+
goto tr69;
|
1002
|
+
tr73:
|
995
1003
|
#line 241 "ext/ragel/base_lexer.rl"
|
996
1004
|
{te = p+1;{
|
997
1005
|
callback_simple(id_on_string_dquote);
|
998
1006
|
|
999
1007
|
{( state->cs) = ( state->stack)[--( state->top)];goto _again;}
|
1000
1008
|
}}
|
1001
|
-
goto
|
1002
|
-
|
1009
|
+
goto st53;
|
1010
|
+
tr74:
|
1003
1011
|
#line 205 "ext/ragel/base_lexer.rl"
|
1004
1012
|
{te = p;p--;{
|
1005
1013
|
callback(id_on_string_body, data, encoding, ts, te);
|
@@ -1011,39 +1019,39 @@ tr70:
|
|
1011
1019
|
lines = 0;
|
1012
1020
|
}
|
1013
1021
|
}}
|
1014
|
-
goto
|
1015
|
-
|
1022
|
+
goto st53;
|
1023
|
+
st53:
|
1016
1024
|
#line 1 "NONE"
|
1017
1025
|
{ts = 0;}
|
1018
1026
|
if ( ++p == pe )
|
1019
|
-
goto
|
1020
|
-
case
|
1027
|
+
goto _test_eof53;
|
1028
|
+
case 53:
|
1021
1029
|
#line 1 "NONE"
|
1022
1030
|
{ts = p;}
|
1023
|
-
#line
|
1031
|
+
#line 1032 "ext/c/lexer.c"
|
1024
1032
|
if ( (*p) == 34 )
|
1025
|
-
goto
|
1026
|
-
goto
|
1027
|
-
|
1033
|
+
goto tr73;
|
1034
|
+
goto tr72;
|
1035
|
+
tr72:
|
1028
1036
|
#line 61 "ext/ragel/base_lexer.rl"
|
1029
1037
|
{
|
1030
1038
|
if ( (*p) == '\n' ) lines++;
|
1031
1039
|
}
|
1032
|
-
goto
|
1033
|
-
|
1040
|
+
goto st54;
|
1041
|
+
st54:
|
1034
1042
|
if ( ++p == pe )
|
1035
|
-
goto
|
1036
|
-
case
|
1037
|
-
#line
|
1043
|
+
goto _test_eof54;
|
1044
|
+
case 54:
|
1045
|
+
#line 1046 "ext/c/lexer.c"
|
1038
1046
|
if ( (*p) == 34 )
|
1039
|
-
goto
|
1040
|
-
goto
|
1041
|
-
|
1042
|
-
( state->cs) =
|
1047
|
+
goto tr74;
|
1048
|
+
goto tr72;
|
1049
|
+
tr76:
|
1050
|
+
( state->cs) = 55;
|
1043
1051
|
#line 286 "ext/ragel/base_lexer.rl"
|
1044
|
-
{te = p+1;{ ( state->cs) =
|
1052
|
+
{te = p+1;{ ( state->cs) = 57; }}
|
1045
1053
|
goto _again;
|
1046
|
-
|
1054
|
+
tr77:
|
1047
1055
|
#line 275 "ext/ragel/base_lexer.rl"
|
1048
1056
|
{te = p;p--;{
|
1049
1057
|
callback(id_on_doctype_inline, data, encoding, ts, te);
|
@@ -1055,73 +1063,73 @@ tr73:
|
|
1055
1063
|
lines = 0;
|
1056
1064
|
}
|
1057
1065
|
}}
|
1058
|
-
goto
|
1059
|
-
|
1066
|
+
goto st55;
|
1067
|
+
st55:
|
1060
1068
|
#line 1 "NONE"
|
1061
1069
|
{ts = 0;}
|
1062
1070
|
if ( ++p == pe )
|
1063
|
-
goto
|
1064
|
-
case
|
1071
|
+
goto _test_eof55;
|
1072
|
+
case 55:
|
1065
1073
|
#line 1 "NONE"
|
1066
1074
|
{ts = p;}
|
1067
|
-
#line
|
1075
|
+
#line 1076 "ext/c/lexer.c"
|
1068
1076
|
if ( (*p) == 93 )
|
1069
|
-
goto
|
1070
|
-
goto
|
1071
|
-
|
1077
|
+
goto tr76;
|
1078
|
+
goto tr75;
|
1079
|
+
tr75:
|
1072
1080
|
#line 61 "ext/ragel/base_lexer.rl"
|
1073
1081
|
{
|
1074
1082
|
if ( (*p) == '\n' ) lines++;
|
1075
1083
|
}
|
1076
|
-
goto
|
1077
|
-
|
1084
|
+
goto st56;
|
1085
|
+
st56:
|
1078
1086
|
if ( ++p == pe )
|
1079
|
-
goto
|
1080
|
-
case
|
1081
|
-
#line
|
1087
|
+
goto _test_eof56;
|
1088
|
+
case 56:
|
1089
|
+
#line 1090 "ext/c/lexer.c"
|
1082
1090
|
if ( (*p) == 93 )
|
1083
|
-
goto
|
1084
|
-
goto
|
1085
|
-
|
1091
|
+
goto tr77;
|
1092
|
+
goto tr75;
|
1093
|
+
tr79:
|
1086
1094
|
#line 314 "ext/ragel/base_lexer.rl"
|
1087
1095
|
{te = p+1;}
|
1088
|
-
goto
|
1089
|
-
|
1096
|
+
goto st57;
|
1097
|
+
tr81:
|
1090
1098
|
#line 65 "ext/ragel/base_lexer.rl"
|
1091
1099
|
{te = p+1;{
|
1092
1100
|
advance_line(1);
|
1093
1101
|
}}
|
1094
|
-
goto
|
1095
|
-
|
1102
|
+
goto st57;
|
1103
|
+
tr83:
|
1096
1104
|
#line 222 "ext/ragel/base_lexer.rl"
|
1097
1105
|
{te = p+1;{
|
1098
1106
|
callback_simple(id_on_string_dquote);
|
1099
1107
|
|
1100
|
-
{( state->stack)[( state->top)++] =
|
1108
|
+
{( state->stack)[( state->top)++] = 57;goto st53;}
|
1101
1109
|
}}
|
1102
|
-
goto
|
1103
|
-
|
1110
|
+
goto st57;
|
1111
|
+
tr84:
|
1104
1112
|
#line 216 "ext/ragel/base_lexer.rl"
|
1105
1113
|
{te = p+1;{
|
1106
1114
|
callback_simple(id_on_string_squote);
|
1107
1115
|
|
1108
|
-
{( state->stack)[( state->top)++] =
|
1116
|
+
{( state->stack)[( state->top)++] = 57;goto st51;}
|
1109
1117
|
}}
|
1110
|
-
goto
|
1111
|
-
|
1112
|
-
( state->cs) =
|
1118
|
+
goto st57;
|
1119
|
+
tr85:
|
1120
|
+
( state->cs) = 57;
|
1113
1121
|
#line 307 "ext/ragel/base_lexer.rl"
|
1114
1122
|
{te = p+1;{
|
1115
1123
|
callback_simple(id_on_doctype_end);
|
1116
|
-
( state->cs) =
|
1124
|
+
( state->cs) = 35;
|
1117
1125
|
}}
|
1118
1126
|
goto _again;
|
1119
|
-
|
1120
|
-
( state->cs) =
|
1127
|
+
tr88:
|
1128
|
+
( state->cs) = 57;
|
1121
1129
|
#line 297 "ext/ragel/base_lexer.rl"
|
1122
|
-
{te = p+1;{ ( state->cs) =
|
1130
|
+
{te = p+1;{ ( state->cs) = 55; }}
|
1123
1131
|
goto _again;
|
1124
|
-
|
1132
|
+
tr89:
|
1125
1133
|
#line 1 "NONE"
|
1126
1134
|
{ switch( ( state->act) ) {
|
1127
1135
|
case 13:
|
@@ -1136,40 +1144,40 @@ tr85:
|
|
1136
1144
|
break;
|
1137
1145
|
}
|
1138
1146
|
}
|
1139
|
-
goto
|
1140
|
-
|
1147
|
+
goto st57;
|
1148
|
+
tr90:
|
1141
1149
|
#line 65 "ext/ragel/base_lexer.rl"
|
1142
1150
|
{te = p;p--;{
|
1143
1151
|
advance_line(1);
|
1144
1152
|
}}
|
1145
|
-
goto
|
1146
|
-
|
1153
|
+
goto st57;
|
1154
|
+
tr91:
|
1147
1155
|
#line 303 "ext/ragel/base_lexer.rl"
|
1148
1156
|
{te = p;p--;{
|
1149
1157
|
callback(id_on_doctype_name, data, encoding, ts, te);
|
1150
1158
|
}}
|
1151
|
-
goto
|
1152
|
-
|
1159
|
+
goto st57;
|
1160
|
+
st57:
|
1153
1161
|
#line 1 "NONE"
|
1154
1162
|
{ts = 0;}
|
1155
1163
|
if ( ++p == pe )
|
1156
|
-
goto
|
1157
|
-
case
|
1164
|
+
goto _test_eof57;
|
1165
|
+
case 57:
|
1158
1166
|
#line 1 "NONE"
|
1159
1167
|
{ts = p;}
|
1160
|
-
#line
|
1168
|
+
#line 1169 "ext/c/lexer.c"
|
1161
1169
|
switch( (*p) ) {
|
1162
|
-
case 9: goto
|
1163
|
-
case 10: goto
|
1164
|
-
case 13: goto
|
1165
|
-
case 32: goto
|
1166
|
-
case 34: goto
|
1167
|
-
case 39: goto
|
1170
|
+
case 9: goto tr79;
|
1171
|
+
case 10: goto tr81;
|
1172
|
+
case 13: goto st59;
|
1173
|
+
case 32: goto tr79;
|
1174
|
+
case 34: goto tr83;
|
1175
|
+
case 39: goto tr84;
|
1168
1176
|
case 47: goto st0;
|
1169
|
-
case 62: goto
|
1170
|
-
case 80: goto
|
1171
|
-
case 83: goto
|
1172
|
-
case 91: goto
|
1177
|
+
case 62: goto tr85;
|
1178
|
+
case 80: goto st60;
|
1179
|
+
case 83: goto st65;
|
1180
|
+
case 91: goto tr88;
|
1173
1181
|
case 96: goto st0;
|
1174
1182
|
}
|
1175
1183
|
if ( (*p) < 58 ) {
|
@@ -1183,293 +1191,293 @@ case 55:
|
|
1183
1191
|
goto st0;
|
1184
1192
|
} else
|
1185
1193
|
goto st0;
|
1186
|
-
goto
|
1187
|
-
|
1194
|
+
goto tr78;
|
1195
|
+
tr78:
|
1188
1196
|
#line 1 "NONE"
|
1189
1197
|
{te = p+1;}
|
1190
1198
|
#line 303 "ext/ragel/base_lexer.rl"
|
1191
1199
|
{( state->act) = 17;}
|
1192
|
-
goto
|
1193
|
-
|
1200
|
+
goto st58;
|
1201
|
+
tr96:
|
1194
1202
|
#line 1 "NONE"
|
1195
1203
|
{te = p+1;}
|
1196
1204
|
#line 292 "ext/ragel/base_lexer.rl"
|
1197
1205
|
{( state->act) = 13;}
|
1198
|
-
goto
|
1199
|
-
st56:
|
1200
|
-
if ( ++p == pe )
|
1201
|
-
goto _test_eof56;
|
1202
|
-
case 56:
|
1203
|
-
#line 1204 "ext/c/lexer.c"
|
1204
|
-
switch( (*p) ) {
|
1205
|
-
case 47: goto tr85;
|
1206
|
-
case 96: goto tr85;
|
1207
|
-
}
|
1208
|
-
if ( (*p) < 58 ) {
|
1209
|
-
if ( 0 <= (*p) && (*p) <= 44 )
|
1210
|
-
goto tr85;
|
1211
|
-
} else if ( (*p) > 64 ) {
|
1212
|
-
if ( (*p) > 94 ) {
|
1213
|
-
if ( 123 <= (*p) )
|
1214
|
-
goto tr85;
|
1215
|
-
} else if ( (*p) >= 91 )
|
1216
|
-
goto tr85;
|
1217
|
-
} else
|
1218
|
-
goto tr85;
|
1219
|
-
goto tr74;
|
1220
|
-
st0:
|
1221
|
-
( state->cs) = 0;
|
1222
|
-
goto _out;
|
1223
|
-
st57:
|
1224
|
-
if ( ++p == pe )
|
1225
|
-
goto _test_eof57;
|
1226
|
-
case 57:
|
1227
|
-
if ( (*p) == 10 )
|
1228
|
-
goto tr77;
|
1229
|
-
goto tr86;
|
1206
|
+
goto st58;
|
1230
1207
|
st58:
|
1231
1208
|
if ( ++p == pe )
|
1232
1209
|
goto _test_eof58;
|
1233
1210
|
case 58:
|
1211
|
+
#line 1212 "ext/c/lexer.c"
|
1234
1212
|
switch( (*p) ) {
|
1235
|
-
case 47: goto
|
1236
|
-
case
|
1237
|
-
case 96: goto tr87;
|
1213
|
+
case 47: goto tr89;
|
1214
|
+
case 96: goto tr89;
|
1238
1215
|
}
|
1239
1216
|
if ( (*p) < 58 ) {
|
1240
1217
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1241
|
-
goto
|
1218
|
+
goto tr89;
|
1242
1219
|
} else if ( (*p) > 64 ) {
|
1243
1220
|
if ( (*p) > 94 ) {
|
1244
1221
|
if ( 123 <= (*p) )
|
1245
|
-
goto
|
1222
|
+
goto tr89;
|
1246
1223
|
} else if ( (*p) >= 91 )
|
1247
|
-
goto
|
1224
|
+
goto tr89;
|
1248
1225
|
} else
|
1249
|
-
goto
|
1250
|
-
goto
|
1226
|
+
goto tr89;
|
1227
|
+
goto tr78;
|
1228
|
+
st0:
|
1229
|
+
( state->cs) = 0;
|
1230
|
+
goto _out;
|
1251
1231
|
st59:
|
1252
1232
|
if ( ++p == pe )
|
1253
1233
|
goto _test_eof59;
|
1254
1234
|
case 59:
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
case 96: goto tr87;
|
1259
|
-
}
|
1260
|
-
if ( (*p) < 58 ) {
|
1261
|
-
if ( 0 <= (*p) && (*p) <= 44 )
|
1262
|
-
goto tr87;
|
1263
|
-
} else if ( (*p) > 64 ) {
|
1264
|
-
if ( (*p) > 94 ) {
|
1265
|
-
if ( 123 <= (*p) )
|
1266
|
-
goto tr87;
|
1267
|
-
} else if ( (*p) >= 91 )
|
1268
|
-
goto tr87;
|
1269
|
-
} else
|
1270
|
-
goto tr87;
|
1271
|
-
goto tr74;
|
1235
|
+
if ( (*p) == 10 )
|
1236
|
+
goto tr81;
|
1237
|
+
goto tr90;
|
1272
1238
|
st60:
|
1273
1239
|
if ( ++p == pe )
|
1274
1240
|
goto _test_eof60;
|
1275
1241
|
case 60:
|
1276
1242
|
switch( (*p) ) {
|
1277
|
-
case 47: goto
|
1278
|
-
case
|
1279
|
-
case 96: goto
|
1243
|
+
case 47: goto tr91;
|
1244
|
+
case 85: goto st61;
|
1245
|
+
case 96: goto tr91;
|
1280
1246
|
}
|
1281
1247
|
if ( (*p) < 58 ) {
|
1282
1248
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1283
|
-
goto
|
1249
|
+
goto tr91;
|
1284
1250
|
} else if ( (*p) > 64 ) {
|
1285
1251
|
if ( (*p) > 94 ) {
|
1286
1252
|
if ( 123 <= (*p) )
|
1287
|
-
goto
|
1253
|
+
goto tr91;
|
1288
1254
|
} else if ( (*p) >= 91 )
|
1289
|
-
goto
|
1255
|
+
goto tr91;
|
1290
1256
|
} else
|
1291
|
-
goto
|
1292
|
-
goto
|
1257
|
+
goto tr91;
|
1258
|
+
goto tr78;
|
1293
1259
|
st61:
|
1294
1260
|
if ( ++p == pe )
|
1295
1261
|
goto _test_eof61;
|
1296
1262
|
case 61:
|
1297
1263
|
switch( (*p) ) {
|
1298
|
-
case 47: goto
|
1299
|
-
case
|
1300
|
-
case 96: goto
|
1264
|
+
case 47: goto tr91;
|
1265
|
+
case 66: goto st62;
|
1266
|
+
case 96: goto tr91;
|
1301
1267
|
}
|
1302
1268
|
if ( (*p) < 58 ) {
|
1303
1269
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1304
|
-
goto
|
1270
|
+
goto tr91;
|
1305
1271
|
} else if ( (*p) > 64 ) {
|
1306
1272
|
if ( (*p) > 94 ) {
|
1307
1273
|
if ( 123 <= (*p) )
|
1308
|
-
goto
|
1274
|
+
goto tr91;
|
1309
1275
|
} else if ( (*p) >= 91 )
|
1310
|
-
goto
|
1276
|
+
goto tr91;
|
1311
1277
|
} else
|
1312
|
-
goto
|
1313
|
-
goto
|
1278
|
+
goto tr91;
|
1279
|
+
goto tr78;
|
1314
1280
|
st62:
|
1315
1281
|
if ( ++p == pe )
|
1316
1282
|
goto _test_eof62;
|
1317
1283
|
case 62:
|
1318
1284
|
switch( (*p) ) {
|
1319
|
-
case 47: goto
|
1320
|
-
case
|
1321
|
-
case 96: goto
|
1285
|
+
case 47: goto tr91;
|
1286
|
+
case 76: goto st63;
|
1287
|
+
case 96: goto tr91;
|
1322
1288
|
}
|
1323
1289
|
if ( (*p) < 58 ) {
|
1324
1290
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1325
|
-
goto
|
1291
|
+
goto tr91;
|
1326
1292
|
} else if ( (*p) > 64 ) {
|
1327
1293
|
if ( (*p) > 94 ) {
|
1328
1294
|
if ( 123 <= (*p) )
|
1329
|
-
goto
|
1295
|
+
goto tr91;
|
1330
1296
|
} else if ( (*p) >= 91 )
|
1331
|
-
goto
|
1297
|
+
goto tr91;
|
1332
1298
|
} else
|
1333
|
-
goto
|
1334
|
-
goto
|
1299
|
+
goto tr91;
|
1300
|
+
goto tr78;
|
1335
1301
|
st63:
|
1336
1302
|
if ( ++p == pe )
|
1337
1303
|
goto _test_eof63;
|
1338
1304
|
case 63:
|
1339
1305
|
switch( (*p) ) {
|
1340
|
-
case 47: goto
|
1341
|
-
case
|
1342
|
-
case 96: goto
|
1306
|
+
case 47: goto tr91;
|
1307
|
+
case 73: goto st64;
|
1308
|
+
case 96: goto tr91;
|
1343
1309
|
}
|
1344
1310
|
if ( (*p) < 58 ) {
|
1345
1311
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1346
|
-
goto
|
1312
|
+
goto tr91;
|
1347
1313
|
} else if ( (*p) > 64 ) {
|
1348
1314
|
if ( (*p) > 94 ) {
|
1349
1315
|
if ( 123 <= (*p) )
|
1350
|
-
goto
|
1316
|
+
goto tr91;
|
1351
1317
|
} else if ( (*p) >= 91 )
|
1352
|
-
goto
|
1318
|
+
goto tr91;
|
1353
1319
|
} else
|
1354
|
-
goto
|
1355
|
-
goto
|
1320
|
+
goto tr91;
|
1321
|
+
goto tr78;
|
1356
1322
|
st64:
|
1357
1323
|
if ( ++p == pe )
|
1358
1324
|
goto _test_eof64;
|
1359
1325
|
case 64:
|
1360
1326
|
switch( (*p) ) {
|
1361
|
-
case 47: goto
|
1362
|
-
case
|
1363
|
-
case 96: goto
|
1327
|
+
case 47: goto tr91;
|
1328
|
+
case 67: goto tr96;
|
1329
|
+
case 96: goto tr91;
|
1364
1330
|
}
|
1365
1331
|
if ( (*p) < 58 ) {
|
1366
1332
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1367
|
-
goto
|
1333
|
+
goto tr91;
|
1368
1334
|
} else if ( (*p) > 64 ) {
|
1369
1335
|
if ( (*p) > 94 ) {
|
1370
1336
|
if ( 123 <= (*p) )
|
1371
|
-
goto
|
1337
|
+
goto tr91;
|
1372
1338
|
} else if ( (*p) >= 91 )
|
1373
|
-
goto
|
1339
|
+
goto tr91;
|
1374
1340
|
} else
|
1375
|
-
goto
|
1376
|
-
goto
|
1341
|
+
goto tr91;
|
1342
|
+
goto tr78;
|
1377
1343
|
st65:
|
1378
1344
|
if ( ++p == pe )
|
1379
1345
|
goto _test_eof65;
|
1380
1346
|
case 65:
|
1381
1347
|
switch( (*p) ) {
|
1382
|
-
case 47: goto
|
1383
|
-
case
|
1384
|
-
case 96: goto
|
1348
|
+
case 47: goto tr91;
|
1349
|
+
case 89: goto st66;
|
1350
|
+
case 96: goto tr91;
|
1385
1351
|
}
|
1386
1352
|
if ( (*p) < 58 ) {
|
1387
1353
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1388
|
-
goto
|
1354
|
+
goto tr91;
|
1389
1355
|
} else if ( (*p) > 64 ) {
|
1390
1356
|
if ( (*p) > 94 ) {
|
1391
1357
|
if ( 123 <= (*p) )
|
1392
|
-
goto
|
1358
|
+
goto tr91;
|
1393
1359
|
} else if ( (*p) >= 91 )
|
1394
|
-
goto
|
1360
|
+
goto tr91;
|
1395
1361
|
} else
|
1396
|
-
goto
|
1397
|
-
goto
|
1362
|
+
goto tr91;
|
1363
|
+
goto tr78;
|
1398
1364
|
st66:
|
1399
1365
|
if ( ++p == pe )
|
1400
1366
|
goto _test_eof66;
|
1401
1367
|
case 66:
|
1402
1368
|
switch( (*p) ) {
|
1403
|
-
case 47: goto
|
1404
|
-
case
|
1405
|
-
case 96: goto
|
1369
|
+
case 47: goto tr91;
|
1370
|
+
case 83: goto st67;
|
1371
|
+
case 96: goto tr91;
|
1406
1372
|
}
|
1407
1373
|
if ( (*p) < 58 ) {
|
1408
1374
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1409
|
-
goto
|
1375
|
+
goto tr91;
|
1410
1376
|
} else if ( (*p) > 64 ) {
|
1411
1377
|
if ( (*p) > 94 ) {
|
1412
1378
|
if ( 123 <= (*p) )
|
1413
|
-
goto
|
1379
|
+
goto tr91;
|
1414
1380
|
} else if ( (*p) >= 91 )
|
1415
|
-
goto
|
1381
|
+
goto tr91;
|
1416
1382
|
} else
|
1417
|
-
goto
|
1418
|
-
goto
|
1383
|
+
goto tr91;
|
1384
|
+
goto tr78;
|
1419
1385
|
st67:
|
1420
1386
|
if ( ++p == pe )
|
1421
1387
|
goto _test_eof67;
|
1422
1388
|
case 67:
|
1423
1389
|
switch( (*p) ) {
|
1424
|
-
case 47: goto
|
1425
|
-
case
|
1426
|
-
case 96: goto
|
1390
|
+
case 47: goto tr91;
|
1391
|
+
case 84: goto st68;
|
1392
|
+
case 96: goto tr91;
|
1393
|
+
}
|
1394
|
+
if ( (*p) < 58 ) {
|
1395
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
1396
|
+
goto tr91;
|
1397
|
+
} else if ( (*p) > 64 ) {
|
1398
|
+
if ( (*p) > 94 ) {
|
1399
|
+
if ( 123 <= (*p) )
|
1400
|
+
goto tr91;
|
1401
|
+
} else if ( (*p) >= 91 )
|
1402
|
+
goto tr91;
|
1403
|
+
} else
|
1404
|
+
goto tr91;
|
1405
|
+
goto tr78;
|
1406
|
+
st68:
|
1407
|
+
if ( ++p == pe )
|
1408
|
+
goto _test_eof68;
|
1409
|
+
case 68:
|
1410
|
+
switch( (*p) ) {
|
1411
|
+
case 47: goto tr91;
|
1412
|
+
case 69: goto st69;
|
1413
|
+
case 96: goto tr91;
|
1414
|
+
}
|
1415
|
+
if ( (*p) < 58 ) {
|
1416
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
1417
|
+
goto tr91;
|
1418
|
+
} else if ( (*p) > 64 ) {
|
1419
|
+
if ( (*p) > 94 ) {
|
1420
|
+
if ( 123 <= (*p) )
|
1421
|
+
goto tr91;
|
1422
|
+
} else if ( (*p) >= 91 )
|
1423
|
+
goto tr91;
|
1424
|
+
} else
|
1425
|
+
goto tr91;
|
1426
|
+
goto tr78;
|
1427
|
+
st69:
|
1428
|
+
if ( ++p == pe )
|
1429
|
+
goto _test_eof69;
|
1430
|
+
case 69:
|
1431
|
+
switch( (*p) ) {
|
1432
|
+
case 47: goto tr91;
|
1433
|
+
case 77: goto tr96;
|
1434
|
+
case 96: goto tr91;
|
1427
1435
|
}
|
1428
1436
|
if ( (*p) < 58 ) {
|
1429
1437
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1430
|
-
goto
|
1438
|
+
goto tr91;
|
1431
1439
|
} else if ( (*p) > 64 ) {
|
1432
1440
|
if ( (*p) > 94 ) {
|
1433
1441
|
if ( 123 <= (*p) )
|
1434
|
-
goto
|
1442
|
+
goto tr91;
|
1435
1443
|
} else if ( (*p) >= 91 )
|
1436
|
-
goto
|
1444
|
+
goto tr91;
|
1437
1445
|
} else
|
1438
|
-
goto
|
1439
|
-
goto
|
1440
|
-
|
1446
|
+
goto tr91;
|
1447
|
+
goto tr78;
|
1448
|
+
tr102:
|
1441
1449
|
#line 61 "ext/ragel/base_lexer.rl"
|
1442
1450
|
{
|
1443
1451
|
if ( (*p) == '\n' ) lines++;
|
1444
1452
|
}
|
1445
1453
|
#line 359 "ext/ragel/base_lexer.rl"
|
1446
1454
|
{te = p+1;}
|
1447
|
-
goto
|
1448
|
-
|
1455
|
+
goto st70;
|
1456
|
+
tr103:
|
1449
1457
|
#line 222 "ext/ragel/base_lexer.rl"
|
1450
1458
|
{te = p+1;{
|
1451
1459
|
callback_simple(id_on_string_dquote);
|
1452
1460
|
|
1453
|
-
{( state->stack)[( state->top)++] =
|
1461
|
+
{( state->stack)[( state->top)++] = 70;goto st53;}
|
1454
1462
|
}}
|
1455
1463
|
#line 61 "ext/ragel/base_lexer.rl"
|
1456
1464
|
{
|
1457
1465
|
if ( (*p) == '\n' ) lines++;
|
1458
1466
|
}
|
1459
|
-
goto
|
1460
|
-
|
1467
|
+
goto st70;
|
1468
|
+
tr104:
|
1461
1469
|
#line 216 "ext/ragel/base_lexer.rl"
|
1462
1470
|
{te = p+1;{
|
1463
1471
|
callback_simple(id_on_string_squote);
|
1464
1472
|
|
1465
|
-
{( state->stack)[( state->top)++] =
|
1473
|
+
{( state->stack)[( state->top)++] = 70;goto st51;}
|
1466
1474
|
}}
|
1467
1475
|
#line 61 "ext/ragel/base_lexer.rl"
|
1468
1476
|
{
|
1469
1477
|
if ( (*p) == '\n' ) lines++;
|
1470
1478
|
}
|
1471
|
-
goto
|
1472
|
-
|
1479
|
+
goto st70;
|
1480
|
+
tr106:
|
1473
1481
|
#line 345 "ext/ragel/base_lexer.rl"
|
1474
1482
|
{te = p;p--;{
|
1475
1483
|
if ( lines > 0 )
|
@@ -1481,13 +1489,13 @@ tr102:
|
|
1481
1489
|
|
1482
1490
|
callback(id_on_attribute, data, encoding, ts, te);
|
1483
1491
|
}}
|
1484
|
-
goto
|
1485
|
-
|
1492
|
+
goto st70;
|
1493
|
+
tr108:
|
1486
1494
|
#line 359 "ext/ragel/base_lexer.rl"
|
1487
1495
|
{te = p;p--;}
|
1488
|
-
goto
|
1489
|
-
|
1490
|
-
( state->cs) =
|
1496
|
+
goto st70;
|
1497
|
+
tr109:
|
1498
|
+
( state->cs) = 70;
|
1491
1499
|
#line 331 "ext/ragel/base_lexer.rl"
|
1492
1500
|
{te = p+1;{
|
1493
1501
|
if ( lines > 0 )
|
@@ -1499,112 +1507,112 @@ tr105:
|
|
1499
1507
|
|
1500
1508
|
callback_simple(id_on_xml_decl_end);
|
1501
1509
|
|
1502
|
-
( state->cs) =
|
1510
|
+
( state->cs) = 35;
|
1503
1511
|
}}
|
1504
1512
|
goto _again;
|
1505
|
-
|
1513
|
+
st70:
|
1506
1514
|
#line 1 "NONE"
|
1507
1515
|
{ts = 0;}
|
1508
1516
|
if ( ++p == pe )
|
1509
|
-
goto
|
1510
|
-
case
|
1517
|
+
goto _test_eof70;
|
1518
|
+
case 70:
|
1511
1519
|
#line 1 "NONE"
|
1512
1520
|
{ts = p;}
|
1513
|
-
#line
|
1521
|
+
#line 1522 "ext/c/lexer.c"
|
1514
1522
|
switch( (*p) ) {
|
1515
|
-
case 34: goto
|
1516
|
-
case 39: goto
|
1517
|
-
case 47: goto
|
1518
|
-
case 63: goto
|
1519
|
-
case 96: goto
|
1523
|
+
case 34: goto tr103;
|
1524
|
+
case 39: goto tr104;
|
1525
|
+
case 47: goto tr102;
|
1526
|
+
case 63: goto tr105;
|
1527
|
+
case 96: goto tr102;
|
1520
1528
|
}
|
1521
1529
|
if ( (*p) < 58 ) {
|
1522
1530
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1523
|
-
goto
|
1531
|
+
goto tr102;
|
1524
1532
|
} else if ( (*p) > 64 ) {
|
1525
1533
|
if ( (*p) > 94 ) {
|
1526
1534
|
if ( 123 <= (*p) )
|
1527
|
-
goto
|
1535
|
+
goto tr102;
|
1528
1536
|
} else if ( (*p) >= 91 )
|
1529
|
-
goto
|
1537
|
+
goto tr102;
|
1530
1538
|
} else
|
1531
|
-
goto
|
1532
|
-
goto
|
1533
|
-
|
1539
|
+
goto tr102;
|
1540
|
+
goto tr101;
|
1541
|
+
tr101:
|
1534
1542
|
#line 61 "ext/ragel/base_lexer.rl"
|
1535
1543
|
{
|
1536
1544
|
if ( (*p) == '\n' ) lines++;
|
1537
1545
|
}
|
1538
|
-
goto
|
1539
|
-
|
1546
|
+
goto st71;
|
1547
|
+
st71:
|
1540
1548
|
if ( ++p == pe )
|
1541
|
-
goto
|
1542
|
-
case
|
1543
|
-
#line
|
1549
|
+
goto _test_eof71;
|
1550
|
+
case 71:
|
1551
|
+
#line 1552 "ext/c/lexer.c"
|
1544
1552
|
switch( (*p) ) {
|
1545
|
-
case 47: goto
|
1546
|
-
case 96: goto
|
1553
|
+
case 47: goto tr106;
|
1554
|
+
case 96: goto tr106;
|
1547
1555
|
}
|
1548
1556
|
if ( (*p) < 58 ) {
|
1549
1557
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1550
|
-
goto
|
1558
|
+
goto tr106;
|
1551
1559
|
} else if ( (*p) > 64 ) {
|
1552
1560
|
if ( (*p) > 94 ) {
|
1553
1561
|
if ( 123 <= (*p) )
|
1554
|
-
goto
|
1562
|
+
goto tr106;
|
1555
1563
|
} else if ( (*p) >= 91 )
|
1556
|
-
goto
|
1564
|
+
goto tr106;
|
1557
1565
|
} else
|
1558
|
-
goto
|
1559
|
-
goto
|
1560
|
-
|
1566
|
+
goto tr106;
|
1567
|
+
goto st71;
|
1568
|
+
tr105:
|
1561
1569
|
#line 61 "ext/ragel/base_lexer.rl"
|
1562
1570
|
{
|
1563
1571
|
if ( (*p) == '\n' ) lines++;
|
1564
1572
|
}
|
1565
|
-
goto
|
1566
|
-
|
1573
|
+
goto st72;
|
1574
|
+
st72:
|
1567
1575
|
if ( ++p == pe )
|
1568
|
-
goto
|
1569
|
-
case
|
1570
|
-
#line
|
1576
|
+
goto _test_eof72;
|
1577
|
+
case 72:
|
1578
|
+
#line 1579 "ext/c/lexer.c"
|
1571
1579
|
if ( (*p) == 62 )
|
1572
|
-
goto
|
1573
|
-
goto
|
1574
|
-
|
1575
|
-
( state->cs) =
|
1576
|
-
#line
|
1580
|
+
goto tr109;
|
1581
|
+
goto tr108;
|
1582
|
+
tr111:
|
1583
|
+
( state->cs) = 73;
|
1584
|
+
#line 403 "ext/ragel/base_lexer.rl"
|
1577
1585
|
{te = p;p--;{
|
1578
1586
|
callback(id_on_element_name, data, encoding, ts, te);
|
1579
1587
|
|
1580
1588
|
if ( html_p )
|
1581
1589
|
{
|
1582
|
-
( state->cs) =
|
1590
|
+
( state->cs) = 89;
|
1583
1591
|
}
|
1584
1592
|
else
|
1585
1593
|
{
|
1586
|
-
( state->cs) =
|
1594
|
+
( state->cs) = 82;
|
1587
1595
|
}
|
1588
1596
|
}}
|
1589
1597
|
goto _again;
|
1590
|
-
|
1591
|
-
#line
|
1598
|
+
tr112:
|
1599
|
+
#line 396 "ext/ragel/base_lexer.rl"
|
1592
1600
|
{te = p+1;{
|
1593
1601
|
if ( !html_p )
|
1594
1602
|
{
|
1595
1603
|
callback(id_on_element_ns, data, encoding, ts, te - 1);
|
1596
1604
|
}
|
1597
1605
|
}}
|
1598
|
-
goto
|
1599
|
-
|
1606
|
+
goto st73;
|
1607
|
+
st73:
|
1600
1608
|
#line 1 "NONE"
|
1601
1609
|
{ts = 0;}
|
1602
1610
|
if ( ++p == pe )
|
1603
|
-
goto
|
1604
|
-
case
|
1611
|
+
goto _test_eof73;
|
1612
|
+
case 73:
|
1605
1613
|
#line 1 "NONE"
|
1606
1614
|
{ts = p;}
|
1607
|
-
#line
|
1615
|
+
#line 1616 "ext/c/lexer.c"
|
1608
1616
|
switch( (*p) ) {
|
1609
1617
|
case 47: goto st0;
|
1610
1618
|
case 96: goto st0;
|
@@ -1620,39 +1628,39 @@ case 71:
|
|
1620
1628
|
goto st0;
|
1621
1629
|
} else
|
1622
1630
|
goto st0;
|
1623
|
-
goto
|
1624
|
-
|
1631
|
+
goto st74;
|
1632
|
+
st74:
|
1625
1633
|
if ( ++p == pe )
|
1626
|
-
goto
|
1627
|
-
case
|
1634
|
+
goto _test_eof74;
|
1635
|
+
case 74:
|
1628
1636
|
switch( (*p) ) {
|
1629
|
-
case 47: goto
|
1630
|
-
case 58: goto
|
1631
|
-
case 96: goto
|
1637
|
+
case 47: goto tr111;
|
1638
|
+
case 58: goto tr112;
|
1639
|
+
case 96: goto tr111;
|
1632
1640
|
}
|
1633
1641
|
if ( (*p) < 59 ) {
|
1634
1642
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1635
|
-
goto
|
1643
|
+
goto tr111;
|
1636
1644
|
} else if ( (*p) > 64 ) {
|
1637
1645
|
if ( (*p) > 94 ) {
|
1638
1646
|
if ( 123 <= (*p) )
|
1639
|
-
goto
|
1647
|
+
goto tr111;
|
1640
1648
|
} else if ( (*p) >= 91 )
|
1641
|
-
goto
|
1649
|
+
goto tr111;
|
1642
1650
|
} else
|
1643
|
-
goto
|
1644
|
-
goto
|
1645
|
-
|
1651
|
+
goto tr111;
|
1652
|
+
goto st74;
|
1653
|
+
tr114:
|
1646
1654
|
#line 61 "ext/ragel/base_lexer.rl"
|
1647
1655
|
{
|
1648
1656
|
if ( (*p) == '\n' ) lines++;
|
1649
1657
|
}
|
1650
|
-
#line
|
1658
|
+
#line 436 "ext/ragel/base_lexer.rl"
|
1651
1659
|
{te = p+1;}
|
1652
|
-
goto
|
1653
|
-
|
1654
|
-
( state->cs) =
|
1655
|
-
#line
|
1660
|
+
goto st75;
|
1661
|
+
tr115:
|
1662
|
+
( state->cs) = 75;
|
1663
|
+
#line 425 "ext/ragel/base_lexer.rl"
|
1656
1664
|
{te = p+1;{
|
1657
1665
|
if ( lines > 0 )
|
1658
1666
|
{
|
@@ -1661,80 +1669,80 @@ tr111:
|
|
1661
1669
|
lines = 0;
|
1662
1670
|
}
|
1663
1671
|
|
1664
|
-
( state->cs) =
|
1672
|
+
( state->cs) = 35;
|
1665
1673
|
}}
|
1666
1674
|
#line 61 "ext/ragel/base_lexer.rl"
|
1667
1675
|
{
|
1668
1676
|
if ( (*p) == '\n' ) lines++;
|
1669
1677
|
}
|
1670
1678
|
goto _again;
|
1671
|
-
|
1679
|
+
tr116:
|
1672
1680
|
#line 380 "ext/ragel/base_lexer.rl"
|
1673
1681
|
{te = p;p--;{
|
1674
1682
|
callback(id_on_element_end, data, encoding, ts, te);
|
1675
1683
|
}}
|
1676
|
-
goto
|
1677
|
-
|
1678
|
-
#line
|
1684
|
+
goto st75;
|
1685
|
+
tr118:
|
1686
|
+
#line 421 "ext/ragel/base_lexer.rl"
|
1679
1687
|
{te = p+1;}
|
1680
|
-
goto
|
1681
|
-
|
1688
|
+
goto st75;
|
1689
|
+
st75:
|
1682
1690
|
#line 1 "NONE"
|
1683
1691
|
{ts = 0;}
|
1684
1692
|
if ( ++p == pe )
|
1685
|
-
goto
|
1686
|
-
case
|
1693
|
+
goto _test_eof75;
|
1694
|
+
case 75:
|
1687
1695
|
#line 1 "NONE"
|
1688
1696
|
{ts = p;}
|
1689
|
-
#line
|
1697
|
+
#line 1698 "ext/c/lexer.c"
|
1690
1698
|
switch( (*p) ) {
|
1691
|
-
case 47: goto
|
1692
|
-
case 62: goto
|
1693
|
-
case 96: goto
|
1699
|
+
case 47: goto tr114;
|
1700
|
+
case 62: goto tr115;
|
1701
|
+
case 96: goto tr114;
|
1694
1702
|
}
|
1695
1703
|
if ( (*p) < 58 ) {
|
1696
1704
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1697
|
-
goto
|
1705
|
+
goto tr114;
|
1698
1706
|
} else if ( (*p) > 64 ) {
|
1699
1707
|
if ( (*p) > 94 ) {
|
1700
1708
|
if ( 123 <= (*p) )
|
1701
|
-
goto
|
1709
|
+
goto tr114;
|
1702
1710
|
} else if ( (*p) >= 91 )
|
1703
|
-
goto
|
1711
|
+
goto tr114;
|
1704
1712
|
} else
|
1705
|
-
goto
|
1706
|
-
goto
|
1707
|
-
|
1713
|
+
goto tr114;
|
1714
|
+
goto tr113;
|
1715
|
+
tr113:
|
1708
1716
|
#line 61 "ext/ragel/base_lexer.rl"
|
1709
1717
|
{
|
1710
1718
|
if ( (*p) == '\n' ) lines++;
|
1711
1719
|
}
|
1712
|
-
goto
|
1713
|
-
|
1720
|
+
goto st76;
|
1721
|
+
st76:
|
1714
1722
|
if ( ++p == pe )
|
1715
|
-
goto
|
1716
|
-
case
|
1717
|
-
#line
|
1723
|
+
goto _test_eof76;
|
1724
|
+
case 76:
|
1725
|
+
#line 1726 "ext/c/lexer.c"
|
1718
1726
|
switch( (*p) ) {
|
1719
|
-
case 47: goto
|
1720
|
-
case 58: goto
|
1721
|
-
case 96: goto
|
1727
|
+
case 47: goto tr116;
|
1728
|
+
case 58: goto tr118;
|
1729
|
+
case 96: goto tr116;
|
1722
1730
|
}
|
1723
1731
|
if ( (*p) < 59 ) {
|
1724
1732
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1725
|
-
goto
|
1733
|
+
goto tr116;
|
1726
1734
|
} else if ( (*p) > 64 ) {
|
1727
1735
|
if ( (*p) > 94 ) {
|
1728
1736
|
if ( 123 <= (*p) )
|
1729
|
-
goto
|
1737
|
+
goto tr116;
|
1730
1738
|
} else if ( (*p) >= 91 )
|
1731
|
-
goto
|
1739
|
+
goto tr116;
|
1732
1740
|
} else
|
1733
|
-
goto
|
1734
|
-
goto
|
1735
|
-
|
1736
|
-
( state->cs) =
|
1737
|
-
#line
|
1741
|
+
goto tr116;
|
1742
|
+
goto st76;
|
1743
|
+
tr119:
|
1744
|
+
( state->cs) = 77;
|
1745
|
+
#line 457 "ext/ragel/base_lexer.rl"
|
1738
1746
|
{te = p+1;{
|
1739
1747
|
p--;
|
1740
1748
|
|
@@ -1747,7 +1755,7 @@ tr115:
|
|
1747
1755
|
|
1748
1756
|
if ( html_p )
|
1749
1757
|
{
|
1750
|
-
( state->cs) =
|
1758
|
+
( state->cs) = 79;
|
1751
1759
|
}
|
1752
1760
|
/* XML doesn't support unquoted attribute values */
|
1753
1761
|
else
|
@@ -1756,18 +1764,18 @@ tr115:
|
|
1756
1764
|
}
|
1757
1765
|
}}
|
1758
1766
|
goto _again;
|
1759
|
-
|
1767
|
+
tr120:
|
1760
1768
|
#line 61 "ext/ragel/base_lexer.rl"
|
1761
1769
|
{
|
1762
1770
|
if ( (*p) == '\n' ) lines++;
|
1763
1771
|
}
|
1764
|
-
#line
|
1772
|
+
#line 442 "ext/ragel/base_lexer.rl"
|
1765
1773
|
{te = p+1;}
|
1766
|
-
goto
|
1767
|
-
|
1768
|
-
( state->cs) =
|
1769
|
-
#line
|
1770
|
-
{te = p+1;{
|
1774
|
+
goto st77;
|
1775
|
+
tr122:
|
1776
|
+
( state->cs) = 77;
|
1777
|
+
#line 444 "ext/ragel/base_lexer.rl"
|
1778
|
+
{te = p+1;{
|
1771
1779
|
p--;
|
1772
1780
|
|
1773
1781
|
if ( lines > 0 )
|
@@ -1777,54 +1785,54 @@ tr118:
|
|
1777
1785
|
lines = 0;
|
1778
1786
|
}
|
1779
1787
|
|
1780
|
-
( state->cs) =
|
1788
|
+
( state->cs) = 81;
|
1781
1789
|
}}
|
1782
1790
|
goto _again;
|
1783
|
-
|
1784
|
-
#line
|
1791
|
+
tr123:
|
1792
|
+
#line 442 "ext/ragel/base_lexer.rl"
|
1785
1793
|
{te = p;p--;}
|
1786
|
-
goto
|
1787
|
-
|
1794
|
+
goto st77;
|
1795
|
+
st77:
|
1788
1796
|
#line 1 "NONE"
|
1789
1797
|
{ts = 0;}
|
1790
1798
|
if ( ++p == pe )
|
1791
|
-
goto
|
1792
|
-
case
|
1799
|
+
goto _test_eof77;
|
1800
|
+
case 77:
|
1793
1801
|
#line 1 "NONE"
|
1794
1802
|
{ts = p;}
|
1795
|
-
#line
|
1803
|
+
#line 1804 "ext/c/lexer.c"
|
1796
1804
|
switch( (*p) ) {
|
1797
|
-
case 13: goto
|
1798
|
-
case 32: goto
|
1799
|
-
case 34: goto
|
1800
|
-
case 39: goto
|
1805
|
+
case 13: goto tr121;
|
1806
|
+
case 32: goto tr120;
|
1807
|
+
case 34: goto tr122;
|
1808
|
+
case 39: goto tr122;
|
1801
1809
|
}
|
1802
1810
|
if ( 9 <= (*p) && (*p) <= 10 )
|
1803
|
-
goto
|
1804
|
-
goto
|
1805
|
-
|
1811
|
+
goto tr120;
|
1812
|
+
goto tr119;
|
1813
|
+
tr121:
|
1806
1814
|
#line 61 "ext/ragel/base_lexer.rl"
|
1807
1815
|
{
|
1808
1816
|
if ( (*p) == '\n' ) lines++;
|
1809
1817
|
}
|
1810
|
-
goto
|
1811
|
-
|
1818
|
+
goto st78;
|
1819
|
+
st78:
|
1812
1820
|
if ( ++p == pe )
|
1813
|
-
goto
|
1814
|
-
case
|
1815
|
-
#line
|
1821
|
+
goto _test_eof78;
|
1822
|
+
case 78:
|
1823
|
+
#line 1824 "ext/c/lexer.c"
|
1816
1824
|
if ( (*p) == 10 )
|
1817
|
-
goto
|
1818
|
-
goto
|
1819
|
-
|
1825
|
+
goto tr120;
|
1826
|
+
goto tr123;
|
1827
|
+
tr125:
|
1820
1828
|
#line 69 "ext/ragel/base_lexer.rl"
|
1821
1829
|
{te = p+1;{
|
1822
1830
|
p--;
|
1823
1831
|
{( state->cs) = ( state->stack)[--( state->top)];goto _again;}
|
1824
1832
|
}}
|
1825
|
-
goto
|
1826
|
-
|
1827
|
-
#line
|
1833
|
+
goto st79;
|
1834
|
+
tr126:
|
1835
|
+
#line 495 "ext/ragel/base_lexer.rl"
|
1828
1836
|
{te = p;p--;{
|
1829
1837
|
callback_simple(id_on_string_squote);
|
1830
1838
|
|
@@ -1832,320 +1840,510 @@ tr122:
|
|
1832
1840
|
|
1833
1841
|
callback_simple(id_on_string_squote);
|
1834
1842
|
}}
|
1835
|
-
goto
|
1836
|
-
|
1843
|
+
goto st79;
|
1844
|
+
st79:
|
1837
1845
|
#line 1 "NONE"
|
1838
1846
|
{ts = 0;}
|
1839
1847
|
if ( ++p == pe )
|
1840
|
-
goto
|
1841
|
-
case
|
1848
|
+
goto _test_eof79;
|
1849
|
+
case 79:
|
1842
1850
|
#line 1 "NONE"
|
1843
1851
|
{ts = p;}
|
1844
|
-
#line
|
1852
|
+
#line 1853 "ext/c/lexer.c"
|
1845
1853
|
switch( (*p) ) {
|
1846
|
-
case 13: goto
|
1847
|
-
case 32: goto
|
1848
|
-
case 62: goto
|
1854
|
+
case 13: goto tr125;
|
1855
|
+
case 32: goto tr125;
|
1856
|
+
case 62: goto tr125;
|
1849
1857
|
}
|
1850
1858
|
if ( 9 <= (*p) && (*p) <= 10 )
|
1851
|
-
goto
|
1852
|
-
goto
|
1853
|
-
|
1859
|
+
goto tr125;
|
1860
|
+
goto st80;
|
1861
|
+
st80:
|
1854
1862
|
if ( ++p == pe )
|
1855
|
-
goto
|
1856
|
-
case
|
1863
|
+
goto _test_eof80;
|
1864
|
+
case 80:
|
1857
1865
|
switch( (*p) ) {
|
1858
|
-
case 13: goto
|
1859
|
-
case 32: goto
|
1860
|
-
case 62: goto
|
1866
|
+
case 13: goto tr126;
|
1867
|
+
case 32: goto tr126;
|
1868
|
+
case 62: goto tr126;
|
1861
1869
|
}
|
1862
1870
|
if ( 9 <= (*p) && (*p) <= 10 )
|
1863
|
-
goto
|
1864
|
-
goto
|
1865
|
-
|
1871
|
+
goto tr126;
|
1872
|
+
goto st80;
|
1873
|
+
tr127:
|
1866
1874
|
#line 69 "ext/ragel/base_lexer.rl"
|
1867
1875
|
{te = p+1;{
|
1868
1876
|
p--;
|
1869
1877
|
{( state->cs) = ( state->stack)[--( state->top)];goto _again;}
|
1870
1878
|
}}
|
1871
|
-
goto
|
1872
|
-
|
1873
|
-
( state->cs) =
|
1874
|
-
#line
|
1879
|
+
goto st81;
|
1880
|
+
tr128:
|
1881
|
+
( state->cs) = 81;
|
1882
|
+
#line 517 "ext/ragel/base_lexer.rl"
|
1875
1883
|
{te = p+1;{
|
1876
1884
|
callback_simple(id_on_string_dquote);
|
1877
1885
|
|
1878
|
-
( state->cs) =
|
1886
|
+
( state->cs) = 53;
|
1879
1887
|
}}
|
1880
1888
|
goto _again;
|
1881
|
-
|
1882
|
-
( state->cs) =
|
1883
|
-
#line
|
1889
|
+
tr129:
|
1890
|
+
( state->cs) = 81;
|
1891
|
+
#line 511 "ext/ragel/base_lexer.rl"
|
1884
1892
|
{te = p+1;{
|
1885
1893
|
callback_simple(id_on_string_squote);
|
1886
1894
|
|
1887
|
-
( state->cs) =
|
1895
|
+
( state->cs) = 51;
|
1888
1896
|
}}
|
1889
1897
|
goto _again;
|
1890
|
-
|
1898
|
+
st81:
|
1891
1899
|
#line 1 "NONE"
|
1892
1900
|
{ts = 0;}
|
1893
1901
|
if ( ++p == pe )
|
1894
|
-
goto
|
1895
|
-
case
|
1902
|
+
goto _test_eof81;
|
1903
|
+
case 81:
|
1896
1904
|
#line 1 "NONE"
|
1897
1905
|
{ts = p;}
|
1898
|
-
#line
|
1906
|
+
#line 1907 "ext/c/lexer.c"
|
1899
1907
|
switch( (*p) ) {
|
1900
|
-
case 34: goto
|
1901
|
-
case 39: goto
|
1908
|
+
case 34: goto tr128;
|
1909
|
+
case 39: goto tr129;
|
1902
1910
|
}
|
1903
|
-
goto
|
1904
|
-
|
1905
|
-
#line
|
1911
|
+
goto tr127;
|
1912
|
+
tr26:
|
1913
|
+
#line 555 "ext/ragel/base_lexer.rl"
|
1914
|
+
{{p = ((te))-1;}}
|
1915
|
+
goto st82;
|
1916
|
+
tr131:
|
1917
|
+
#line 576 "ext/ragel/base_lexer.rl"
|
1906
1918
|
{te = p+1;}
|
1907
|
-
goto
|
1908
|
-
|
1919
|
+
goto st82;
|
1920
|
+
tr132:
|
1909
1921
|
#line 65 "ext/ragel/base_lexer.rl"
|
1910
1922
|
{te = p+1;{
|
1911
1923
|
advance_line(1);
|
1912
1924
|
}}
|
1913
|
-
goto
|
1914
|
-
|
1915
|
-
#line
|
1925
|
+
goto st82;
|
1926
|
+
tr136:
|
1927
|
+
#line 526 "ext/ragel/base_lexer.rl"
|
1916
1928
|
{te = p+1;{
|
1917
|
-
{( state->stack)[( state->top)++] =
|
1929
|
+
{( state->stack)[( state->top)++] = 82;goto st77;}
|
1918
1930
|
}}
|
1919
|
-
goto
|
1920
|
-
|
1921
|
-
( state->cs) =
|
1922
|
-
#line
|
1931
|
+
goto st82;
|
1932
|
+
tr137:
|
1933
|
+
( state->cs) = 82;
|
1934
|
+
#line 568 "ext/ragel/base_lexer.rl"
|
1923
1935
|
{te = p+1;{
|
1924
1936
|
callback_simple(id_on_element_open_end);
|
1925
1937
|
|
1926
|
-
( state->cs) =
|
1938
|
+
( state->cs) = 35;
|
1927
1939
|
}}
|
1928
1940
|
goto _again;
|
1929
|
-
|
1930
|
-
#line
|
1941
|
+
tr138:
|
1942
|
+
#line 562 "ext/ragel/base_lexer.rl"
|
1931
1943
|
{te = p;p--;{
|
1932
1944
|
callback(id_on_attribute, data, encoding, ts, te);
|
1933
1945
|
}}
|
1934
|
-
goto
|
1935
|
-
|
1936
|
-
#line
|
1946
|
+
goto st82;
|
1947
|
+
tr139:
|
1948
|
+
#line 558 "ext/ragel/base_lexer.rl"
|
1937
1949
|
{te = p+1;{
|
1938
1950
|
callback(id_on_attribute_ns, data, encoding, ts, te - 1);
|
1939
1951
|
}}
|
1940
|
-
goto
|
1941
|
-
|
1952
|
+
goto st82;
|
1953
|
+
tr140:
|
1942
1954
|
#line 65 "ext/ragel/base_lexer.rl"
|
1943
1955
|
{te = p;p--;{
|
1944
1956
|
advance_line(1);
|
1945
1957
|
}}
|
1946
|
-
goto
|
1947
|
-
|
1948
|
-
#line
|
1958
|
+
goto st82;
|
1959
|
+
tr141:
|
1960
|
+
#line 576 "ext/ragel/base_lexer.rl"
|
1949
1961
|
{te = p;p--;}
|
1950
|
-
goto
|
1951
|
-
|
1952
|
-
( state->cs) =
|
1953
|
-
#line
|
1962
|
+
goto st82;
|
1963
|
+
tr142:
|
1964
|
+
( state->cs) = 82;
|
1965
|
+
#line 547 "ext/ragel/base_lexer.rl"
|
1954
1966
|
{te = p+1;{
|
1955
1967
|
callback_simple(id_on_element_end);
|
1956
|
-
( state->cs) =
|
1968
|
+
( state->cs) = 35;
|
1957
1969
|
}}
|
1958
1970
|
goto _again;
|
1959
|
-
|
1971
|
+
tr144:
|
1972
|
+
#line 555 "ext/ragel/base_lexer.rl"
|
1973
|
+
{te = p;p--;}
|
1974
|
+
goto st82;
|
1975
|
+
st82:
|
1960
1976
|
#line 1 "NONE"
|
1961
1977
|
{ts = 0;}
|
1962
1978
|
if ( ++p == pe )
|
1963
|
-
goto
|
1964
|
-
case
|
1979
|
+
goto _test_eof82;
|
1980
|
+
case 82:
|
1965
1981
|
#line 1 "NONE"
|
1966
1982
|
{ts = p;}
|
1967
|
-
#line
|
1983
|
+
#line 1984 "ext/c/lexer.c"
|
1968
1984
|
switch( (*p) ) {
|
1969
|
-
case 10: goto
|
1970
|
-
case 13: goto
|
1971
|
-
case 47: goto
|
1972
|
-
case
|
1973
|
-
case
|
1974
|
-
case
|
1985
|
+
case 10: goto tr132;
|
1986
|
+
case 13: goto st84;
|
1987
|
+
case 47: goto st85;
|
1988
|
+
case 60: goto st86;
|
1989
|
+
case 61: goto tr136;
|
1990
|
+
case 62: goto tr137;
|
1991
|
+
case 96: goto tr131;
|
1975
1992
|
}
|
1976
1993
|
if ( (*p) < 58 ) {
|
1977
1994
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1978
|
-
goto
|
1995
|
+
goto tr131;
|
1979
1996
|
} else if ( (*p) > 64 ) {
|
1980
1997
|
if ( (*p) > 94 ) {
|
1981
1998
|
if ( 123 <= (*p) )
|
1982
|
-
goto
|
1999
|
+
goto tr131;
|
1983
2000
|
} else if ( (*p) >= 91 )
|
1984
|
-
goto
|
2001
|
+
goto tr131;
|
1985
2002
|
} else
|
1986
|
-
goto
|
1987
|
-
goto
|
1988
|
-
|
2003
|
+
goto tr131;
|
2004
|
+
goto st83;
|
2005
|
+
st83:
|
1989
2006
|
if ( ++p == pe )
|
1990
|
-
goto
|
1991
|
-
case
|
2007
|
+
goto _test_eof83;
|
2008
|
+
case 83:
|
1992
2009
|
switch( (*p) ) {
|
1993
|
-
case 47: goto
|
1994
|
-
case 58: goto
|
1995
|
-
case 96: goto
|
2010
|
+
case 47: goto tr138;
|
2011
|
+
case 58: goto tr139;
|
2012
|
+
case 96: goto tr138;
|
1996
2013
|
}
|
1997
2014
|
if ( (*p) < 59 ) {
|
1998
2015
|
if ( 0 <= (*p) && (*p) <= 44 )
|
1999
|
-
goto
|
2016
|
+
goto tr138;
|
2000
2017
|
} else if ( (*p) > 64 ) {
|
2001
2018
|
if ( (*p) > 94 ) {
|
2002
2019
|
if ( 123 <= (*p) )
|
2003
|
-
goto
|
2020
|
+
goto tr138;
|
2004
2021
|
} else if ( (*p) >= 91 )
|
2005
|
-
goto
|
2022
|
+
goto tr138;
|
2006
2023
|
} else
|
2007
|
-
goto
|
2008
|
-
goto
|
2009
|
-
|
2024
|
+
goto tr138;
|
2025
|
+
goto st83;
|
2026
|
+
st84:
|
2010
2027
|
if ( ++p == pe )
|
2011
|
-
goto
|
2012
|
-
case
|
2028
|
+
goto _test_eof84;
|
2029
|
+
case 84:
|
2013
2030
|
if ( (*p) == 10 )
|
2014
|
-
goto
|
2015
|
-
goto
|
2016
|
-
|
2031
|
+
goto tr132;
|
2032
|
+
goto tr140;
|
2033
|
+
st85:
|
2017
2034
|
if ( ++p == pe )
|
2018
|
-
goto
|
2019
|
-
case
|
2035
|
+
goto _test_eof85;
|
2036
|
+
case 85:
|
2020
2037
|
if ( (*p) == 62 )
|
2021
|
-
goto
|
2022
|
-
goto
|
2023
|
-
|
2024
|
-
|
2038
|
+
goto tr142;
|
2039
|
+
goto tr141;
|
2040
|
+
st86:
|
2041
|
+
if ( ++p == pe )
|
2042
|
+
goto _test_eof86;
|
2043
|
+
case 86:
|
2044
|
+
switch( (*p) ) {
|
2045
|
+
case 47: goto tr141;
|
2046
|
+
case 96: goto tr141;
|
2047
|
+
}
|
2048
|
+
if ( (*p) < 58 ) {
|
2049
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
2050
|
+
goto tr141;
|
2051
|
+
} else if ( (*p) > 64 ) {
|
2052
|
+
if ( (*p) > 94 ) {
|
2053
|
+
if ( 123 <= (*p) )
|
2054
|
+
goto tr141;
|
2055
|
+
} else if ( (*p) >= 91 )
|
2056
|
+
goto tr141;
|
2057
|
+
} else
|
2058
|
+
goto tr141;
|
2059
|
+
goto tr143;
|
2060
|
+
tr143:
|
2061
|
+
#line 1 "NONE"
|
2025
2062
|
{te = p+1;}
|
2026
|
-
goto
|
2027
|
-
|
2063
|
+
goto st87;
|
2064
|
+
st87:
|
2065
|
+
if ( ++p == pe )
|
2066
|
+
goto _test_eof87;
|
2067
|
+
case 87:
|
2068
|
+
#line 2069 "ext/c/lexer.c"
|
2069
|
+
switch( (*p) ) {
|
2070
|
+
case 47: goto tr144;
|
2071
|
+
case 58: goto st20;
|
2072
|
+
case 96: goto tr144;
|
2073
|
+
}
|
2074
|
+
if ( (*p) < 59 ) {
|
2075
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
2076
|
+
goto tr144;
|
2077
|
+
} else if ( (*p) > 64 ) {
|
2078
|
+
if ( (*p) > 94 ) {
|
2079
|
+
if ( 123 <= (*p) )
|
2080
|
+
goto tr144;
|
2081
|
+
} else if ( (*p) >= 91 )
|
2082
|
+
goto tr144;
|
2083
|
+
} else
|
2084
|
+
goto tr144;
|
2085
|
+
goto tr143;
|
2086
|
+
st20:
|
2087
|
+
if ( ++p == pe )
|
2088
|
+
goto _test_eof20;
|
2089
|
+
case 20:
|
2090
|
+
switch( (*p) ) {
|
2091
|
+
case 47: goto tr26;
|
2092
|
+
case 96: goto tr26;
|
2093
|
+
}
|
2094
|
+
if ( (*p) < 58 ) {
|
2095
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
2096
|
+
goto tr26;
|
2097
|
+
} else if ( (*p) > 64 ) {
|
2098
|
+
if ( (*p) > 94 ) {
|
2099
|
+
if ( 123 <= (*p) )
|
2100
|
+
goto tr26;
|
2101
|
+
} else if ( (*p) >= 91 )
|
2102
|
+
goto tr26;
|
2103
|
+
} else
|
2104
|
+
goto tr26;
|
2105
|
+
goto st88;
|
2106
|
+
st88:
|
2107
|
+
if ( ++p == pe )
|
2108
|
+
goto _test_eof88;
|
2109
|
+
case 88:
|
2110
|
+
switch( (*p) ) {
|
2111
|
+
case 47: goto tr144;
|
2112
|
+
case 96: goto tr144;
|
2113
|
+
}
|
2114
|
+
if ( (*p) < 58 ) {
|
2115
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
2116
|
+
goto tr144;
|
2117
|
+
} else if ( (*p) > 64 ) {
|
2118
|
+
if ( (*p) > 94 ) {
|
2119
|
+
if ( 123 <= (*p) )
|
2120
|
+
goto tr144;
|
2121
|
+
} else if ( (*p) >= 91 )
|
2122
|
+
goto tr144;
|
2123
|
+
} else
|
2124
|
+
goto tr144;
|
2125
|
+
goto st88;
|
2126
|
+
tr28:
|
2127
|
+
#line 583 "ext/ragel/base_lexer.rl"
|
2128
|
+
{{p = ((te))-1;}}
|
2129
|
+
goto st89;
|
2130
|
+
tr147:
|
2131
|
+
#line 610 "ext/ragel/base_lexer.rl"
|
2132
|
+
{te = p+1;}
|
2133
|
+
goto st89;
|
2134
|
+
tr148:
|
2028
2135
|
#line 65 "ext/ragel/base_lexer.rl"
|
2029
2136
|
{te = p+1;{
|
2030
2137
|
advance_line(1);
|
2031
2138
|
}}
|
2032
|
-
goto
|
2033
|
-
|
2034
|
-
#line
|
2139
|
+
goto st89;
|
2140
|
+
tr152:
|
2141
|
+
#line 526 "ext/ragel/base_lexer.rl"
|
2035
2142
|
{te = p+1;{
|
2036
|
-
{( state->stack)[( state->top)++] =
|
2143
|
+
{( state->stack)[( state->top)++] = 89;goto st77;}
|
2037
2144
|
}}
|
2038
|
-
goto
|
2039
|
-
|
2040
|
-
( state->cs) =
|
2041
|
-
#line
|
2145
|
+
goto st89;
|
2146
|
+
tr153:
|
2147
|
+
( state->cs) = 89;
|
2148
|
+
#line 591 "ext/ragel/base_lexer.rl"
|
2042
2149
|
{te = p+1;{
|
2043
2150
|
callback_simple(id_on_element_open_end);
|
2044
2151
|
|
2045
2152
|
if ( html_script_p() )
|
2046
2153
|
{
|
2047
|
-
( state->cs) =
|
2154
|
+
( state->cs) = 100;
|
2048
2155
|
}
|
2049
2156
|
else if ( html_style_p() )
|
2050
2157
|
{
|
2051
|
-
( state->cs) =
|
2158
|
+
( state->cs) = 104;
|
2052
2159
|
}
|
2053
2160
|
else
|
2054
2161
|
{
|
2055
|
-
( state->cs) =
|
2162
|
+
( state->cs) = 35;
|
2056
2163
|
}
|
2057
2164
|
}}
|
2058
2165
|
goto _again;
|
2059
|
-
|
2060
|
-
#line
|
2166
|
+
tr154:
|
2167
|
+
#line 585 "ext/ragel/base_lexer.rl"
|
2061
2168
|
{te = p;p--;{
|
2062
2169
|
callback(id_on_attribute, data, encoding, ts, te);
|
2063
2170
|
}}
|
2064
|
-
goto
|
2065
|
-
|
2171
|
+
goto st89;
|
2172
|
+
tr155:
|
2066
2173
|
#line 65 "ext/ragel/base_lexer.rl"
|
2067
2174
|
{te = p;p--;{
|
2068
2175
|
advance_line(1);
|
2069
2176
|
}}
|
2070
|
-
goto
|
2071
|
-
|
2072
|
-
#line
|
2177
|
+
goto st89;
|
2178
|
+
tr156:
|
2179
|
+
#line 610 "ext/ragel/base_lexer.rl"
|
2073
2180
|
{te = p;p--;}
|
2074
|
-
goto
|
2075
|
-
|
2076
|
-
( state->cs) =
|
2077
|
-
#line
|
2181
|
+
goto st89;
|
2182
|
+
tr157:
|
2183
|
+
( state->cs) = 89;
|
2184
|
+
#line 547 "ext/ragel/base_lexer.rl"
|
2078
2185
|
{te = p+1;{
|
2079
2186
|
callback_simple(id_on_element_end);
|
2080
|
-
( state->cs) =
|
2187
|
+
( state->cs) = 35;
|
2081
2188
|
}}
|
2082
2189
|
goto _again;
|
2083
|
-
|
2190
|
+
tr159:
|
2191
|
+
#line 583 "ext/ragel/base_lexer.rl"
|
2192
|
+
{te = p;p--;}
|
2193
|
+
goto st89;
|
2194
|
+
st89:
|
2084
2195
|
#line 1 "NONE"
|
2085
2196
|
{ts = 0;}
|
2086
2197
|
if ( ++p == pe )
|
2087
|
-
goto
|
2088
|
-
case
|
2198
|
+
goto _test_eof89;
|
2199
|
+
case 89:
|
2089
2200
|
#line 1 "NONE"
|
2090
2201
|
{ts = p;}
|
2091
|
-
#line
|
2202
|
+
#line 2203 "ext/c/lexer.c"
|
2092
2203
|
switch( (*p) ) {
|
2093
|
-
case 10: goto
|
2094
|
-
case 13: goto
|
2095
|
-
case 47: goto
|
2096
|
-
case
|
2097
|
-
case
|
2098
|
-
case
|
2204
|
+
case 10: goto tr148;
|
2205
|
+
case 13: goto st91;
|
2206
|
+
case 47: goto st92;
|
2207
|
+
case 60: goto st93;
|
2208
|
+
case 61: goto tr152;
|
2209
|
+
case 62: goto tr153;
|
2210
|
+
case 96: goto tr147;
|
2099
2211
|
}
|
2100
2212
|
if ( (*p) < 59 ) {
|
2101
2213
|
if ( 0 <= (*p) && (*p) <= 44 )
|
2102
|
-
goto
|
2214
|
+
goto tr147;
|
2103
2215
|
} else if ( (*p) > 64 ) {
|
2104
2216
|
if ( (*p) > 94 ) {
|
2105
2217
|
if ( 123 <= (*p) )
|
2106
|
-
goto
|
2218
|
+
goto tr147;
|
2107
2219
|
} else if ( (*p) >= 91 )
|
2108
|
-
goto
|
2220
|
+
goto tr147;
|
2109
2221
|
} else
|
2110
|
-
goto
|
2111
|
-
goto
|
2112
|
-
|
2222
|
+
goto tr147;
|
2223
|
+
goto st90;
|
2224
|
+
st90:
|
2113
2225
|
if ( ++p == pe )
|
2114
|
-
goto
|
2115
|
-
case
|
2226
|
+
goto _test_eof90;
|
2227
|
+
case 90:
|
2116
2228
|
switch( (*p) ) {
|
2117
|
-
case 47: goto
|
2118
|
-
case 96: goto
|
2229
|
+
case 47: goto tr154;
|
2230
|
+
case 96: goto tr154;
|
2119
2231
|
}
|
2120
2232
|
if ( (*p) < 59 ) {
|
2121
2233
|
if ( 0 <= (*p) && (*p) <= 44 )
|
2122
|
-
goto
|
2234
|
+
goto tr154;
|
2123
2235
|
} else if ( (*p) > 64 ) {
|
2124
2236
|
if ( (*p) > 94 ) {
|
2125
2237
|
if ( 123 <= (*p) )
|
2126
|
-
goto
|
2238
|
+
goto tr154;
|
2127
2239
|
} else if ( (*p) >= 91 )
|
2128
|
-
goto
|
2240
|
+
goto tr154;
|
2129
2241
|
} else
|
2130
|
-
goto
|
2131
|
-
goto
|
2132
|
-
|
2242
|
+
goto tr154;
|
2243
|
+
goto st90;
|
2244
|
+
st91:
|
2133
2245
|
if ( ++p == pe )
|
2134
|
-
goto
|
2135
|
-
case
|
2246
|
+
goto _test_eof91;
|
2247
|
+
case 91:
|
2136
2248
|
if ( (*p) == 10 )
|
2137
|
-
goto
|
2138
|
-
goto
|
2139
|
-
|
2249
|
+
goto tr148;
|
2250
|
+
goto tr155;
|
2251
|
+
st92:
|
2140
2252
|
if ( ++p == pe )
|
2141
|
-
goto
|
2142
|
-
case
|
2253
|
+
goto _test_eof92;
|
2254
|
+
case 92:
|
2143
2255
|
if ( (*p) == 62 )
|
2144
|
-
goto
|
2145
|
-
goto
|
2146
|
-
|
2147
|
-
(
|
2148
|
-
|
2256
|
+
goto tr157;
|
2257
|
+
goto tr156;
|
2258
|
+
st93:
|
2259
|
+
if ( ++p == pe )
|
2260
|
+
goto _test_eof93;
|
2261
|
+
case 93:
|
2262
|
+
switch( (*p) ) {
|
2263
|
+
case 47: goto tr156;
|
2264
|
+
case 96: goto tr156;
|
2265
|
+
}
|
2266
|
+
if ( (*p) < 58 ) {
|
2267
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
2268
|
+
goto tr156;
|
2269
|
+
} else if ( (*p) > 64 ) {
|
2270
|
+
if ( (*p) > 94 ) {
|
2271
|
+
if ( 123 <= (*p) )
|
2272
|
+
goto tr156;
|
2273
|
+
} else if ( (*p) >= 91 )
|
2274
|
+
goto tr156;
|
2275
|
+
} else
|
2276
|
+
goto tr156;
|
2277
|
+
goto tr158;
|
2278
|
+
tr158:
|
2279
|
+
#line 1 "NONE"
|
2280
|
+
{te = p+1;}
|
2281
|
+
goto st94;
|
2282
|
+
st94:
|
2283
|
+
if ( ++p == pe )
|
2284
|
+
goto _test_eof94;
|
2285
|
+
case 94:
|
2286
|
+
#line 2287 "ext/c/lexer.c"
|
2287
|
+
switch( (*p) ) {
|
2288
|
+
case 47: goto tr159;
|
2289
|
+
case 58: goto st21;
|
2290
|
+
case 96: goto tr159;
|
2291
|
+
}
|
2292
|
+
if ( (*p) < 59 ) {
|
2293
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
2294
|
+
goto tr159;
|
2295
|
+
} else if ( (*p) > 64 ) {
|
2296
|
+
if ( (*p) > 94 ) {
|
2297
|
+
if ( 123 <= (*p) )
|
2298
|
+
goto tr159;
|
2299
|
+
} else if ( (*p) >= 91 )
|
2300
|
+
goto tr159;
|
2301
|
+
} else
|
2302
|
+
goto tr159;
|
2303
|
+
goto tr158;
|
2304
|
+
st21:
|
2305
|
+
if ( ++p == pe )
|
2306
|
+
goto _test_eof21;
|
2307
|
+
case 21:
|
2308
|
+
switch( (*p) ) {
|
2309
|
+
case 47: goto tr28;
|
2310
|
+
case 96: goto tr28;
|
2311
|
+
}
|
2312
|
+
if ( (*p) < 58 ) {
|
2313
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
2314
|
+
goto tr28;
|
2315
|
+
} else if ( (*p) > 64 ) {
|
2316
|
+
if ( (*p) > 94 ) {
|
2317
|
+
if ( 123 <= (*p) )
|
2318
|
+
goto tr28;
|
2319
|
+
} else if ( (*p) >= 91 )
|
2320
|
+
goto tr28;
|
2321
|
+
} else
|
2322
|
+
goto tr28;
|
2323
|
+
goto st95;
|
2324
|
+
st95:
|
2325
|
+
if ( ++p == pe )
|
2326
|
+
goto _test_eof95;
|
2327
|
+
case 95:
|
2328
|
+
switch( (*p) ) {
|
2329
|
+
case 47: goto tr159;
|
2330
|
+
case 96: goto tr159;
|
2331
|
+
}
|
2332
|
+
if ( (*p) < 58 ) {
|
2333
|
+
if ( 0 <= (*p) && (*p) <= 44 )
|
2334
|
+
goto tr159;
|
2335
|
+
} else if ( (*p) > 64 ) {
|
2336
|
+
if ( (*p) > 94 ) {
|
2337
|
+
if ( 123 <= (*p) )
|
2338
|
+
goto tr159;
|
2339
|
+
} else if ( (*p) >= 91 )
|
2340
|
+
goto tr159;
|
2341
|
+
} else
|
2342
|
+
goto tr159;
|
2343
|
+
goto st95;
|
2344
|
+
tr163:
|
2345
|
+
( state->cs) = 96;
|
2346
|
+
#line 647 "ext/ragel/base_lexer.rl"
|
2149
2347
|
{te = p;p--;{
|
2150
2348
|
callback(id_on_text, data, encoding, ts, te);
|
2151
2349
|
|
@@ -2156,12 +2354,12 @@ tr151:
|
|
2156
2354
|
lines = 0;
|
2157
2355
|
}
|
2158
2356
|
|
2159
|
-
( state->cs) =
|
2357
|
+
( state->cs) = 35;
|
2160
2358
|
}}
|
2161
2359
|
goto _again;
|
2162
|
-
|
2163
|
-
( state->cs) =
|
2164
|
-
#line
|
2360
|
+
tr165:
|
2361
|
+
( state->cs) = 96;
|
2362
|
+
#line 661 "ext/ragel/base_lexer.rl"
|
2165
2363
|
{te = p+1;{
|
2166
2364
|
callback(id_on_text, data, encoding, ts, mark);
|
2167
2365
|
|
@@ -2175,12 +2373,12 @@ tr153:
|
|
2175
2373
|
lines = 0;
|
2176
2374
|
}
|
2177
2375
|
|
2178
|
-
( state->cs) =
|
2376
|
+
( state->cs) = 35;
|
2179
2377
|
}}
|
2180
2378
|
goto _again;
|
2181
|
-
|
2182
|
-
( state->cs) =
|
2183
|
-
#line
|
2379
|
+
tr166:
|
2380
|
+
( state->cs) = 96;
|
2381
|
+
#line 647 "ext/ragel/base_lexer.rl"
|
2184
2382
|
{te = p+1;{
|
2185
2383
|
callback(id_on_text, data, encoding, ts, te);
|
2186
2384
|
|
@@ -2191,103 +2389,103 @@ tr154:
|
|
2191
2389
|
lines = 0;
|
2192
2390
|
}
|
2193
2391
|
|
2194
|
-
( state->cs) =
|
2392
|
+
( state->cs) = 35;
|
2195
2393
|
}}
|
2196
2394
|
goto _again;
|
2197
|
-
|
2395
|
+
st96:
|
2198
2396
|
#line 1 "NONE"
|
2199
2397
|
{ts = 0;}
|
2200
2398
|
if ( ++p == pe )
|
2201
|
-
goto
|
2202
|
-
case
|
2399
|
+
goto _test_eof96;
|
2400
|
+
case 96:
|
2203
2401
|
#line 1 "NONE"
|
2204
2402
|
{ts = p;}
|
2205
|
-
#line
|
2403
|
+
#line 2404 "ext/c/lexer.c"
|
2206
2404
|
if ( (*p) == 60 )
|
2207
|
-
goto
|
2208
|
-
goto
|
2209
|
-
|
2405
|
+
goto tr162;
|
2406
|
+
goto tr161;
|
2407
|
+
tr161:
|
2210
2408
|
#line 61 "ext/ragel/base_lexer.rl"
|
2211
2409
|
{
|
2212
2410
|
if ( (*p) == '\n' ) lines++;
|
2213
2411
|
}
|
2214
|
-
goto
|
2215
|
-
|
2412
|
+
goto st97;
|
2413
|
+
st97:
|
2216
2414
|
if ( ++p == pe )
|
2217
|
-
goto
|
2218
|
-
case
|
2219
|
-
#line
|
2415
|
+
goto _test_eof97;
|
2416
|
+
case 97:
|
2417
|
+
#line 2418 "ext/c/lexer.c"
|
2220
2418
|
if ( (*p) == 60 )
|
2221
|
-
goto
|
2222
|
-
goto
|
2223
|
-
|
2419
|
+
goto tr164;
|
2420
|
+
goto tr161;
|
2421
|
+
tr164:
|
2224
2422
|
#line 61 "ext/ragel/base_lexer.rl"
|
2225
2423
|
{
|
2226
2424
|
if ( (*p) == '\n' ) lines++;
|
2227
2425
|
}
|
2228
|
-
#line
|
2426
|
+
#line 661 "ext/ragel/base_lexer.rl"
|
2229
2427
|
{ mark = p; }
|
2230
|
-
goto
|
2231
|
-
|
2428
|
+
goto st98;
|
2429
|
+
st98:
|
2232
2430
|
if ( ++p == pe )
|
2233
|
-
goto
|
2234
|
-
case
|
2235
|
-
#line
|
2431
|
+
goto _test_eof98;
|
2432
|
+
case 98:
|
2433
|
+
#line 2434 "ext/c/lexer.c"
|
2236
2434
|
switch( (*p) ) {
|
2237
|
-
case 60: goto
|
2238
|
-
case 64: goto
|
2239
|
-
case 96: goto
|
2435
|
+
case 60: goto tr164;
|
2436
|
+
case 64: goto tr161;
|
2437
|
+
case 96: goto tr161;
|
2240
2438
|
}
|
2241
2439
|
if ( (*p) < 58 ) {
|
2242
2440
|
if ( (*p) > 32 ) {
|
2243
2441
|
if ( 34 <= (*p) && (*p) <= 44 )
|
2244
|
-
goto
|
2442
|
+
goto tr161;
|
2245
2443
|
} else if ( (*p) >= 0 )
|
2246
|
-
goto
|
2444
|
+
goto tr161;
|
2247
2445
|
} else if ( (*p) > 62 ) {
|
2248
2446
|
if ( (*p) > 94 ) {
|
2249
2447
|
if ( 123 <= (*p) )
|
2250
|
-
goto
|
2448
|
+
goto tr161;
|
2251
2449
|
} else if ( (*p) >= 91 )
|
2252
|
-
goto
|
2450
|
+
goto tr161;
|
2253
2451
|
} else
|
2254
|
-
goto
|
2255
|
-
goto
|
2256
|
-
|
2452
|
+
goto tr161;
|
2453
|
+
goto tr165;
|
2454
|
+
tr162:
|
2257
2455
|
#line 61 "ext/ragel/base_lexer.rl"
|
2258
2456
|
{
|
2259
2457
|
if ( (*p) == '\n' ) lines++;
|
2260
2458
|
}
|
2261
|
-
#line
|
2459
|
+
#line 661 "ext/ragel/base_lexer.rl"
|
2262
2460
|
{ mark = p; }
|
2263
|
-
goto
|
2264
|
-
|
2461
|
+
goto st99;
|
2462
|
+
st99:
|
2265
2463
|
if ( ++p == pe )
|
2266
|
-
goto
|
2267
|
-
case
|
2268
|
-
#line
|
2464
|
+
goto _test_eof99;
|
2465
|
+
case 99:
|
2466
|
+
#line 2467 "ext/c/lexer.c"
|
2269
2467
|
switch( (*p) ) {
|
2270
|
-
case 60: goto
|
2271
|
-
case 64: goto
|
2272
|
-
case 96: goto
|
2468
|
+
case 60: goto tr164;
|
2469
|
+
case 64: goto tr161;
|
2470
|
+
case 96: goto tr161;
|
2273
2471
|
}
|
2274
2472
|
if ( (*p) < 58 ) {
|
2275
2473
|
if ( (*p) > 32 ) {
|
2276
2474
|
if ( 34 <= (*p) && (*p) <= 44 )
|
2277
|
-
goto
|
2475
|
+
goto tr161;
|
2278
2476
|
} else if ( (*p) >= 0 )
|
2279
|
-
goto
|
2477
|
+
goto tr161;
|
2280
2478
|
} else if ( (*p) > 62 ) {
|
2281
2479
|
if ( (*p) > 94 ) {
|
2282
2480
|
if ( 123 <= (*p) )
|
2283
|
-
goto
|
2481
|
+
goto tr161;
|
2284
2482
|
} else if ( (*p) >= 91 )
|
2285
|
-
goto
|
2483
|
+
goto tr161;
|
2286
2484
|
} else
|
2287
|
-
goto
|
2288
|
-
goto
|
2289
|
-
|
2290
|
-
#line
|
2485
|
+
goto tr161;
|
2486
|
+
goto tr166;
|
2487
|
+
tr30:
|
2488
|
+
#line 635 "ext/ragel/base_lexer.rl"
|
2291
2489
|
{{p = ((te))-1;}{
|
2292
2490
|
callback(id_on_text, data, encoding, ts, te);
|
2293
2491
|
|
@@ -2298,18 +2496,18 @@ tr26:
|
|
2298
2496
|
lines = 0;
|
2299
2497
|
}
|
2300
2498
|
}}
|
2301
|
-
goto
|
2302
|
-
|
2303
|
-
( state->cs) =
|
2499
|
+
goto st100;
|
2500
|
+
tr37:
|
2501
|
+
( state->cs) = 100;
|
2304
2502
|
#line 384 "ext/ragel/base_lexer.rl"
|
2305
2503
|
{te = p+1;{
|
2306
2504
|
callback_simple(id_on_element_end);
|
2307
2505
|
|
2308
|
-
( state->cs) =
|
2506
|
+
( state->cs) = 35;
|
2309
2507
|
}}
|
2310
2508
|
goto _again;
|
2311
|
-
|
2312
|
-
#line
|
2509
|
+
tr169:
|
2510
|
+
#line 635 "ext/ragel/base_lexer.rl"
|
2313
2511
|
{te = p;p--;{
|
2314
2512
|
callback(id_on_text, data, encoding, ts, te);
|
2315
2513
|
|
@@ -2320,116 +2518,116 @@ tr157:
|
|
2320
2518
|
lines = 0;
|
2321
2519
|
}
|
2322
2520
|
}}
|
2323
|
-
goto
|
2324
|
-
|
2521
|
+
goto st100;
|
2522
|
+
st100:
|
2325
2523
|
#line 1 "NONE"
|
2326
2524
|
{ts = 0;}
|
2327
2525
|
if ( ++p == pe )
|
2328
|
-
goto
|
2329
|
-
case
|
2526
|
+
goto _test_eof100;
|
2527
|
+
case 100:
|
2330
2528
|
#line 1 "NONE"
|
2331
2529
|
{ts = p;}
|
2332
|
-
#line
|
2530
|
+
#line 2531 "ext/c/lexer.c"
|
2333
2531
|
if ( (*p) == 60 )
|
2334
|
-
goto
|
2335
|
-
goto
|
2336
|
-
|
2532
|
+
goto tr168;
|
2533
|
+
goto tr167;
|
2534
|
+
tr167:
|
2337
2535
|
#line 61 "ext/ragel/base_lexer.rl"
|
2338
2536
|
{
|
2339
2537
|
if ( (*p) == '\n' ) lines++;
|
2340
2538
|
}
|
2341
|
-
goto
|
2342
|
-
|
2539
|
+
goto st101;
|
2540
|
+
st101:
|
2343
2541
|
if ( ++p == pe )
|
2344
|
-
goto
|
2345
|
-
case
|
2346
|
-
#line
|
2542
|
+
goto _test_eof101;
|
2543
|
+
case 101:
|
2544
|
+
#line 2545 "ext/c/lexer.c"
|
2347
2545
|
if ( (*p) == 60 )
|
2348
|
-
goto
|
2349
|
-
goto
|
2350
|
-
|
2546
|
+
goto tr169;
|
2547
|
+
goto tr167;
|
2548
|
+
tr168:
|
2351
2549
|
#line 1 "NONE"
|
2352
2550
|
{te = p+1;}
|
2353
2551
|
#line 61 "ext/ragel/base_lexer.rl"
|
2354
2552
|
{
|
2355
2553
|
if ( (*p) == '\n' ) lines++;
|
2356
2554
|
}
|
2357
|
-
goto
|
2358
|
-
|
2555
|
+
goto st102;
|
2556
|
+
st102:
|
2359
2557
|
if ( ++p == pe )
|
2360
|
-
goto
|
2361
|
-
case
|
2362
|
-
#line
|
2558
|
+
goto _test_eof102;
|
2559
|
+
case 102:
|
2560
|
+
#line 2561 "ext/c/lexer.c"
|
2363
2561
|
switch( (*p) ) {
|
2364
|
-
case 47: goto
|
2365
|
-
case 60: goto
|
2562
|
+
case 47: goto st22;
|
2563
|
+
case 60: goto tr171;
|
2366
2564
|
}
|
2367
|
-
goto
|
2368
|
-
st20:
|
2369
|
-
if ( ++p == pe )
|
2370
|
-
goto _test_eof20;
|
2371
|
-
case 20:
|
2372
|
-
if ( (*p) == 115 )
|
2373
|
-
goto st21;
|
2374
|
-
goto tr26;
|
2375
|
-
st21:
|
2376
|
-
if ( ++p == pe )
|
2377
|
-
goto _test_eof21;
|
2378
|
-
case 21:
|
2379
|
-
if ( (*p) == 99 )
|
2380
|
-
goto st22;
|
2381
|
-
goto tr26;
|
2565
|
+
goto tr169;
|
2382
2566
|
st22:
|
2383
2567
|
if ( ++p == pe )
|
2384
2568
|
goto _test_eof22;
|
2385
2569
|
case 22:
|
2386
|
-
if ( (*p) ==
|
2570
|
+
if ( (*p) == 115 )
|
2387
2571
|
goto st23;
|
2388
|
-
goto
|
2572
|
+
goto tr30;
|
2389
2573
|
st23:
|
2390
2574
|
if ( ++p == pe )
|
2391
2575
|
goto _test_eof23;
|
2392
2576
|
case 23:
|
2393
|
-
if ( (*p) ==
|
2577
|
+
if ( (*p) == 99 )
|
2394
2578
|
goto st24;
|
2395
|
-
goto
|
2579
|
+
goto tr30;
|
2396
2580
|
st24:
|
2397
2581
|
if ( ++p == pe )
|
2398
2582
|
goto _test_eof24;
|
2399
2583
|
case 24:
|
2400
|
-
if ( (*p) ==
|
2584
|
+
if ( (*p) == 114 )
|
2401
2585
|
goto st25;
|
2402
|
-
goto
|
2586
|
+
goto tr30;
|
2403
2587
|
st25:
|
2404
2588
|
if ( ++p == pe )
|
2405
2589
|
goto _test_eof25;
|
2406
2590
|
case 25:
|
2407
|
-
if ( (*p) ==
|
2591
|
+
if ( (*p) == 105 )
|
2408
2592
|
goto st26;
|
2409
|
-
goto
|
2593
|
+
goto tr30;
|
2410
2594
|
st26:
|
2411
2595
|
if ( ++p == pe )
|
2412
2596
|
goto _test_eof26;
|
2413
2597
|
case 26:
|
2598
|
+
if ( (*p) == 112 )
|
2599
|
+
goto st27;
|
2600
|
+
goto tr30;
|
2601
|
+
st27:
|
2602
|
+
if ( ++p == pe )
|
2603
|
+
goto _test_eof27;
|
2604
|
+
case 27:
|
2605
|
+
if ( (*p) == 116 )
|
2606
|
+
goto st28;
|
2607
|
+
goto tr30;
|
2608
|
+
st28:
|
2609
|
+
if ( ++p == pe )
|
2610
|
+
goto _test_eof28;
|
2611
|
+
case 28:
|
2414
2612
|
if ( (*p) == 62 )
|
2415
|
-
goto
|
2416
|
-
goto
|
2417
|
-
|
2613
|
+
goto tr37;
|
2614
|
+
goto tr30;
|
2615
|
+
tr171:
|
2418
2616
|
#line 61 "ext/ragel/base_lexer.rl"
|
2419
2617
|
{
|
2420
2618
|
if ( (*p) == '\n' ) lines++;
|
2421
2619
|
}
|
2422
|
-
goto
|
2423
|
-
|
2620
|
+
goto st103;
|
2621
|
+
st103:
|
2424
2622
|
if ( ++p == pe )
|
2425
|
-
goto
|
2426
|
-
case
|
2427
|
-
#line
|
2623
|
+
goto _test_eof103;
|
2624
|
+
case 103:
|
2625
|
+
#line 2626 "ext/c/lexer.c"
|
2428
2626
|
if ( (*p) == 60 )
|
2429
|
-
goto
|
2430
|
-
goto
|
2431
|
-
|
2432
|
-
#line
|
2627
|
+
goto tr171;
|
2628
|
+
goto tr169;
|
2629
|
+
tr38:
|
2630
|
+
#line 635 "ext/ragel/base_lexer.rl"
|
2433
2631
|
{{p = ((te))-1;}{
|
2434
2632
|
callback(id_on_text, data, encoding, ts, te);
|
2435
2633
|
|
@@ -2440,18 +2638,18 @@ tr34:
|
|
2440
2638
|
lines = 0;
|
2441
2639
|
}
|
2442
2640
|
}}
|
2443
|
-
goto
|
2444
|
-
|
2445
|
-
( state->cs) =
|
2641
|
+
goto st104;
|
2642
|
+
tr44:
|
2643
|
+
( state->cs) = 104;
|
2446
2644
|
#line 384 "ext/ragel/base_lexer.rl"
|
2447
2645
|
{te = p+1;{
|
2448
2646
|
callback_simple(id_on_element_end);
|
2449
2647
|
|
2450
|
-
( state->cs) =
|
2648
|
+
( state->cs) = 35;
|
2451
2649
|
}}
|
2452
2650
|
goto _again;
|
2453
|
-
|
2454
|
-
#line
|
2651
|
+
tr174:
|
2652
|
+
#line 635 "ext/ragel/base_lexer.rl"
|
2455
2653
|
{te = p;p--;{
|
2456
2654
|
callback(id_on_text, data, encoding, ts, te);
|
2457
2655
|
|
@@ -2462,110 +2660,110 @@ tr162:
|
|
2462
2660
|
lines = 0;
|
2463
2661
|
}
|
2464
2662
|
}}
|
2465
|
-
goto
|
2466
|
-
|
2663
|
+
goto st104;
|
2664
|
+
st104:
|
2467
2665
|
#line 1 "NONE"
|
2468
2666
|
{ts = 0;}
|
2469
2667
|
if ( ++p == pe )
|
2470
|
-
goto
|
2471
|
-
case
|
2668
|
+
goto _test_eof104;
|
2669
|
+
case 104:
|
2472
2670
|
#line 1 "NONE"
|
2473
2671
|
{ts = p;}
|
2474
|
-
#line
|
2672
|
+
#line 2673 "ext/c/lexer.c"
|
2475
2673
|
if ( (*p) == 60 )
|
2476
|
-
goto
|
2477
|
-
goto
|
2478
|
-
|
2674
|
+
goto tr173;
|
2675
|
+
goto tr172;
|
2676
|
+
tr172:
|
2479
2677
|
#line 61 "ext/ragel/base_lexer.rl"
|
2480
2678
|
{
|
2481
2679
|
if ( (*p) == '\n' ) lines++;
|
2482
2680
|
}
|
2483
|
-
goto
|
2484
|
-
|
2681
|
+
goto st105;
|
2682
|
+
st105:
|
2485
2683
|
if ( ++p == pe )
|
2486
|
-
goto
|
2487
|
-
case
|
2488
|
-
#line
|
2684
|
+
goto _test_eof105;
|
2685
|
+
case 105:
|
2686
|
+
#line 2687 "ext/c/lexer.c"
|
2489
2687
|
if ( (*p) == 60 )
|
2490
|
-
goto
|
2491
|
-
goto
|
2492
|
-
|
2688
|
+
goto tr174;
|
2689
|
+
goto tr172;
|
2690
|
+
tr173:
|
2493
2691
|
#line 1 "NONE"
|
2494
2692
|
{te = p+1;}
|
2495
2693
|
#line 61 "ext/ragel/base_lexer.rl"
|
2496
2694
|
{
|
2497
2695
|
if ( (*p) == '\n' ) lines++;
|
2498
2696
|
}
|
2499
|
-
goto
|
2500
|
-
|
2697
|
+
goto st106;
|
2698
|
+
st106:
|
2501
2699
|
if ( ++p == pe )
|
2502
|
-
goto
|
2503
|
-
case
|
2504
|
-
#line
|
2700
|
+
goto _test_eof106;
|
2701
|
+
case 106:
|
2702
|
+
#line 2703 "ext/c/lexer.c"
|
2505
2703
|
switch( (*p) ) {
|
2506
|
-
case 47: goto
|
2507
|
-
case 60: goto
|
2704
|
+
case 47: goto st29;
|
2705
|
+
case 60: goto tr176;
|
2508
2706
|
}
|
2509
|
-
goto
|
2510
|
-
st27:
|
2511
|
-
if ( ++p == pe )
|
2512
|
-
goto _test_eof27;
|
2513
|
-
case 27:
|
2514
|
-
if ( (*p) == 115 )
|
2515
|
-
goto st28;
|
2516
|
-
goto tr34;
|
2517
|
-
st28:
|
2518
|
-
if ( ++p == pe )
|
2519
|
-
goto _test_eof28;
|
2520
|
-
case 28:
|
2521
|
-
if ( (*p) == 116 )
|
2522
|
-
goto st29;
|
2523
|
-
goto tr34;
|
2707
|
+
goto tr174;
|
2524
2708
|
st29:
|
2525
2709
|
if ( ++p == pe )
|
2526
2710
|
goto _test_eof29;
|
2527
2711
|
case 29:
|
2528
|
-
if ( (*p) ==
|
2712
|
+
if ( (*p) == 115 )
|
2529
2713
|
goto st30;
|
2530
|
-
goto
|
2714
|
+
goto tr38;
|
2531
2715
|
st30:
|
2532
2716
|
if ( ++p == pe )
|
2533
2717
|
goto _test_eof30;
|
2534
2718
|
case 30:
|
2535
|
-
if ( (*p) ==
|
2719
|
+
if ( (*p) == 116 )
|
2536
2720
|
goto st31;
|
2537
|
-
goto
|
2721
|
+
goto tr38;
|
2538
2722
|
st31:
|
2539
2723
|
if ( ++p == pe )
|
2540
2724
|
goto _test_eof31;
|
2541
2725
|
case 31:
|
2542
|
-
if ( (*p) ==
|
2726
|
+
if ( (*p) == 121 )
|
2543
2727
|
goto st32;
|
2544
|
-
goto
|
2728
|
+
goto tr38;
|
2545
2729
|
st32:
|
2546
2730
|
if ( ++p == pe )
|
2547
2731
|
goto _test_eof32;
|
2548
2732
|
case 32:
|
2733
|
+
if ( (*p) == 108 )
|
2734
|
+
goto st33;
|
2735
|
+
goto tr38;
|
2736
|
+
st33:
|
2737
|
+
if ( ++p == pe )
|
2738
|
+
goto _test_eof33;
|
2739
|
+
case 33:
|
2740
|
+
if ( (*p) == 101 )
|
2741
|
+
goto st34;
|
2742
|
+
goto tr38;
|
2743
|
+
st34:
|
2744
|
+
if ( ++p == pe )
|
2745
|
+
goto _test_eof34;
|
2746
|
+
case 34:
|
2549
2747
|
if ( (*p) == 62 )
|
2550
|
-
goto
|
2551
|
-
goto
|
2552
|
-
|
2748
|
+
goto tr44;
|
2749
|
+
goto tr38;
|
2750
|
+
tr176:
|
2553
2751
|
#line 61 "ext/ragel/base_lexer.rl"
|
2554
2752
|
{
|
2555
2753
|
if ( (*p) == '\n' ) lines++;
|
2556
2754
|
}
|
2557
|
-
goto
|
2558
|
-
|
2755
|
+
goto st107;
|
2756
|
+
st107:
|
2559
2757
|
if ( ++p == pe )
|
2560
|
-
goto
|
2561
|
-
case
|
2562
|
-
#line
|
2758
|
+
goto _test_eof107;
|
2759
|
+
case 107:
|
2760
|
+
#line 2761 "ext/c/lexer.c"
|
2563
2761
|
if ( (*p) == 60 )
|
2564
|
-
goto
|
2565
|
-
goto
|
2762
|
+
goto tr176;
|
2763
|
+
goto tr174;
|
2566
2764
|
}
|
2567
|
-
|
2568
|
-
|
2765
|
+
_test_eof35: ( state->cs) = 35; goto _test_eof;
|
2766
|
+
_test_eof36: ( state->cs) = 36; goto _test_eof;
|
2569
2767
|
_test_eof1: ( state->cs) = 1; goto _test_eof;
|
2570
2768
|
_test_eof2: ( state->cs) = 2; goto _test_eof;
|
2571
2769
|
_test_eof3: ( state->cs) = 3; goto _test_eof;
|
@@ -2575,7 +2773,7 @@ case 99:
|
|
2575
2773
|
_test_eof7: ( state->cs) = 7; goto _test_eof;
|
2576
2774
|
_test_eof8: ( state->cs) = 8; goto _test_eof;
|
2577
2775
|
_test_eof9: ( state->cs) = 9; goto _test_eof;
|
2578
|
-
|
2776
|
+
_test_eof37: ( state->cs) = 37; goto _test_eof;
|
2579
2777
|
_test_eof10: ( state->cs) = 10; goto _test_eof;
|
2580
2778
|
_test_eof11: ( state->cs) = 11; goto _test_eof;
|
2581
2779
|
_test_eof12: ( state->cs) = 12; goto _test_eof;
|
@@ -2583,21 +2781,19 @@ case 99:
|
|
2583
2781
|
_test_eof14: ( state->cs) = 14; goto _test_eof;
|
2584
2782
|
_test_eof15: ( state->cs) = 15; goto _test_eof;
|
2585
2783
|
_test_eof16: ( state->cs) = 16; goto _test_eof;
|
2586
|
-
_test_eof36: ( state->cs) = 36; goto _test_eof;
|
2587
|
-
_test_eof17: ( state->cs) = 17; goto _test_eof;
|
2588
|
-
_test_eof37: ( state->cs) = 37; goto _test_eof;
|
2589
2784
|
_test_eof38: ( state->cs) = 38; goto _test_eof;
|
2785
|
+
_test_eof17: ( state->cs) = 17; goto _test_eof;
|
2590
2786
|
_test_eof39: ( state->cs) = 39; goto _test_eof;
|
2591
2787
|
_test_eof40: ( state->cs) = 40; goto _test_eof;
|
2592
2788
|
_test_eof41: ( state->cs) = 41; goto _test_eof;
|
2593
2789
|
_test_eof42: ( state->cs) = 42; goto _test_eof;
|
2594
|
-
_test_eof18: ( state->cs) = 18; goto _test_eof;
|
2595
2790
|
_test_eof43: ( state->cs) = 43; goto _test_eof;
|
2596
2791
|
_test_eof44: ( state->cs) = 44; goto _test_eof;
|
2792
|
+
_test_eof18: ( state->cs) = 18; goto _test_eof;
|
2597
2793
|
_test_eof45: ( state->cs) = 45; goto _test_eof;
|
2598
|
-
_test_eof19: ( state->cs) = 19; goto _test_eof;
|
2599
2794
|
_test_eof46: ( state->cs) = 46; goto _test_eof;
|
2600
2795
|
_test_eof47: ( state->cs) = 47; goto _test_eof;
|
2796
|
+
_test_eof19: ( state->cs) = 19; goto _test_eof;
|
2601
2797
|
_test_eof48: ( state->cs) = 48; goto _test_eof;
|
2602
2798
|
_test_eof49: ( state->cs) = 49; goto _test_eof;
|
2603
2799
|
_test_eof50: ( state->cs) = 50; goto _test_eof;
|
@@ -2638,6 +2834,7 @@ case 99:
|
|
2638
2834
|
_test_eof85: ( state->cs) = 85; goto _test_eof;
|
2639
2835
|
_test_eof86: ( state->cs) = 86; goto _test_eof;
|
2640
2836
|
_test_eof87: ( state->cs) = 87; goto _test_eof;
|
2837
|
+
_test_eof20: ( state->cs) = 20; goto _test_eof;
|
2641
2838
|
_test_eof88: ( state->cs) = 88; goto _test_eof;
|
2642
2839
|
_test_eof89: ( state->cs) = 89; goto _test_eof;
|
2643
2840
|
_test_eof90: ( state->cs) = 90; goto _test_eof;
|
@@ -2645,30 +2842,39 @@ case 99:
|
|
2645
2842
|
_test_eof92: ( state->cs) = 92; goto _test_eof;
|
2646
2843
|
_test_eof93: ( state->cs) = 93; goto _test_eof;
|
2647
2844
|
_test_eof94: ( state->cs) = 94; goto _test_eof;
|
2648
|
-
_test_eof20: ( state->cs) = 20; goto _test_eof;
|
2649
2845
|
_test_eof21: ( state->cs) = 21; goto _test_eof;
|
2846
|
+
_test_eof95: ( state->cs) = 95; goto _test_eof;
|
2847
|
+
_test_eof96: ( state->cs) = 96; goto _test_eof;
|
2848
|
+
_test_eof97: ( state->cs) = 97; goto _test_eof;
|
2849
|
+
_test_eof98: ( state->cs) = 98; goto _test_eof;
|
2850
|
+
_test_eof99: ( state->cs) = 99; goto _test_eof;
|
2851
|
+
_test_eof100: ( state->cs) = 100; goto _test_eof;
|
2852
|
+
_test_eof101: ( state->cs) = 101; goto _test_eof;
|
2853
|
+
_test_eof102: ( state->cs) = 102; goto _test_eof;
|
2650
2854
|
_test_eof22: ( state->cs) = 22; goto _test_eof;
|
2651
2855
|
_test_eof23: ( state->cs) = 23; goto _test_eof;
|
2652
2856
|
_test_eof24: ( state->cs) = 24; goto _test_eof;
|
2653
2857
|
_test_eof25: ( state->cs) = 25; goto _test_eof;
|
2654
2858
|
_test_eof26: ( state->cs) = 26; goto _test_eof;
|
2655
|
-
_test_eof95: ( state->cs) = 95; goto _test_eof;
|
2656
|
-
_test_eof96: ( state->cs) = 96; goto _test_eof;
|
2657
|
-
_test_eof97: ( state->cs) = 97; goto _test_eof;
|
2658
|
-
_test_eof98: ( state->cs) = 98; goto _test_eof;
|
2659
2859
|
_test_eof27: ( state->cs) = 27; goto _test_eof;
|
2660
2860
|
_test_eof28: ( state->cs) = 28; goto _test_eof;
|
2861
|
+
_test_eof103: ( state->cs) = 103; goto _test_eof;
|
2862
|
+
_test_eof104: ( state->cs) = 104; goto _test_eof;
|
2863
|
+
_test_eof105: ( state->cs) = 105; goto _test_eof;
|
2864
|
+
_test_eof106: ( state->cs) = 106; goto _test_eof;
|
2661
2865
|
_test_eof29: ( state->cs) = 29; goto _test_eof;
|
2662
2866
|
_test_eof30: ( state->cs) = 30; goto _test_eof;
|
2663
2867
|
_test_eof31: ( state->cs) = 31; goto _test_eof;
|
2664
2868
|
_test_eof32: ( state->cs) = 32; goto _test_eof;
|
2665
|
-
|
2869
|
+
_test_eof33: ( state->cs) = 33; goto _test_eof;
|
2870
|
+
_test_eof34: ( state->cs) = 34; goto _test_eof;
|
2871
|
+
_test_eof107: ( state->cs) = 107; goto _test_eof;
|
2666
2872
|
|
2667
2873
|
_test_eof: {}
|
2668
2874
|
if ( p == eof )
|
2669
2875
|
{
|
2670
2876
|
switch ( ( state->cs) ) {
|
2671
|
-
case
|
2877
|
+
case 36: goto tr47;
|
2672
2878
|
case 1: goto tr0;
|
2673
2879
|
case 2: goto tr0;
|
2674
2880
|
case 3: goto tr0;
|
@@ -2678,7 +2884,7 @@ case 99:
|
|
2678
2884
|
case 7: goto tr0;
|
2679
2885
|
case 8: goto tr0;
|
2680
2886
|
case 9: goto tr0;
|
2681
|
-
case
|
2887
|
+
case 37: goto tr52;
|
2682
2888
|
case 10: goto tr0;
|
2683
2889
|
case 11: goto tr0;
|
2684
2890
|
case 12: goto tr0;
|
@@ -2686,68 +2892,76 @@ case 99:
|
|
2686
2892
|
case 14: goto tr0;
|
2687
2893
|
case 15: goto tr0;
|
2688
2894
|
case 16: goto tr0;
|
2689
|
-
case
|
2895
|
+
case 38: goto tr20;
|
2690
2896
|
case 17: goto tr20;
|
2691
|
-
case
|
2692
|
-
case
|
2693
|
-
case
|
2694
|
-
case
|
2695
|
-
case 42: goto tr55;
|
2696
|
-
case 18: goto tr22;
|
2897
|
+
case 39: goto tr54;
|
2898
|
+
case 40: goto tr54;
|
2899
|
+
case 41: goto tr54;
|
2900
|
+
case 43: goto tr59;
|
2697
2901
|
case 44: goto tr59;
|
2698
|
-
case
|
2699
|
-
case
|
2902
|
+
case 18: goto tr22;
|
2903
|
+
case 46: goto tr63;
|
2700
2904
|
case 47: goto tr63;
|
2701
|
-
case
|
2905
|
+
case 19: goto tr24;
|
2906
|
+
case 49: goto tr67;
|
2702
2907
|
case 50: goto tr67;
|
2703
|
-
case 52: goto
|
2704
|
-
case 54: goto
|
2705
|
-
case 56: goto
|
2706
|
-
case
|
2707
|
-
case
|
2708
|
-
case
|
2709
|
-
case
|
2710
|
-
case
|
2711
|
-
case
|
2712
|
-
case
|
2713
|
-
case
|
2714
|
-
case
|
2715
|
-
case
|
2716
|
-
case
|
2717
|
-
case 69: goto
|
2718
|
-
case
|
2719
|
-
case 72: goto
|
2720
|
-
case 74: goto
|
2721
|
-
case 76: goto
|
2722
|
-
case 78: goto
|
2723
|
-
case
|
2724
|
-
case
|
2725
|
-
case
|
2726
|
-
case 85: goto
|
2727
|
-
case 86: goto
|
2728
|
-
case 87: goto
|
2729
|
-
case 89: goto tr151;
|
2730
|
-
case 90: goto tr151;
|
2731
|
-
case 91: goto tr151;
|
2732
|
-
case 93: goto tr157;
|
2733
|
-
case 94: goto tr157;
|
2908
|
+
case 52: goto tr71;
|
2909
|
+
case 54: goto tr74;
|
2910
|
+
case 56: goto tr77;
|
2911
|
+
case 58: goto tr89;
|
2912
|
+
case 59: goto tr90;
|
2913
|
+
case 60: goto tr91;
|
2914
|
+
case 61: goto tr91;
|
2915
|
+
case 62: goto tr91;
|
2916
|
+
case 63: goto tr91;
|
2917
|
+
case 64: goto tr91;
|
2918
|
+
case 65: goto tr91;
|
2919
|
+
case 66: goto tr91;
|
2920
|
+
case 67: goto tr91;
|
2921
|
+
case 68: goto tr91;
|
2922
|
+
case 69: goto tr91;
|
2923
|
+
case 71: goto tr106;
|
2924
|
+
case 72: goto tr108;
|
2925
|
+
case 74: goto tr111;
|
2926
|
+
case 76: goto tr116;
|
2927
|
+
case 78: goto tr123;
|
2928
|
+
case 80: goto tr126;
|
2929
|
+
case 83: goto tr138;
|
2930
|
+
case 84: goto tr140;
|
2931
|
+
case 85: goto tr141;
|
2932
|
+
case 86: goto tr141;
|
2933
|
+
case 87: goto tr144;
|
2734
2934
|
case 20: goto tr26;
|
2735
|
-
case
|
2736
|
-
case
|
2737
|
-
case
|
2738
|
-
case
|
2739
|
-
case
|
2740
|
-
case
|
2741
|
-
case
|
2742
|
-
case
|
2743
|
-
case
|
2744
|
-
case
|
2745
|
-
case
|
2746
|
-
case
|
2747
|
-
case
|
2748
|
-
case
|
2749
|
-
case
|
2750
|
-
case
|
2935
|
+
case 88: goto tr144;
|
2936
|
+
case 90: goto tr154;
|
2937
|
+
case 91: goto tr155;
|
2938
|
+
case 92: goto tr156;
|
2939
|
+
case 93: goto tr156;
|
2940
|
+
case 94: goto tr159;
|
2941
|
+
case 21: goto tr28;
|
2942
|
+
case 95: goto tr159;
|
2943
|
+
case 97: goto tr163;
|
2944
|
+
case 98: goto tr163;
|
2945
|
+
case 99: goto tr163;
|
2946
|
+
case 101: goto tr169;
|
2947
|
+
case 102: goto tr169;
|
2948
|
+
case 22: goto tr30;
|
2949
|
+
case 23: goto tr30;
|
2950
|
+
case 24: goto tr30;
|
2951
|
+
case 25: goto tr30;
|
2952
|
+
case 26: goto tr30;
|
2953
|
+
case 27: goto tr30;
|
2954
|
+
case 28: goto tr30;
|
2955
|
+
case 103: goto tr169;
|
2956
|
+
case 105: goto tr174;
|
2957
|
+
case 106: goto tr174;
|
2958
|
+
case 29: goto tr38;
|
2959
|
+
case 30: goto tr38;
|
2960
|
+
case 31: goto tr38;
|
2961
|
+
case 32: goto tr38;
|
2962
|
+
case 33: goto tr38;
|
2963
|
+
case 34: goto tr38;
|
2964
|
+
case 107: goto tr174;
|
2751
2965
|
}
|
2752
2966
|
}
|
2753
2967
|
|