Mercurial > hg > isophonics-drupal-site
view vendor/nikic/php-parser/test/code/parser/scalar/docString.test @ 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 |
line wrap: on
line source
Nowdoc and heredoc strings ----- <?php // empty strings <<<'EOS' EOS; <<<EOS EOS; // constant encapsed strings <<<'EOS' Test '" $a \n EOS; <<<EOS Test '" \$a \n EOS; // encapsed strings <<<EOS Test $a EOS; <<<EOS Test $a and $b->c test EOS; b<<<EOS Binary EOS; ----- array( 0: Stmt_Expression( expr: Scalar_String( value: comments: array( 0: // empty strings ) ) comments: array( 0: // empty strings ) ) 1: Stmt_Expression( expr: Scalar_String( value: ) ) 2: Stmt_Expression( expr: Scalar_String( value: Test '" $a \n comments: array( 0: // constant encapsed strings ) ) comments: array( 0: // constant encapsed strings ) ) 3: Stmt_Expression( expr: Scalar_String( value: Test '" $a ) ) 4: Stmt_Expression( expr: Scalar_Encapsed( parts: array( 0: Scalar_EncapsedStringPart( value: Test ) 1: Expr_Variable( name: a ) ) comments: array( 0: // encapsed strings ) ) comments: array( 0: // encapsed strings ) ) 5: Stmt_Expression( expr: Scalar_Encapsed( parts: array( 0: Scalar_EncapsedStringPart( value: Test ) 1: Expr_Variable( name: a ) 2: Scalar_EncapsedStringPart( value: and ) 3: Expr_PropertyFetch( var: Expr_Variable( name: b ) name: Identifier( name: c ) ) 4: Scalar_EncapsedStringPart( value: test ) ) ) ) 6: Stmt_Expression( expr: Scalar_String( value: Binary ) ) )