This file is indexed.

/usr/share/php/PhpParser/autoload.php is in php-parser 3.1.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'phpparser\\autoloader' => '/Autoloader.php',
                'phpparser\\builder' => '/Builder.php',
                'phpparser\\builder\\class_' => '/Builder/Class_.php',
                'phpparser\\builder\\declaration' => '/Builder/Declaration.php',
                'phpparser\\builder\\function_' => '/Builder/Function_.php',
                'phpparser\\builder\\functionlike' => '/Builder/FunctionLike.php',
                'phpparser\\builder\\interface_' => '/Builder/Interface_.php',
                'phpparser\\builder\\method' => '/Builder/Method.php',
                'phpparser\\builder\\namespace_' => '/Builder/Namespace_.php',
                'phpparser\\builder\\param' => '/Builder/Param.php',
                'phpparser\\builder\\property' => '/Builder/Property.php',
                'phpparser\\builder\\trait_' => '/Builder/Trait_.php',
                'phpparser\\builder\\use_' => '/Builder/Use_.php',
                'phpparser\\builderabstract' => '/BuilderAbstract.php',
                'phpparser\\builderfactory' => '/BuilderFactory.php',
                'phpparser\\comment' => '/Comment.php',
                'phpparser\\comment\\doc' => '/Comment/Doc.php',
                'phpparser\\error' => '/Error.php',
                'phpparser\\errorhandler' => '/ErrorHandler.php',
                'phpparser\\errorhandler\\collecting' => '/ErrorHandler/Collecting.php',
                'phpparser\\errorhandler\\throwing' => '/ErrorHandler/Throwing.php',
                'phpparser\\lexer' => '/Lexer.php',
                'phpparser\\lexer\\emulative' => '/Lexer/Emulative.php',
                'phpparser\\node' => '/Node.php',
                'phpparser\\node\\arg' => '/Node/Arg.php',
                'phpparser\\node\\const_' => '/Node/Const_.php',
                'phpparser\\node\\expr' => '/Node/Expr.php',
                'phpparser\\node\\expr\\array_' => '/Node/Expr/Array_.php',
                'phpparser\\node\\expr\\arraydimfetch' => '/Node/Expr/ArrayDimFetch.php',
                'phpparser\\node\\expr\\arrayitem' => '/Node/Expr/ArrayItem.php',
                'phpparser\\node\\expr\\assign' => '/Node/Expr/Assign.php',
                'phpparser\\node\\expr\\assignop' => '/Node/Expr/AssignOp.php',
                'phpparser\\node\\expr\\assignop\\bitwiseand' => '/Node/Expr/AssignOp/BitwiseAnd.php',
                'phpparser\\node\\expr\\assignop\\bitwiseor' => '/Node/Expr/AssignOp/BitwiseOr.php',
                'phpparser\\node\\expr\\assignop\\bitwisexor' => '/Node/Expr/AssignOp/BitwiseXor.php',
                'phpparser\\node\\expr\\assignop\\concat' => '/Node/Expr/AssignOp/Concat.php',
                'phpparser\\node\\expr\\assignop\\div' => '/Node/Expr/AssignOp/Div.php',
                'phpparser\\node\\expr\\assignop\\minus' => '/Node/Expr/AssignOp/Minus.php',
                'phpparser\\node\\expr\\assignop\\mod' => '/Node/Expr/AssignOp/Mod.php',
                'phpparser\\node\\expr\\assignop\\mul' => '/Node/Expr/AssignOp/Mul.php',
                'phpparser\\node\\expr\\assignop\\plus' => '/Node/Expr/AssignOp/Plus.php',
                'phpparser\\node\\expr\\assignop\\pow' => '/Node/Expr/AssignOp/Pow.php',
                'phpparser\\node\\expr\\assignop\\shiftleft' => '/Node/Expr/AssignOp/ShiftLeft.php',
                'phpparser\\node\\expr\\assignop\\shiftright' => '/Node/Expr/AssignOp/ShiftRight.php',
                'phpparser\\node\\expr\\assignref' => '/Node/Expr/AssignRef.php',
                'phpparser\\node\\expr\\binaryop' => '/Node/Expr/BinaryOp.php',
                'phpparser\\node\\expr\\binaryop\\bitwiseand' => '/Node/Expr/BinaryOp/BitwiseAnd.php',
                'phpparser\\node\\expr\\binaryop\\bitwiseor' => '/Node/Expr/BinaryOp/BitwiseOr.php',
                'phpparser\\node\\expr\\binaryop\\bitwisexor' => '/Node/Expr/BinaryOp/BitwiseXor.php',
                'phpparser\\node\\expr\\binaryop\\booleanand' => '/Node/Expr/BinaryOp/BooleanAnd.php',
                'phpparser\\node\\expr\\binaryop\\booleanor' => '/Node/Expr/BinaryOp/BooleanOr.php',
                'phpparser\\node\\expr\\binaryop\\coalesce' => '/Node/Expr/BinaryOp/Coalesce.php',
                'phpparser\\node\\expr\\binaryop\\concat' => '/Node/Expr/BinaryOp/Concat.php',
                'phpparser\\node\\expr\\binaryop\\div' => '/Node/Expr/BinaryOp/Div.php',
                'phpparser\\node\\expr\\binaryop\\equal' => '/Node/Expr/BinaryOp/Equal.php',
                'phpparser\\node\\expr\\binaryop\\greater' => '/Node/Expr/BinaryOp/Greater.php',
                'phpparser\\node\\expr\\binaryop\\greaterorequal' => '/Node/Expr/BinaryOp/GreaterOrEqual.php',
                'phpparser\\node\\expr\\binaryop\\identical' => '/Node/Expr/BinaryOp/Identical.php',
                'phpparser\\node\\expr\\binaryop\\logicaland' => '/Node/Expr/BinaryOp/LogicalAnd.php',
                'phpparser\\node\\expr\\binaryop\\logicalor' => '/Node/Expr/BinaryOp/LogicalOr.php',
                'phpparser\\node\\expr\\binaryop\\logicalxor' => '/Node/Expr/BinaryOp/LogicalXor.php',
                'phpparser\\node\\expr\\binaryop\\minus' => '/Node/Expr/BinaryOp/Minus.php',
                'phpparser\\node\\expr\\binaryop\\mod' => '/Node/Expr/BinaryOp/Mod.php',
                'phpparser\\node\\expr\\binaryop\\mul' => '/Node/Expr/BinaryOp/Mul.php',
                'phpparser\\node\\expr\\binaryop\\notequal' => '/Node/Expr/BinaryOp/NotEqual.php',
                'phpparser\\node\\expr\\binaryop\\notidentical' => '/Node/Expr/BinaryOp/NotIdentical.php',
                'phpparser\\node\\expr\\binaryop\\plus' => '/Node/Expr/BinaryOp/Plus.php',
                'phpparser\\node\\expr\\binaryop\\pow' => '/Node/Expr/BinaryOp/Pow.php',
                'phpparser\\node\\expr\\binaryop\\shiftleft' => '/Node/Expr/BinaryOp/ShiftLeft.php',
                'phpparser\\node\\expr\\binaryop\\shiftright' => '/Node/Expr/BinaryOp/ShiftRight.php',
                'phpparser\\node\\expr\\binaryop\\smaller' => '/Node/Expr/BinaryOp/Smaller.php',
                'phpparser\\node\\expr\\binaryop\\smallerorequal' => '/Node/Expr/BinaryOp/SmallerOrEqual.php',
                'phpparser\\node\\expr\\binaryop\\spaceship' => '/Node/Expr/BinaryOp/Spaceship.php',
                'phpparser\\node\\expr\\bitwisenot' => '/Node/Expr/BitwiseNot.php',
                'phpparser\\node\\expr\\booleannot' => '/Node/Expr/BooleanNot.php',
                'phpparser\\node\\expr\\cast' => '/Node/Expr/Cast.php',
                'phpparser\\node\\expr\\cast\\array_' => '/Node/Expr/Cast/Array_.php',
                'phpparser\\node\\expr\\cast\\bool_' => '/Node/Expr/Cast/Bool_.php',
                'phpparser\\node\\expr\\cast\\double' => '/Node/Expr/Cast/Double.php',
                'phpparser\\node\\expr\\cast\\int_' => '/Node/Expr/Cast/Int_.php',
                'phpparser\\node\\expr\\cast\\object_' => '/Node/Expr/Cast/Object_.php',
                'phpparser\\node\\expr\\cast\\string_' => '/Node/Expr/Cast/String_.php',
                'phpparser\\node\\expr\\cast\\unset_' => '/Node/Expr/Cast/Unset_.php',
                'phpparser\\node\\expr\\classconstfetch' => '/Node/Expr/ClassConstFetch.php',
                'phpparser\\node\\expr\\clone_' => '/Node/Expr/Clone_.php',
                'phpparser\\node\\expr\\closure' => '/Node/Expr/Closure.php',
                'phpparser\\node\\expr\\closureuse' => '/Node/Expr/ClosureUse.php',
                'phpparser\\node\\expr\\constfetch' => '/Node/Expr/ConstFetch.php',
                'phpparser\\node\\expr\\empty_' => '/Node/Expr/Empty_.php',
                'phpparser\\node\\expr\\error' => '/Node/Expr/Error.php',
                'phpparser\\node\\expr\\errorsuppress' => '/Node/Expr/ErrorSuppress.php',
                'phpparser\\node\\expr\\eval_' => '/Node/Expr/Eval_.php',
                'phpparser\\node\\expr\\exit_' => '/Node/Expr/Exit_.php',
                'phpparser\\node\\expr\\funccall' => '/Node/Expr/FuncCall.php',
                'phpparser\\node\\expr\\include_' => '/Node/Expr/Include_.php',
                'phpparser\\node\\expr\\instanceof_' => '/Node/Expr/Instanceof_.php',
                'phpparser\\node\\expr\\isset_' => '/Node/Expr/Isset_.php',
                'phpparser\\node\\expr\\list_' => '/Node/Expr/List_.php',
                'phpparser\\node\\expr\\methodcall' => '/Node/Expr/MethodCall.php',
                'phpparser\\node\\expr\\new_' => '/Node/Expr/New_.php',
                'phpparser\\node\\expr\\postdec' => '/Node/Expr/PostDec.php',
                'phpparser\\node\\expr\\postinc' => '/Node/Expr/PostInc.php',
                'phpparser\\node\\expr\\predec' => '/Node/Expr/PreDec.php',
                'phpparser\\node\\expr\\preinc' => '/Node/Expr/PreInc.php',
                'phpparser\\node\\expr\\print_' => '/Node/Expr/Print_.php',
                'phpparser\\node\\expr\\propertyfetch' => '/Node/Expr/PropertyFetch.php',
                'phpparser\\node\\expr\\shellexec' => '/Node/Expr/ShellExec.php',
                'phpparser\\node\\expr\\staticcall' => '/Node/Expr/StaticCall.php',
                'phpparser\\node\\expr\\staticpropertyfetch' => '/Node/Expr/StaticPropertyFetch.php',
                'phpparser\\node\\expr\\ternary' => '/Node/Expr/Ternary.php',
                'phpparser\\node\\expr\\unaryminus' => '/Node/Expr/UnaryMinus.php',
                'phpparser\\node\\expr\\unaryplus' => '/Node/Expr/UnaryPlus.php',
                'phpparser\\node\\expr\\variable' => '/Node/Expr/Variable.php',
                'phpparser\\node\\expr\\yield_' => '/Node/Expr/Yield_.php',
                'phpparser\\node\\expr\\yieldfrom' => '/Node/Expr/YieldFrom.php',
                'phpparser\\node\\functionlike' => '/Node/FunctionLike.php',
                'phpparser\\node\\name' => '/Node/Name.php',
                'phpparser\\node\\name\\fullyqualified' => '/Node/Name/FullyQualified.php',
                'phpparser\\node\\name\\relative' => '/Node/Name/Relative.php',
                'phpparser\\node\\nullabletype' => '/Node/NullableType.php',
                'phpparser\\node\\param' => '/Node/Param.php',
                'phpparser\\node\\scalar' => '/Node/Scalar.php',
                'phpparser\\node\\scalar\\dnumber' => '/Node/Scalar/DNumber.php',
                'phpparser\\node\\scalar\\encapsed' => '/Node/Scalar/Encapsed.php',
                'phpparser\\node\\scalar\\encapsedstringpart' => '/Node/Scalar/EncapsedStringPart.php',
                'phpparser\\node\\scalar\\lnumber' => '/Node/Scalar/LNumber.php',
                'phpparser\\node\\scalar\\magicconst' => '/Node/Scalar/MagicConst.php',
                'phpparser\\node\\scalar\\magicconst\\class_' => '/Node/Scalar/MagicConst/Class_.php',
                'phpparser\\node\\scalar\\magicconst\\dir' => '/Node/Scalar/MagicConst/Dir.php',
                'phpparser\\node\\scalar\\magicconst\\file' => '/Node/Scalar/MagicConst/File.php',
                'phpparser\\node\\scalar\\magicconst\\function_' => '/Node/Scalar/MagicConst/Function_.php',
                'phpparser\\node\\scalar\\magicconst\\line' => '/Node/Scalar/MagicConst/Line.php',
                'phpparser\\node\\scalar\\magicconst\\method' => '/Node/Scalar/MagicConst/Method.php',
                'phpparser\\node\\scalar\\magicconst\\namespace_' => '/Node/Scalar/MagicConst/Namespace_.php',
                'phpparser\\node\\scalar\\magicconst\\trait_' => '/Node/Scalar/MagicConst/Trait_.php',
                'phpparser\\node\\scalar\\string_' => '/Node/Scalar/String_.php',
                'phpparser\\node\\stmt' => '/Node/Stmt.php',
                'phpparser\\node\\stmt\\break_' => '/Node/Stmt/Break_.php',
                'phpparser\\node\\stmt\\case_' => '/Node/Stmt/Case_.php',
                'phpparser\\node\\stmt\\catch_' => '/Node/Stmt/Catch_.php',
                'phpparser\\node\\stmt\\class_' => '/Node/Stmt/Class_.php',
                'phpparser\\node\\stmt\\classconst' => '/Node/Stmt/ClassConst.php',
                'phpparser\\node\\stmt\\classlike' => '/Node/Stmt/ClassLike.php',
                'phpparser\\node\\stmt\\classmethod' => '/Node/Stmt/ClassMethod.php',
                'phpparser\\node\\stmt\\const_' => '/Node/Stmt/Const_.php',
                'phpparser\\node\\stmt\\continue_' => '/Node/Stmt/Continue_.php',
                'phpparser\\node\\stmt\\declare_' => '/Node/Stmt/Declare_.php',
                'phpparser\\node\\stmt\\declaredeclare' => '/Node/Stmt/DeclareDeclare.php',
                'phpparser\\node\\stmt\\do_' => '/Node/Stmt/Do_.php',
                'phpparser\\node\\stmt\\echo_' => '/Node/Stmt/Echo_.php',
                'phpparser\\node\\stmt\\else_' => '/Node/Stmt/Else_.php',
                'phpparser\\node\\stmt\\elseif_' => '/Node/Stmt/ElseIf_.php',
                'phpparser\\node\\stmt\\finally_' => '/Node/Stmt/Finally_.php',
                'phpparser\\node\\stmt\\for_' => '/Node/Stmt/For_.php',
                'phpparser\\node\\stmt\\foreach_' => '/Node/Stmt/Foreach_.php',
                'phpparser\\node\\stmt\\function_' => '/Node/Stmt/Function_.php',
                'phpparser\\node\\stmt\\global_' => '/Node/Stmt/Global_.php',
                'phpparser\\node\\stmt\\goto_' => '/Node/Stmt/Goto_.php',
                'phpparser\\node\\stmt\\groupuse' => '/Node/Stmt/GroupUse.php',
                'phpparser\\node\\stmt\\haltcompiler' => '/Node/Stmt/HaltCompiler.php',
                'phpparser\\node\\stmt\\if_' => '/Node/Stmt/If_.php',
                'phpparser\\node\\stmt\\inlinehtml' => '/Node/Stmt/InlineHTML.php',
                'phpparser\\node\\stmt\\interface_' => '/Node/Stmt/Interface_.php',
                'phpparser\\node\\stmt\\label' => '/Node/Stmt/Label.php',
                'phpparser\\node\\stmt\\namespace_' => '/Node/Stmt/Namespace_.php',
                'phpparser\\node\\stmt\\nop' => '/Node/Stmt/Nop.php',
                'phpparser\\node\\stmt\\property' => '/Node/Stmt/Property.php',
                'phpparser\\node\\stmt\\propertyproperty' => '/Node/Stmt/PropertyProperty.php',
                'phpparser\\node\\stmt\\return_' => '/Node/Stmt/Return_.php',
                'phpparser\\node\\stmt\\static_' => '/Node/Stmt/Static_.php',
                'phpparser\\node\\stmt\\staticvar' => '/Node/Stmt/StaticVar.php',
                'phpparser\\node\\stmt\\switch_' => '/Node/Stmt/Switch_.php',
                'phpparser\\node\\stmt\\throw_' => '/Node/Stmt/Throw_.php',
                'phpparser\\node\\stmt\\trait_' => '/Node/Stmt/Trait_.php',
                'phpparser\\node\\stmt\\traituse' => '/Node/Stmt/TraitUse.php',
                'phpparser\\node\\stmt\\traituseadaptation' => '/Node/Stmt/TraitUseAdaptation.php',
                'phpparser\\node\\stmt\\traituseadaptation\\alias' => '/Node/Stmt/TraitUseAdaptation/Alias.php',
                'phpparser\\node\\stmt\\traituseadaptation\\precedence' => '/Node/Stmt/TraitUseAdaptation/Precedence.php',
                'phpparser\\node\\stmt\\trycatch' => '/Node/Stmt/TryCatch.php',
                'phpparser\\node\\stmt\\unset_' => '/Node/Stmt/Unset_.php',
                'phpparser\\node\\stmt\\use_' => '/Node/Stmt/Use_.php',
                'phpparser\\node\\stmt\\useuse' => '/Node/Stmt/UseUse.php',
                'phpparser\\node\\stmt\\while_' => '/Node/Stmt/While_.php',
                'phpparser\\nodeabstract' => '/NodeAbstract.php',
                'phpparser\\nodedumper' => '/NodeDumper.php',
                'phpparser\\nodetraverser' => '/NodeTraverser.php',
                'phpparser\\nodetraverserinterface' => '/NodeTraverserInterface.php',
                'phpparser\\nodevisitor' => '/NodeVisitor.php',
                'phpparser\\nodevisitor\\nameresolver' => '/NodeVisitor/NameResolver.php',
                'phpparser\\nodevisitorabstract' => '/NodeVisitorAbstract.php',
                'phpparser\\parser' => '/Parser.php',
                'phpparser\\parser\\multiple' => '/Parser/Multiple.php',
                'phpparser\\parser\\php5' => '/Parser/Php5.php',
                'phpparser\\parser\\php7' => '/Parser/Php7.php',
                'phpparser\\parser\\tokens' => '/Parser/Tokens.php',
                'phpparser\\parserabstract' => '/ParserAbstract.php',
                'phpparser\\parserfactory' => '/ParserFactory.php',
                'phpparser\\prettyprinter\\standard' => '/PrettyPrinter/Standard.php',
                'phpparser\\prettyprinterabstract' => '/PrettyPrinterAbstract.php',
                'phpparser\\serializer' => '/Serializer.php',
                'phpparser\\serializer\\xml' => '/Serializer/XML.php',
                'phpparser\\unserializer' => '/Unserializer.php',
                'phpparser\\unserializer\\xml' => '/Unserializer/XML.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd