Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Kill Compiler::Error and various Expression:: attributes
Summary: Nobody looks at the Compiler::Error results; and most of the useful ones are no longer even generated. Reviewed By: ricklavoie, alexeyt Differential Revision: D6874242 fbshipit-source-id: 3fd90119bae10582c08d85dcc9bb350b4ff9169a
- Loading branch information
Showing
with
6 additions
and 567 deletions.
- +0 −1 .gitignore
- +0 −1 hphp/.gitignore
- +0 −15 hphp/compiler/CMakeLists.txt
- +0 −1 hphp/compiler/analysis/analysis_result.cpp
- +0 −1 hphp/compiler/analysis/analysis_result.h
- +0 −3 hphp/compiler/analysis/class_scope.cpp
- +0 −208 hphp/compiler/analysis/code_error.cpp
- +0 −73 hphp/compiler/analysis/code_error.h
- +0 −3 hphp/compiler/analysis/emitter.cpp
- +0 −1 hphp/compiler/analysis/file_scope.cpp
- +0 −1 hphp/compiler/analysis/file_scope.h
- +0 −2 hphp/compiler/analysis/function_scope.cpp
- +0 −7 hphp/compiler/compiler.cpp
- +1 −32 hphp/compiler/construct.cpp
- +1 −4 hphp/compiler/construct.h
- +0 −5 hphp/compiler/expression/array_element_expression.cpp
- +0 −3 hphp/compiler/expression/assignment_expression.cpp
- +0 −2 hphp/compiler/expression/binary_op_expression.cpp
- +0 −1 hphp/compiler/expression/class_constant_expression.cpp
- +0 −1 hphp/compiler/expression/constant_expression.cpp
- +0 −1 hphp/compiler/expression/dynamic_function_call.cpp
- +0 −1 hphp/compiler/expression/dynamic_variable.cpp
- +0 −1 hphp/compiler/expression/encaps_list_expression.cpp
- +1 −22 hphp/compiler/expression/expression.cpp
- +0 −11 hphp/compiler/expression/expression.h
- +0 −2 hphp/compiler/expression/function_call.cpp
- +0 −5 hphp/compiler/expression/include_expression.cpp
- +0 −1 hphp/compiler/expression/list_assignment.cpp
- +0 −1 hphp/compiler/expression/new_object_expression.cpp
- +0 −1 hphp/compiler/expression/null_coalesce_expression.cpp
- +0 −1 hphp/compiler/expression/object_method_expression.cpp
- +0 −5 hphp/compiler/expression/object_property_expression.cpp
- +1 −3 hphp/compiler/expression/parameter_expression.cpp
- +0 −1 hphp/compiler/expression/qop_expression.cpp
- +0 −1 hphp/compiler/expression/scalar_expression.cpp
- +0 −1 hphp/compiler/expression/simple_function_call.cpp
- +0 −1 hphp/compiler/expression/static_member_expression.cpp
- +0 −4 hphp/compiler/expression/unary_op_expression.cpp
- +0 −35 hphp/compiler/parser/parser.cpp
- +0 −5 hphp/compiler/parser/parser.h
- +0 −1 hphp/compiler/statement/catch_statement.cpp
- +0 −1 hphp/compiler/statement/class_constant.cpp
- +0 −3 hphp/compiler/statement/class_require_statement.cpp
- +0 −3 hphp/compiler/statement/class_statement.cpp
- +0 −4 hphp/compiler/statement/class_variable.cpp
- +0 −1 hphp/compiler/statement/foreach_statement.cpp
- +0 −5 hphp/compiler/statement/function_statement.cpp
- +0 −1 hphp/compiler/statement/global_statement.cpp
- +1 −19 hphp/compiler/statement/goto_statement.cpp
- +0 −2 hphp/compiler/statement/goto_statement.h
- +0 −1 hphp/compiler/statement/interface_statement.cpp
- +1 −2 hphp/compiler/statement/label_statement.cpp
- +0 −2 hphp/compiler/statement/label_statement.h
- +0 −28 hphp/compiler/statement/method_statement.cpp
- +0 −2 hphp/compiler/statement/return_statement.cpp
- +0 −1 hphp/compiler/statement/statement_list.cpp
- +0 −1 hphp/compiler/statement/switch_statement.cpp
- +0 −1 hphp/compiler/statement/unset_statement.cpp
- +0 −1 hphp/compiler/statement/use_trait_statement.cpp
- +0 −10 hphp/parser/parser.cpp
- +0 −3 hphp/parser/parser.h
- +0 −4 hphp/runtime/ext/factparse/parser.cpp
- +0 −3 hphp/runtime/ext/factparse/parser.h
Oops, something went wrong.