From 70475972998da2a099b9ea2e21c4ecbed4df17d6 Mon Sep 17 00:00:00 2001 From: tianfenghan Date: Thu, 9 Jul 2026 15:37:57 +0800 Subject: [PATCH] chore(project): update project name from Swoole-Compiler to TypePHP - Replace all occurrences of "Swoole-Compiler(AOT)" with "TypePHP" in file headers - Update comment in ResourceFileGenerator to reflect new project name - Change generated file comments from "Generated by Swoole Compiler" to "Generated by TypePHP" - Update all PHP entity files to reference new project name - Modify exception and generator classes to use TypePHP branding - Update parser and resolver components with new project identification --- src/Php/Context/FunctionContext.php | 2 +- src/Php/Entity/ArrayInitPlan.php | 2 +- src/Php/Entity/ClassDef.php | 2 +- src/Php/Entity/ClassLikeDef.php | 2 +- src/Php/Entity/ConstantDef.php | 2 +- src/Php/Entity/FunctionDef.php | 2 +- src/Php/Entity/InterfaceDef.php | 2 +- src/Php/Entity/MethodDef.php | 2 +- src/Php/Entity/PropertyDef.php | 2 +- src/Php/Exception/DynamicCall.php | 2 +- src/Php/Exception/PlaceHolder.php | 2 +- src/Php/Exception/Redo.php | 2 +- src/Php/Exception/Skip.php | 2 +- src/Php/Exception/SyntaxError.php | 2 +- src/Php/Exception/TestError.php | 2 +- src/Php/Exception/Unsupported.php | 2 +- src/Php/Generator/AnonClassGenerator.php | 2 +- src/Php/Generator/ClosureGenerator.php | 2 +- src/Php/Generator/PlaceHolderGenerator.php | 2 +- src/Php/Generator/PropertyPromotion.php | 2 +- src/Php/Generator/ResourceFileGenerator.php | 6 +++--- src/Php/Generator/TypeCheckGenerator.php | 2 +- src/Php/Generator/Utils.php | 2 +- src/Php/Optimizer/FuncCallOptimizer.php | 2 +- src/Php/Parser/AssignOpTrait.php | 2 +- src/Php/Parser/BinaryOpTrait.php | 2 +- src/Php/Parser/StdContainerTrait.php | 2 +- src/Php/Parser/TypeConversionTrait.php | 2 +- src/Php/Parser/TypeDetectionTrait.php | 2 +- src/Php/Resolver/InstancePropertyFetchTarget.php | 2 +- src/Php/Resolver/NativePropertyAccess.php | 2 +- src/Php/Resolver/PropertyAccessContext.php | 2 +- src/Php/Resolver/PropertyAccessResolver.php | 2 +- src/Php/Resolver/PropertyAccessResult.php | 2 +- src/Php/Resolver/PropertyAssignTypeInfo.php | 2 +- src/Php/Resolver/PropertyWriteTarget.php | 2 +- src/Php/Resolver/StaticPropertyFetchResolution.php | 2 +- src/Php/Resolver/StaticPropertyFetchTarget.php | 2 +- 38 files changed, 40 insertions(+), 40 deletions(-) diff --git a/src/Php/Context/FunctionContext.php b/src/Php/Context/FunctionContext.php index b2e4ebc5..70718d01 100644 --- a/src/Php/Context/FunctionContext.php +++ b/src/Php/Context/FunctionContext.php @@ -1,6 +1,6 @@