Chromium Code Reviews| Index: src/code-stubs.h |
| diff --git a/src/code-stubs.h b/src/code-stubs.h |
| index 2edeb8f39f890b44be8e701329e299dcedc51201..f284a344c950cc88b7742b9bf527e77a3054612b 100644 |
| --- a/src/code-stubs.h |
| +++ b/src/code-stubs.h |
| @@ -587,15 +587,11 @@ class FastNewClosureStub : public HydrogenCodeStub { |
| FunctionKind kind() const { |
| return FunctionKindBits::decode(sub_minor_key()); |
| } |
| - bool is_arrow() const { return IsArrowFunction(kind()); } |
| - bool is_generator() const { return IsGeneratorFunction(kind()); } |
| - bool is_concise_method() const { return IsConciseMethod(kind()); } |
| - bool is_default_constructor() const { return IsDefaultConstructor(kind()); } |
| private: |
| STATIC_ASSERT(LANGUAGE_END == 3); |
| class LanguageModeBits : public BitField<LanguageMode, 0, 2> {}; |
| - class FunctionKindBits : public BitField<FunctionKind, 2, 4> {}; |
|
adamk
2015/02/05 23:18:43
Out of curiosity, was this just busted before?
arv (Not doing code reviews)
2015/02/05 23:34:01
Someone forgot to update it.
|
| + class FunctionKindBits : public BitField<FunctionKind, 2, 6> {}; |
| DEFINE_CALL_INTERFACE_DESCRIPTOR(FastNewClosure); |
| DEFINE_HYDROGEN_CODE_STUB(FastNewClosure, HydrogenCodeStub); |