Browse Source

also except inline methods (#9029)

Aleksandr Kuzmenko 5 năm trước cách đây
mục cha
commit
fbeac98f86
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/optimization/analyzerTexpr.ml

+ 1 - 1
src/optimization/analyzerTexpr.ml

@@ -1270,7 +1270,7 @@ module Purity = struct
 		match cf.cf_kind with
 			| Method MethDynamic | Var _ ->
 				taint node;
-			| _ when not (is_static || is_ctor || has_class_field_flag cf CfFinal) ->
+			| Method MethNormal when not (is_static || is_ctor || has_class_field_flag cf CfFinal) ->
 				taint node
 			| _ ->
 				match cf.cf_expr with