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
|
/* Copyright 2013 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. */
/* Test Interface productions
Run with --test to generate an AST and verify that all comments accurately
reflect the state of the Nodes.
ERROR Error String
This comment signals that a error of <Error String> is generated. The error
is not assigned to a node, but are expected in order.
TREE
Type(Name)
Type(Name)
Type(Name)
Type(Name)
...
This comment signals that a tree of nodes matching the BUILD comment
symatics should exist. This is an exact match.
*/
/** TREE
*Interface(MyIFace)
*/
interface MyIFace { };
/** TREE
*Interface(MyIFaceInherit)
* Inherit(Foo)
*/
interface MyIFaceInherit : Foo {};
/** TREE
*Interface(MyIFacePartial)
* PARTIAL: True
*/
partial interface MyIFacePartial { };
/** ERROR Unexpected ":" after identifier "MyIFaceInherit". */
partial interface MyIFaceInherit : Foo {};
/** TREE
*Interface(IFaceMixin)
* MIXIN: True
*/
interface mixin IFaceMixin {};
/** ERROR Unexpected ":" after identifier "IFaceMixinInherit". */
interface mixin IFaceMixinInherit : Foo {};
/** TREE
*Interface(PartialIFaceMixin)
* MIXIN: True
* PARTIAL: True
*/
partial interface mixin PartialIFaceMixin {};
/** TREE
*Interface(IFaceMixin)
* MIXIN: True
* Error(Unexpected keyword "static" after "{".)
*/
interface mixin IFaceMixin {
static attribute integer staticAttribute;
};
/** TREE
*Interface(IFaceMixin)
* MIXIN: True
* Const(pi)
* PrimitiveType(double)
* Value() = "3.14159"
* Operation(foo)
* Arguments()
* Type()
* PrimitiveType(void)
* Attribute(baz)
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(XAttr)
* Attribute(bar)
* Type()
* StringType(DOMString)
* Attribute(readonlyAttr)
* READONLY: True
* Type()
* StringType(DOMString)
*/
interface mixin IFaceMixin {
const double pi = 3.14159;
void foo();
[XAttr] attribute long baz;
attribute DOMString bar;
readonly attribute DOMString readonlyAttr;
};
/** TREE
*Interface(MyIFaceMissingArgument)
* Operation(foo)
* Arguments()
* Argument(arg)
* Type()
* StringType(DOMString)
* Error(Missing argument.)
* Type()
* PrimitiveType(void)
*/
interface MyIFaceMissingArgument {
void foo(DOMString arg, );
};
/** TREE
*Error(Unexpected keyword "double" after keyword "readonly".)
*/
interface MyIFaceMissingAttribute {
readonly double foo;
};
/** TREE
*Interface(MyIFaceContainsUnresolvedConflictDiff)
* Operation(foo)
* Arguments()
* Type()
* StringType(DOMString)
* Error(Unexpected "<" after ";".)
*/
interface MyIFaceContainsUnresolvedConflictDiff {
DOMString foo();
<<<<<< ours
DOMString bar();
iterable<long>;
======
>>>>>> theirs
};
/** TREE
*Interface(MyIFaceWrongRecordKeyType)
* Operation(foo)
* Arguments()
* Argument(arg)
* Type()
* Error(Unexpected identifier "int" after "<".)
* Type()
* PrimitiveType(void)
*/
interface MyIFaceWrongRecordKeyType {
void foo(record<int, ByteString> arg);
};
/** TREE
*Interface(IFaceAllowedKeywords)
* Attribute(async)
* Type()
* PrimitiveType(long)
* Operation(includes)
* Arguments()
* Argument(async)
* Type()
* PrimitiveType(long)
* Argument(constructor)
* Type()
* PrimitiveType(long)
* Type()
* PrimitiveType(void)
* Attribute(constructor)
* Type()
* PrimitiveType(long)
* Error(Unexpected constructor.)
*/
interface IFaceAllowedKeywords {
attribute long async;
void includes(long async, long constructor);
attribute long _constructor;
attribute long constructor;
};
/** TREE
*Interface(MyIfaceDefalutValue)
* Operation(foo)
* Arguments()
* Argument(arg)
* OPTIONAL: True
* Type()
* Sequence()
* Type()
* StringType(DOMString)
* Default() = "[]"
* Type()
* PrimitiveType(void)
* Operation(bar)
* Arguments()
* Argument(arg)
* OPTIONAL: True
* Type()
* Typeref(MyDict)
* Default() = "{}"
* Type()
* PrimitiveType(void)
* Operation(baz)
* Arguments()
* Argument(arg)
* OPTIONAL: True
* Type()
* NULLABLE: True
* StringType(DOMString)
* Default() = "NULL"
* Type()
* PrimitiveType(void)
*/
interface MyIfaceDefalutValue {
void foo(optional sequence<DOMString> arg = []);
void bar(optional MyDict arg = {});
void baz(optional DOMString? arg = null);
};
/** TREE
*Interface(MyIfaceWithRecords)
* Operation(foo)
* Arguments()
* Argument(arg)
* Type()
* Record()
* StringType(DOMString)
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(EnforceRange)
* Type()
* PrimitiveType(void)
* Operation(bar)
* Arguments()
* Argument(arg1)
* Type()
* Typeref(int)
* Argument(arg2)
* Type()
* Record()
* StringType(ByteString)
* Type()
* PrimitiveType(float)
* Type()
* PrimitiveType(double)
*/
interface MyIfaceWithRecords {
void foo(record<DOMString, [EnforceRange] long> arg);
double bar(int arg1, record<ByteString, float> arg2);
};
/** TREE
*Interface(MyIFaceBig)
* Const(longValue)
* PrimitiveType(long)
* Value() = "123"
* Const(longValue2)
* PrimitiveType(long long)
* Value() = "123"
* Attribute(myString)
* Type()
* StringType(DOMString)
* Attribute(readOnlyString)
* READONLY: True
* Type()
* StringType(DOMString)
* Attribute(staticString)
* STATIC: True
* Type()
* StringType(DOMString)
* Operation(myFunction)
* Arguments()
* Argument(myLong)
* Type()
* PrimitiveType(long long)
* Type()
* PrimitiveType(void)
* Operation(staticFunction)
* STATIC: True
* Arguments()
* Argument(myLong)
* Type()
* PrimitiveType(long long)
* Type()
* PrimitiveType(void)
*/
interface MyIFaceBig {
const long longValue = 123;
const long long longValue2 = 123;
attribute DOMString myString;
readonly attribute DOMString readOnlyString;
static attribute DOMString staticString;
void myFunction(long long myLong);
static void staticFunction(long long myLong);
};
/** TREE
*Interface(MyIFaceSpecials)
* Operation(set)
* SETTER: True
* Arguments()
* Argument(property)
* Type()
* StringType(DOMString)
* Type()
* PrimitiveType(void)
* Operation()
* GETTER: True
* Arguments()
* Argument(property)
* Type()
* StringType(DOMString)
* Type()
* PrimitiveType(double)
*/
interface MyIFaceSpecials {
setter void set(DOMString property);
getter double (DOMString property);
};
/** TREE
*Interface(MyIFaceConstructor)
* Constructor()
* Arguments()
* Constructor()
* Arguments()
* Argument(str)
* Type()
* StringType(DOMString)
* Argument(param)
* OPTIONAL: True
* Type()
* PrimitiveType(long)
* Constructor()
* Arguments()
* Argument(node)
* Type()
* Typeref(Node)
* ExtAttributes()
* ExtAttribute(Custom)
*/
interface MyIFaceConstructor {
constructor();
constructor(DOMString str, optional long param);
[Custom] constructor(Node node);
};
/** TREE
*Interface(PartialIFaceConstructor)
* PARTIAL: True
* Error(Unexpected keyword "constructor" after "{".)
*/
partial interface PartialIFaceConstructor {
constructor();
};
/** TREE
*Interface(MyIFaceStringifiers)
* Stringifier()
* Stringifier()
* Operation()
* Arguments()
* Type()
* StringType(DOMString)
* Stringifier()
* Operation(namedStringifier)
* Arguments()
* Type()
* StringType(DOMString)
* Stringifier()
* Attribute(stringValue)
* Type()
* StringType(DOMString)
*/
interface MyIFaceStringifiers {
stringifier;
stringifier DOMString ();
stringifier DOMString namedStringifier();
stringifier attribute DOMString stringValue;
};
/** TREE
*Interface(MyExtendedAttributeInterface)
* Operation(method)
* Arguments()
* Type()
* PrimitiveType(void)
* ExtAttributes()
* ExtAttribute(Attr)
* ExtAttribute(MethodIdentList) = "['Foo', 'Bar']"
* ExtAttributes()
* ExtAttribute(MyExtendedAttribute)
* ExtAttribute(MyExtendedIdentListAttribute) = "['Foo', 'Bar', 'Baz']"
*/
[MyExtendedAttribute,
MyExtendedIdentListAttribute=(Foo, Bar, Baz)]
interface MyExtendedAttributeInterface {
[Attr, MethodIdentList=(Foo, Bar)] void method();
};
/** TREE
*Interface(MyIfacePromise)
* Operation(method1)
* Arguments()
* Type()
* Promise(Promise)
* Type()
* PrimitiveType(void)
* Operation(method2)
* Arguments()
* Type()
* Promise(Promise)
* Type()
* PrimitiveType(long)
* Operation(method3)
* Arguments()
* Type()
* Promise(Promise)
* Type()
* Any()
* Error(Unexpected identifier "method4" after keyword "Promise".)
*/
interface MyIfacePromise {
Promise<void> method1();
Promise<long> method2();
Promise<any> method3();
Promise method4();
};
/** TREE
*Interface(MyIfaceIterable)
* Iterable()
* Type()
* PrimitiveType(long)
* Iterable()
* Type()
* PrimitiveType(double)
* Type()
* StringType(DOMString)
* Iterable()
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(Clamp)
* Iterable()
* Type()
* StringType(DOMString)
* ExtAttributes()
* ExtAttribute(TreatNullAs) = "EmptyString"
* Iterable()
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(Clamp)
* ExtAttribute(XAttr)
* ExtAttributes()
* ExtAttribute(Exposed) = "Window"
* Iterable()
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(Clamp)
* Type()
* PrimitiveType(long long)
* ExtAttributes()
* ExtAttribute(EnforceRange)
*/
interface MyIfaceIterable {
iterable<long>;
iterable<double, DOMString>;
iterable<[Clamp] long>;
iterable<[TreatNullAs=EmptyString] DOMString>;
[Exposed=Window] iterable<[Clamp, XAttr] long>;
iterable<[Clamp] long, [EnforceRange] long long>;
};
/** TREE
*Interface(MyIfaceAsyncIterable)
* AsyncIterable()
* Type()
* PrimitiveType(long)
* AsyncIterable()
* Type()
* PrimitiveType(double)
* Type()
* StringType(DOMString)
* AsyncIterable()
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(Clamp)
* Arguments()
* ExtAttributes()
* ExtAttribute(Exposed) = "Window"
* AsyncIterable()
* Type()
* PrimitiveType(double)
* Type()
* StringType(DOMString)
* Arguments()
* Argument(arg1)
* OPTIONAL: True
* Type()
* PrimitiveType(long)
* Argument(arg2)
* OPTIONAL: True
* Type()
* StringType(DOMString)
*/
interface MyIfaceAsyncIterable {
async iterable<long>;
async iterable<double, DOMString>;
[Exposed=Window] async iterable<[Clamp] long>();
async iterable<double, DOMString>(optional long arg1, optional DOMString arg2);
};
/** TREE
*Interface(MyIfaceMaplike)
* Maplike()
* READONLY: True
* Type()
* PrimitiveType(long)
* Type()
* StringType(DOMString)
* Maplike()
* Type()
* PrimitiveType(double)
* Type()
* PrimitiveType(boolean)
* Maplike()
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(Clamp)
* Type()
* StringType(DOMString)
* ExtAttributes()
* ExtAttribute(XAttr)
*/
interface MyIfaceMaplike {
readonly maplike<long, DOMString>;
maplike<double, boolean>;
maplike<[Clamp] long, [XAttr] DOMString>;
};
/** TREE
*Interface(MyIfaceSetlike)
* Setlike()
* READONLY: True
* Type()
* PrimitiveType(long)
* Setlike()
* Type()
* PrimitiveType(double)
* Setlike()
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(EnforceRange)
*/
interface MyIfaceSetlike {
readonly setlike<long>;
setlike<double>;
setlike<[EnforceRange] long>;
};
/** TREE
*Interface(MyIfaceFrozenArray)
* Attribute(foo)
* READONLY: True
* Type()
* FrozenArray()
* Type()
* StringType(DOMString)
* Attribute(bar)
* READONLY: True
* Type()
* FrozenArray()
* Type()
* StringType(DOMString)
* ExtAttributes()
* ExtAttribute(TreatNullAs) = "EmptyString"
*/
interface MyIfaceFrozenArray {
readonly attribute FrozenArray<DOMString> foo;
readonly attribute FrozenArray<[TreatNullAs=EmptyString] DOMString> bar;
};
/** TREE
*Interface(MyIfaceObservableArray)
* Attribute(foo)
* Type()
* ObservableArray()
* Type()
* PrimitiveType(long)
*/
interface MyIfaceObservableArray {
attribute ObservableArray<long> foo;
};
/** TREE
*Interface(MyIfaceUnion)
* Attribute(foo)
* Type()
* UnionType()
* Type()
* StringType(DOMString)
* Type()
* PrimitiveType(long)
*/
interface MyIfaceUnion {
attribute (DOMString or long) foo;
};
/** TREE
*Interface(MyIfaceAttributeRestClamp)
* Attribute(myLong)
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(Clamp)
*/
interface MyIfaceAttributeRestClamp {
attribute [Clamp] long myLong;
};
/** TREE
*Interface(MyIFaceArgumentWithAnnotatedType1)
* Operation(myFunction)
* Arguments()
* Argument(myLong)
* OPTIONAL: True
* Type()
* PrimitiveType(long long)
* ExtAttributes()
* ExtAttribute(Clamp)
* Type()
* PrimitiveType(void)
*/
interface MyIFaceArgumentWithAnnotatedType1 {
void myFunction(optional [Clamp] long long myLong);
};
/** TREE
*Interface(MyIFaceArgumentWithAnnotatedType2)
* Operation(voidMethodTestArgumentWithExtAttribute1)
* Arguments()
* Argument(myLong)
* Type()
* PrimitiveType(long long)
* ExtAttributes()
* ExtAttribute(Clamp)
* ExtAttributes()
* ExtAttribute(XAttr)
* Type()
* PrimitiveType(void)
* Operation(voidMethodTestArgumentWithExtAttribute2)
* Arguments()
* Argument(longArg)
* Type()
* PrimitiveType(long)
* ExtAttributes()
* ExtAttribute(EnforceRange)
* Type()
* PrimitiveType(void)
*/
interface MyIFaceArgumentWithAnnotatedType2 {
void voidMethodTestArgumentWithExtAttribute1([Clamp, XAttr] long long myLong);
void voidMethodTestArgumentWithExtAttribute2([EnforceRange] long longArg);
};
/** TREE
*Interface(InterfaceConstructors)
* ExtAttributes()
* ExtAttribute(Constructor)
* ExtAttribute(Constructor)
* Arguments()
* Argument(doubleArg)
* Type()
* PrimitiveType(double)
* ExtAttribute(CustomConstructor)
* ExtAttribute(CustomConstructor)
* Arguments()
* Argument(doubleArg)
* Type()
* PrimitiveType(double)
* ExtAttribute(NamedConstructor) = "Audio"
* ExtAttribute(NamedConstructor)
* Call(Audio)
* Arguments()
* Argument(src)
* Type()
* StringType(DOMString)
*/
[
Constructor,
Constructor(double doubleArg),
CustomConstructor,
CustomConstructor(double doubleArg),
NamedConstructor=Audio,
NamedConstructor=Audio(DOMString src)
] interface InterfaceConstructors { };
/** TREE
*Interface(InterfaceExposed)
* ExtAttributes()
* ExtAttribute(Exposed) = "Window"
* ExtAttribute(Exposed) = "*"
* ExtAttribute(Exposed) = "['Window', 'Worker']"
* ExtAttribute(Exposed)
* Arguments()
* Argument(Feature1)
* Type()
* Typeref(Window)
* ExtAttribute(Exposed)
* Arguments()
* Argument(Feature1)
* Type()
* Typeref(Window)
* Argument(Feature2)
* Type()
* Typeref(Worker)
*/
[
Exposed=Window,
Exposed=*,
Exposed=(Window, Worker),
Exposed(Window Feature1),
Exposed(Window Feature1, Worker Feature2)
] interface InterfaceExposed { };
/** TREE
*Interface(InterfaceExposedError)
* ExtAttributes()
* ExtAttribute(Exposed)
* Arguments()
* Error(Unexpected ,.)
*/
[ Exposed(Window, Worker) ] interface InterfaceExposedError { };
/** TREE
*Includes(Foo)
* REFERENCE: Bar
*/
Foo includes Bar;
|