Bug 1165486 followup: Annotate toObjectBox() impls as 'override'. rs=ehsan

This commit is contained in:
Daniel Holbert 2015-06-15 23:21:51 -07:00
Родитель d216624f4f
Коммит d26a71c212
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -293,7 +293,7 @@ class GlobalSharedContext : public SharedContext
inWith_(computeInWith())
{}
ObjectBox* toObjectBox() { return nullptr; }
ObjectBox* toObjectBox() override { return nullptr; }
HandleObject topStaticScope() const { return topStaticScope_; }
bool allowSyntax(AllowedSyntax allowSyntax) const override {
switch (allowSyntax) {
@ -338,7 +338,7 @@ class FunctionBox : public ObjectBox, public SharedContext
ParseContext<ParseHandler>* pc, Directives directives,
bool extraWarnings, GeneratorKind generatorKind);
ObjectBox* toObjectBox() { return this; }
ObjectBox* toObjectBox() override { return this; }
JSFunction* function() const { return &object->as<JSFunction>(); }
GeneratorKind generatorKind() const { return GeneratorKindFromBits(generatorKindBits_); }