Searched refs:PropertyItem (Results 1 – 25 of 34) sorted by relevance
12
/PHP-Parser/test/PhpParser/Builder/ |
H A D | PropertyTest.php | 15 use PhpParser\Node\PropertyItem; alias 35 [new PropertyItem('test')] 48 [new PropertyItem('test')] 61 [new PropertyItem('test')] 74 [new PropertyItem('test')] 83 new Stmt\Property(Modifiers::FINAL, [new PropertyItem('test')]), 90 new Stmt\Property(Modifiers::PRIVATE_SET, [new PropertyItem('test')]), 97 new Stmt\Property(Modifiers::PROTECTED_SET, [new PropertyItem('test')]), 115 new \PhpParser\Node\PropertyItem('test') 151 new \PhpParser\Node\PropertyItem('test') [all …]
|
H A D | TraitTest.php | 18 use PhpParser\Node\PropertyItem; alias 31 new PropertyItem('test') 82 new Property(Modifiers::PUBLIC, [new PropertyItem('foo')]), 83 new Property(Modifiers::PUBLIC, [new PropertyItem('bar')]),
|
H A D | EnumTest.php | 134 ->addStmt(new Node\PropertyItem('property'))
|
H A D | InterfaceTest.php | 103 $this->createInterfaceBuilder()->addStmt(new Node\PropertyItem('invalid'));
|
H A D | ClassTest.php | 89 [new Node\PropertyItem('testProperty')]
|
/PHP-Parser/test/PhpParser/Node/Stmt/ |
H A D | ClassTest.php | 6 use PhpParser\Node\PropertyItem; alias 81 new Property(Modifiers::PUBLIC, [new PropertyItem('foo')]), 82 new Property(Modifiers::PUBLIC, [new PropertyItem('bar')]), 99 $fooProp = new Property(Modifiers::PUBLIC, [new PropertyItem('foo1')]), 100 $barProp = new Property(Modifiers::PUBLIC, [new PropertyItem('BAR1')]), 101 …$fooBarProp = new Property(Modifiers::PUBLIC, [new PropertyItem('foo2'), new PropertyItem('bar2')]…
|
/PHP-Parser/test/code/parser/stmt/class/ |
H A D | property_modifiers.test | 29 0: PropertyItem( 45 0: PropertyItem( 61 0: PropertyItem( 77 0: PropertyItem(
|
H A D | propertyTypes.test | 32 0: PropertyItem( 50 0: PropertyItem( 70 0: PropertyItem( 90 0: PropertyItem(
|
H A D | asymmetric_visibility.test | 35 0: PropertyItem( 51 0: PropertyItem( 67 0: PropertyItem( 163 0: PropertyItem( 179 0: PropertyItem(
|
H A D | simple.test | 69 0: PropertyItem( 77 1: PropertyItem( 95 0: PropertyItem( 111 0: PropertyItem(
|
H A D | property_hooks.test | 41 0: PropertyItem( 95 0: PropertyItem( 139 0: PropertyItem( 179 0: PropertyItem( 266 0: PropertyItem( 334 0: PropertyItem( 386 0: PropertyItem( 453 0: PropertyItem(
|
H A D | modifier_error.test | 24 0: PropertyItem( 59 0: PropertyItem( 94 0: PropertyItem( 161 0: PropertyItem(
|
H A D | implicitPublic.test | 33 0: PropertyItem( 49 0: PropertyItem(
|
H A D | php4Style.test | 29 0: PropertyItem(
|
/PHP-Parser/lib/PhpParser/Node/ |
H A D | PropertyItem.php | 8 class PropertyItem extends NodeAbstract { class 37 class_alias(PropertyItem::class, Stmt\PropertyProperty::class);
|
/PHP-Parser/lib/PhpParser/Node/Stmt/ |
H A D | Property.php | 10 use PhpParser\Node\PropertyItem; alias 15 /** @var PropertyItem[] Properties */ 28 * @param PropertyItem[] $props Properties
|
H A D | ClassLike.php | 6 use PhpParser\Node\PropertyItem; alias 69 if ($prop instanceof PropertyItem && $name === $prop->name->toString()) {
|
/PHP-Parser/test/code/parser/ |
H A D | commentAtEndOfClass.test | 27 0: PropertyItem(
|
H A D | semiReserved.test | 129 0: PropertyItem( 145 0: PropertyItem(
|
/PHP-Parser/test/code/parser/stmt/function/ |
H A D | disjointNormalFormTypes.test | 53 0: PropertyItem( 85 0: PropertyItem(
|
H A D | intersectionTypes.test | 38 0: PropertyItem(
|
H A D | unionTypes.test | 41 0: PropertyItem(
|
/PHP-Parser/test/PhpParser/ |
H A D | CompatibilityTest.php | 34 $node = new Node\PropertyItem('x'); 63 $this->assertTrue($node instanceof Node\PropertyItem);
|
/PHP-Parser/test/code/parser/stmt/ |
H A D | newInInitializer.test | 143 0: PropertyItem(
|
/PHP-Parser/lib/PhpParser/Builder/ |
H A D | Property.php | 215 new Node\PropertyItem($this->name, $this->default)
|
Completed in 21 milliseconds
12