summaryrefslogtreecommitdiff
path: root/src/webidl-parser.y
blob: 73ed2c66d9eaa806493889e5eb6096c13590e90b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
/*
 * This is a bison parser for web IDL derived from the the grammar in
 * apendix A of W3C WEB IDL - http://www.w3.org/TR/WebIDL/
 *
 */

%{

#include <stdio.h>
#include <string.h>

#include "webidl-ast.h"

#include "webidl-parser.h"
#include "webidl-lexer.h"



void webidl_error(const char *str)
{
        fprintf(stderr,"error: %s\n",str);
}

int webidl_wrap()
{
    return 1;
}



%}

%locations
%define api.pure

%union
{
  int attr;
  char* text;
  long value;
  struct ifmember_s **ifmember;
}


%token TOK_ANY
%token TOK_ATTRIBUTE
%token TOK_BOOLEAN
%token TOK_BYTE
%token TOK_CALLBACK
%token TOK_LEGACYCALLER
%token TOK_CONST
%token TOK_CREATOR
%token TOK_DATE
%token TOK_DELETER
%token TOK_DICTIONARY
%token TOK_DOUBLE
%token TOK_ELLIPSIS
%token TOK_ENUM
%token TOK_EOL
%token TOK_EXCEPTION
%token TOK_FALSE
%token TOK_FLOAT
%token TOK_GETRAISES
%token TOK_GETTER
%token TOK_IMPLEMENTS
%token TOK_IN
%token TOK_INFINITY
%token TOK_INHERIT
%token TOK_INTERFACE
%token TOK_LONG
%token TOK_MODULE
%token TOK_NAN
%token TOK_NATIVE
%token TOK_NULL_LITERAL
%token TOK_OBJECT
%token TOK_OCTET
%token TOK_OMITTABLE
%token TOK_OPTIONAL
%token TOK_OR
%token TOK_PARTIAL
%token TOK_RAISES
%token TOK_READONLY
%token TOK_SETRAISES
%token TOK_SETTER
%token TOK_SEQUENCE
%token TOK_SHORT
%token TOK_STATIC
%token TOK_STRING
%token TOK_STRINGIFIER
%token TOK_TRUE
%token TOK_TYPEDEF
%token TOK_UNRESTRICTED
%token TOK_UNSIGNED
%token TOK_VOID

%token TOK_POUND_SIGN

%token <text>       TOK_IDENTIFIER
%token <value>      TOK_INT_LITERAL
%token <text>       TOK_FLOAT_LITERAL
%token <text>       TOK_STRING_LITERAL
%token <text>       TOK_OTHER_LITERAL
%token <text>       TOK_JAVADOC

%type <text> Inheritance
%type <ifmember> InterfaceMembers

%%

 /* [1] start with definitions  */
Definitions:
        /* empty */
        |
        ExtendedAttributeList Definition Definitions
        ;
        
 /* [2] */
Definition:  
        CallbackOrInterface
        |
        Partial 
        | 
        Dictionary 
        | 
        Exception 
        | 
        Enum 
        | 
        Typedef 
        | 
        ImplementsStatement
        ;

 /* [3] */
CallbackOrInterface:
        TOK_CALLBACK CallbackRestOrInterface
        |
        Interface
        ;

 /* [4] */
CallbackRestOrInterface:
        CallbackRest
        |
        Interface
        ;

 /* [5] */
Interface:
        TOK_INTERFACE TOK_IDENTIFIER Inheritance '{' InterfaceMembers '}' ';'
        {
        }
        ;

 /* [6] */
Partial:
        TOK_PARTIAL PartialDefinition
        ;

 /* [7] */
PartialDefinition:
        PartialInterface 
        | 
        PartialDictionary
        ;

 /* [8] */
PartialInterface:
        TOK_INTERFACE TOK_IDENTIFIER '{' InterfaceMembers '}' ';'
        ;

 /* [9] */
InterfaceMembers:
        /* empty */
        {
          $$ = NULL;
        }
        |
        ExtendedAttributeList InterfaceMember InterfaceMembers
        {
          $$ = NULL;
        }
        ;

 /* [10] */
InterfaceMember:
        Const
        | 
        AttributeOrOperation
        ;

 /* [11] */
Dictionary:
        TOK_DICTIONARY TOK_IDENTIFIER Inheritance '{' DictionaryMembers '}' ';'
        ;

 /* [12] */
DictionaryMembers:
        /* empty */
        |
        ExtendedAttributeList DictionaryMember DictionaryMembers
        ;

 /* [13] */
DictionaryMember:
        Type TOK_IDENTIFIER Default ";"
        ;

 /* [14] */
PartialDictionary:
        TOK_DICTIONARY TOK_IDENTIFIER '{' DictionaryMembers '}' ';'

 /* [15] */
Default:
        /* empty */
        |
        '=' DefaultValue 
        ;


 /* [16] */
DefaultValue:
        ConstValue 
        |
        TOK_STRING_LITERAL
        ;

 /* [17] */
Exception:
        /* empty */
        |
        TOK_EXCEPTION TOK_IDENTIFIER Inheritance '{' ExceptionMembers '}' ';'
        ;

 /* [18] */
