Index: src/ast/ast.h |
diff --git a/src/ast/ast.h b/src/ast/ast.h |
index 0a4e7481810b541c263d7965fa788375383dded2..06c93bd36158c3ce1247b781af8a2745baaf820c 100644 |
--- a/src/ast/ast.h |
+++ b/src/ast/ast.h |
@@ -468,9 +468,6 @@ class Block final : public BreakableStatement { |
class IgnoreCompletionField |
: public BitField<bool, BreakableStatement::kNextBitFieldIndex, 1> {}; |
- |
- protected: |
- static const uint8_t kNextBitFieldIndex = IgnoreCompletionField::kNext; |
}; |
@@ -486,9 +483,6 @@ class DoExpression final : public Expression { |
} |
bool IsAnonymousFunctionDefinition() const; |
- protected: |
- static const uint8_t kNextBitFieldIndex = Expression::kNextBitFieldIndex; |
- |
private: |
friend class AstNodeFactory; |
@@ -520,8 +514,6 @@ class Declaration : public AstNode { |
Declaration(VariableProxy* proxy, Scope* scope, int pos, NodeType type) |
: AstNode(pos, type), proxy_(proxy), scope_(scope), next_(nullptr) {} |
- static const uint8_t kNextBitFieldIndex = AstNode::kNextBitFieldIndex; |
- |
private: |
VariableProxy* proxy_; |
// Nested scope from which the declaration originated. |
@@ -780,9 +772,6 @@ class ForInStatement final : public ForEachStatement { |
class ForInTypeField |
: public BitField<ForInType, ForEachStatement::kNextBitFieldIndex, 1> {}; |
- |
- protected: |
- static const uint8_t kNextBitFieldIndex = ForInTypeField::kNext; |
}; |
@@ -1476,7 +1465,6 @@ class ObjectLiteral final : public MaterializedLiteral { |
int local_id(int n) const { return base_id() + parent_num_ids() + n; } |
uint32_t boilerplate_properties_; |
- FeedbackVectorSlot slot_; |
Handle<FixedArray> constant_properties_; |
ZoneList<Property*>* properties_; |
@@ -1486,9 +1474,6 @@ class ObjectLiteral final : public MaterializedLiteral { |
}; |
class MayStoreDoublesField |
: public BitField<bool, HasElementsField::kNext, 1> {}; |
- |
- protected: |
- static const uint8_t kNextBitFieldIndex = MayStoreDoublesField::kNext; |
}; |