chaokunyang commented on code in PR #2112:
URL: https://github.com/apache/fury/pull/2112#discussion_r2008772579


##########
dart/packages/fury-core/lib/src/code_gen/analyse/analysis_cache.dart:
##########
@@ -0,0 +1,99 @@
+import 'dart:collection';
+import 'package:fury_core/src/code_gen/entity/fields_cache_unit.dart';
+import 'package:fury_core/src/code_gen/meta/impl/type_immutable.dart';
+import 'package:fury_core/src/code_gen/meta/lib_import_pack.dart';
+import 'package:fury_core/src/dev_annotation/donot_modify.dart';
+
+import '../entity/contructor_params.dart';
+
+class AnalysisCache{
+  static final Map<int, ConstructorParams> _clsIdToUnnamedCons = HashMap();
+  static final Map<int, FieldsCacheUnit> _clsIdToFields = HashMap();
+
+  // _typeToTypeSpecUnnullable 和_typeToTypeSpec1Unnullable 
这里只是记录分析过的类型,但是nullable信息不在其中,

Review Comment:
   Could we use English comments, so that more contributors can collaborate on 
this?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to