ExceptionMembers:
        /* empty */
        |
        ExtendedAttributeList ExceptionMember ExceptionMembers
        ; 

 /* [19] returns a string */
Inheritance:
        /* empty */
        {
          $$ = NULL;
        }
        |
        ':' TOK_IDENTIFIER
        {
          $$ = $2;
        }
        ;

/* [20] */
Enum:
        TOK_ENUM TOK_IDENTIFIER '{' EnumValueList '}' ';'
        ;

/* [21] */
EnumValueList:
        TOK_STRING_LITERAL EnumValues
        ;

/* [22] */
EnumValues:
        /* empty */
        |
        ',' TOK_STRING_LITERAL EnumValues
        ;

 /* [23] - bug in w3c grammar? it doesnt list the equals as a terminal  */
CallbackRest:
        TOK_IDENTIFIER '=' ReturnType '(' ArgumentList ')' ';'

 /* [24] */
Typedef:
        TOK_TYPEDEF ExtendedAttributeList Type TOK_IDENTIFIER ';'
        ;

 /* [25] */
ImplementsStatement:
        TOK_IDENTIFIER TOK_IMPLEMENTS TOK_IDENTIFIER ';'
        ;

 /* [26] */
Const:
        TOK_CONST ConstType TOK_IDENTIFIER '=' ConstValue ';'
        ;

 /* [27] */
ConstValue:
        BooleanLiteral 
        | 
        FloatLiteral 
        | 
        TOK_INT_LITERAL 
        | 
        TOK_NULL_LITERAL
        ;

 /* [28] */
BooleanLiteral:
        TOK_TRUE 
        | 
        TOK_FALSE
        ;

 /* [29] */
FloatLiteral:
        TOK_FLOAT_LITERAL
        | 
        '-' TOK_INFINITY
        | 
        TOK_INFINITY
        |
        TOK_NAN
        ;

 /* [30] */	
AttributeOrOperation:
        TOK_STRINGIFIER StringifierAttributeOrOperation 
        | 
        Attribute 
        | 
        Operation
        ;

 /* [31] */	
StringifierAttributeOrOperation:
        Attribute 
        | 
        OperationRest 
        | 
        ';'
        ;

 /* [32] */	
Attribute:
        Inherit ReadOnly TOK_ATTRIBUTE Type TOK_IDENTIFIER ';'
        ;

 /* [33] */	
Inherit:
        /* empty */
        |
        TOK_INHERIT
        ; 

 /* [34] */	
ReadOnly:
        /* empty */
        |
        TOK_READONLY
        ;

 /* [35] */
Operation:
        Qualifiers OperationRest
        ;

 /* [36] */
Qualifiers:
        TOK_STATIC
        | 
        Specials
        ;

 /* [37] */
Specials:
        /* empty */
        |
        Special Specials 
        ;

 /* [38] */
Special:
        TOK_GETTER
        |
        TOK_SETTER
        |
        TOK_CREATOR
        |
        TOK_DELETER
        |
        TOK_LEGACYCALLER
        ;

 /* [39] */
OperationRest:
        ReturnType OptionalIdentifier '(' ArgumentList ')' ';'
        ;

 /* [40] */
OptionalIdentifier:
        /* empty */
        |
        TOK_IDENTIFIER
        ;


 /* [41] */
ArgumentList:
        /* empty */
        |
        Argument Arguments 
        ;

 /* [42] */
Arguments:
        /* empty */
        |
        ',' Argument Arguments 
        ;


 /* [43] */
Argument:
        ExtendedAttributeList OptionalOrRequiredArgument
        ;

 /* [44] */
OptionalOrRequiredArgument:
        TOK_OPTIONAL Type ArgumentName Default 
        | 
        Type Ellipsis ArgumentName
        ;

 /* [45] */
ArgumentName:
        ArgumentNameKeyword 
        | 
        TOK_IDENTIFIER
        ;

 /* [46] */
Ellipsis:
        /* empty */
        |
        TOK_ELLIPSIS
        ;

 /* [47] */
ExceptionMember:
        Const 
        | 
        ExceptionField
        ;

 /* [48] */
ExceptionField:
        Type TOK_IDENTIFIER ';'
        ;

 /* [49] extended attribute list inside square brackets */
ExtendedAttributeList:
        /* empty */
        |
        '[' ExtendedAttribute ExtendedAttributes ']'
        ;

 /* [50] extended attributes are separated with a comma */
ExtendedAttributes:
        /* empty */
        |
        ',' ExtendedAttribute ExtendedAttributes
        ;

 /* [51] extended attributes are nested with normal, square and curly braces */
ExtendedAttribute:
        '(' ExtendedAttributeInner ')' ExtendedAttributeRest
        |
        '[' ExtendedAttributeInner ']' ExtendedAttributeRest
        |
        '{' ExtendedAttributeInner '}' ExtendedAttributeRest
        |
        Other ExtendedAttributeRest 
        ;

 /* [52] extended attributes can be space separated too */
ExtendedAttributeRest:
        /* empty */
        |
        ExtendedAttribute
        ;

 /* [53] extended attributes are nested with normal, square and curly braces */
