Mercurial > hg > isophonics-drupal-site
diff vendor/nikic/php-parser/test/PhpParser/NodeDumperTest.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
line wrap: on
line diff
--- a/vendor/nikic/php-parser/test/PhpParser/NodeDumperTest.php Fri Feb 23 15:52:07 2018 +0000 +++ b/vendor/nikic/php-parser/test/PhpParser/NodeDumperTest.php Mon Apr 23 09:33:26 2018 +0100 @@ -1,8 +1,10 @@ -<?php +<?php declare(strict_types=1); namespace PhpParser; -class NodeDumperTest extends \PHPUnit_Framework_TestCase +use PHPUnit\Framework\TestCase; + +class NodeDumperTest extends TestCase { private function canonicalize($string) { return str_replace("\r\n", "\n", $string); @@ -18,33 +20,33 @@ } public function provideTestDump() { - return array( - array( - array(), + return [ + [ + [], 'array( )' - ), - array( - array('Foo', 'Bar', 'Key' => 'FooBar'), + ], + [ + ['Foo', 'Bar', 'Key' => 'FooBar'], 'array( 0: Foo 1: Bar Key: FooBar )' - ), - array( - new Node\Name(array('Hallo', 'World')), + ], + [ + new Node\Name(['Hallo', 'World']), 'Name( parts: array( 0: Hallo 1: World ) )' - ), - array( - new Node\Expr\Array_(array( + ], + [ + new Node\Expr\Array_([ new Node\Expr\ArrayItem(new Node\Scalar\String_('Foo')) - )), + ]), 'Expr_Array( items: array( 0: Expr_ArrayItem( @@ -56,8 +58,8 @@ ) ) )' - ), - ); + ], + ]; } public function testDumpWithPositions() { @@ -70,12 +72,14 @@ $code = "<?php\n\$a = 1;\necho \$a;"; $expected = <<<'OUT' array( - 0: Expr_Assign[2:1 - 2:6]( - var: Expr_Variable[2:1 - 2:2]( - name: a - ) - expr: Scalar_LNumber[2:6 - 2:6]( - value: 1 + 0: Stmt_Expression[2:1 - 2:7]( + expr: Expr_Assign[2:1 - 2:6]( + var: Expr_Variable[2:1 - 2:2]( + name: a + ) + expr: Scalar_LNumber[2:6 - 2:6]( + value: 1 + ) ) ) 1: Stmt_Echo[3:1 - 3:8](