1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 02:07:59 +01:00
PHP-Parser/test/code/parser/scalar/magicConst.test

31 lines
443 B
Plaintext
Raw Normal View History

2011-11-26 17:10:18 +01:00
Magic constants
-----
<?php
2011-11-27 11:20:35 +01:00
2011-11-26 17:10:18 +01:00
__CLASS__;
__DIR__;
__FILE__;
__FUNCTION__;
__LINE__;
__METHOD__;
__NAMESPACE__;
__TRAIT__;
2011-11-26 17:10:18 +01:00
-----
array(
0: Scalar_MagicConst_Class(
2011-11-26 17:10:18 +01:00
)
1: Scalar_MagicConst_Dir(
2011-11-26 17:10:18 +01:00
)
2: Scalar_MagicConst_File(
2011-11-26 17:10:18 +01:00
)
3: Scalar_MagicConst_Function(
2011-11-26 17:10:18 +01:00
)
4: Scalar_MagicConst_Line(
2011-11-26 17:10:18 +01:00
)
5: Scalar_MagicConst_Method(
2011-11-26 17:10:18 +01:00
)
6: Scalar_MagicConst_Namespace(
2011-11-26 17:10:18 +01:00
)
7: Scalar_MagicConst_Trait(
)
2011-11-26 17:10:18 +01:00
)