ExtendedAttributeInner:
        /* empty */
        |
        '(' ExtendedAttributeInner ')' ExtendedAttributeInner
        |
        '[' ExtendedAttributeInner ']' ExtendedAttributeInner
        |
        '{' ExtendedAttributeInner '}' ExtendedAttributeInner
        |
        OtherOrComma ExtendedAttributeInner
        ;

 /* [54] */
Other:
        TOK_INT_LITERAL
        |
        TOK_FLOAT_LITERAL
        |
        TOK_IDENTIFIER
        |
        TOK_STRING_LITERAL
        |
        TOK_OTHER_LITERAL 
        |
        '-'
        |
        '.'
        |
        TOK_ELLIPSIS
        |
        ':'
        |
        ';'
        |
        '<'
        |
        '='
        |
        '>'
        |
        '?'
        |
        TOK_DATE
        |
        TOK_STRING
        |
        TOK_INFINITY
        |
        TOK_NAN
        |
        TOK_ANY
        |
        TOK_BOOLEAN
        |
        TOK_BYTE
        |
        TOK_DOUBLE
        |
        TOK_FALSE
        |
        TOK_FLOAT
        |
        TOK_LONG
        |
        TOK_NULL_LITERAL
        |
        TOK_OBJECT
        |
        TOK_OCTET
        |
        TOK_OR
        |
        TOK_OPTIONAL
        |
        TOK_SEQUENCE
        |
        TOK_SHORT
        |
        TOK_TRUE
        |
        TOK_UNSIGNED
        |
        TOK_VOID
        |
        ArgumentNameKeyword
        ;

 /* [55] */
ArgumentNameKeyword:
        TOK_ATTRIBUTE
        |
        TOK_CALLBACK
        |
        TOK_CONST
        |
        TOK_CREATOR
        |
        TOK_DELETER
        |
        TOK_DICTIONARY
        |
        TOK_ENUM
        |
        TOK_EXCEPTION
        |
        TOK_GETTER
        |
        TOK_IMPLEMENTS
        |
        TOK_INHERIT
        |
        TOK_INTERFACE
        |
        TOK_LEGACYCALLER
        |
        TOK_PARTIAL
        |
        TOK_SETTER
        |
        TOK_STATIC
        |
        TOK_STRINGIFIER
        |
        TOK_TYPEDEF
        |
        TOK_UNRESTRICTED
        ;

 /* [56] as it says an other element or a comma */
OtherOrComma:
        Other
        |
        ','
        ;

 /* [57] */
Type:
        SingleType 
        | 
        UnionType TypeSuffix
        ;

 /* [58] */
SingleType:
        NonAnyType 
        | 
        TOK_ANY TypeSuffixStartingWithArray
        ;

 /* [59] */
UnionType:
        '(' UnionMemberType TOK_OR UnionMemberType UnionMemberTypes ')'
        ;

 /* [60] */
UnionMemberType:
        NonAnyType 
        | 
        UnionType TypeSuffix 
        | 
        TOK_ANY '[' ']' TypeSuffix
        ;

 /* [61] */
UnionMemberTypes:
        /* empty */
        |
        TOK_OR UnionMemberType UnionMemberTypes 
        ;

 /* [62] */
NonAnyType:
        PrimitiveType TypeSuffix 
        | 
        TOK_STRING TypeSuffix 
        | 
        TOK_IDENTIFIER TypeSuffix 
        | 
        TOK_SEQUENCE '<' Type '>' Null 
        | 
        TOK_OBJECT TypeSuffix 
        | 
        TOK_DATE TypeSuffix
        ;

 /* [63] */
ConstType:
        PrimitiveType Null 
        | 
        TOK_IDENTIFIER Null
        ;

 /* [64] */
PrimitiveType:
        UnsignedIntegerType 
        | 
        UnrestrictedFloatType 
        | 
        TOK_BOOLEAN
        | 
        TOK_BYTE
        | 
        TOK_OCTET
        ;

 /* [65] */
UnrestrictedFloatType:
        TOK_UNRESTRICTED FloatType 
        | 
        FloatType
        ;

 /* [66] */
FloatType:
        TOK_FLOAT
        |
        TOK_DOUBLE
        ;

 /* [67] */
UnsignedIntegerType:
        TOK_UNSIGNED IntegerType 
        | 
        IntegerType
        ;

 /* [68] */
IntegerType:
        TOK_SHORT
        | 
        TOK_LONG OptionalLong
        ;

 /* [69] */
OptionalLong:
        /* empty */
        |
        TOK_LONG
        ; 

 /* [70] */
TypeSuffix:
        /* empty */
        |
        '[' ']' TypeSuffix 
        | 
        '?' TypeSuffixStartingWithArray 
        ;

 /* [71] */	
TypeSuffixStartingWithArray:
        /* empty */
        |
        '[' ']' TypeSuffix
        ;

 /* [72] */
Null:
        /* empty */
        |
        '?'
        ;

 /* [73] */	
ReturnType:
        Type 
        | 
        TOK_VOID
        ;

%%