Index: runtime/vm/object.h |
diff --git a/runtime/vm/object.h b/runtime/vm/object.h |
index b223be260e951e15d3a2dad59bc8e01645994a94..5d3c509bdf190d2536615580cb679d67d52474ae 100644 |
--- a/runtime/vm/object.h |
+++ b/runtime/vm/object.h |
@@ -2654,10 +2654,6 @@ class Function : public Object { |
// Sets deopt reason in all ICData-s with given deopt_id. |
void SetDeoptReasonForAll(intptr_t deopt_id, ICData::DeoptReasonId reason); |
- static const int kCtorPhaseInit = 1 << 0; |
- static const int kCtorPhaseBody = 1 << 1; |
- static const int kCtorPhaseAll = (kCtorPhaseInit | kCtorPhaseBody); |
- |
void set_modifier(RawFunction::AsyncModifier value) const; |
// static: Considered during class-side or top-level resolution rather than |