php-parser/test/code/parser/scalar/docString.test

113 lines
2.1 KiB
Plaintext
Raw Normal View History

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;
2016-04-02 14:15:49 +02:00
b<<<EOS
Binary
EOS;
-----
array(
2017-01-19 22:25:22 +01:00
0: Stmt_Expression(
expr: Scalar_String(
value:
comments: array(
0: // empty strings
)
)
comments: array(
0: // empty strings
)
)
2017-01-19 22:25:22 +01:00
1: Stmt_Expression(
expr: Scalar_String(
value:
)
)
2017-01-19 22:25:22 +01:00
2: Stmt_Expression(
expr: Scalar_String(
value: Test '" $a \n
comments: array(
0: // constant encapsed strings
)
)
comments: array(
0: // constant encapsed strings
)
)
2017-01-19 22:25:22 +01:00
3: Stmt_Expression(
expr: Scalar_String(
value: Test '" $a
2017-01-19 22:25:22 +01:00
)
)
2017-01-19 22:25:22 +01:00
4: Stmt_Expression(
expr: Scalar_Encapsed(
parts: array(
0: Scalar_EncapsedStringPart(
value: Test
)
1: Expr_Variable(
name: a
)
2015-12-03 22:55:07 +01:00
)
2017-01-19 22:25:22 +01:00
comments: array(
0: // encapsed strings
)
)
comments: array(
0: // encapsed strings
)
)
2017-01-19 22:25:22 +01:00
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: c
)
4: Scalar_EncapsedStringPart(
value: test
)
2015-12-03 22:55:07 +01:00
)
)
)
2017-01-19 22:25:22 +01:00
6: Stmt_Expression(
expr: Scalar_String(
value: Binary
)
2016-04-02 14:15:49 +02:00
)
)