| Index: src/ia32/full-codegen-ia32.cc
|
| diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc
|
| index 1cd3d445945234b2a9abd6dec48d7b848ee4d04c..da2f3f892a51fb53166a6b2e09e703c62d276e71 100644
|
| --- a/src/ia32/full-codegen-ia32.cc
|
| +++ b/src/ia32/full-codegen-ia32.cc
|
| @@ -2564,6 +2564,17 @@ void FullCodeGenerator::EmitClassDefineProperties(ClassLiteral* lit,
|
|
|
| // constructor
|
| __ CallRuntime(Runtime::kToFastProperties, 1);
|
| +
|
| + if (is_strong(language_mode())) {
|
| + __ mov(scratch,
|
| + FieldOperand(eax, JSFunction::kPrototypeOrInitialMapOffset));
|
| + __ push(eax);
|
| + __ Push(scratch);
|
| + __ CallRuntime(Runtime::kObjectFreeze, 1);
|
| + // TODO(conradw): It would be more efficient to define the properties with
|
| + // the right attributes the first time round.
|
| + __ CallRuntime(Runtime::kObjectFreeze, 1);
|
| + }
|
| }
|
|
|
|
|
|
|