| Index: src/full-codegen.h
|
| diff --git a/src/full-codegen.h b/src/full-codegen.h
|
| index 1aeb86196cb1196f537908ce916b8c424d8dc36f..8c210ba8be903195d280a23a4c46364c249ff061 100644
|
| --- a/src/full-codegen.h
|
| +++ b/src/full-codegen.h
|
| @@ -563,6 +563,11 @@ class FullCodeGenerator: public AstVisitor {
|
| // The receiver and the key is left on the stack by the IC.
|
| void EmitKeyedPropertyLoad(Property* expr);
|
|
|
| + // Adds the properties to the class (function) object and to its prototype.
|
| + // Expects the class (function) in the accumulator. The class (function) is
|
| + // in the accumulator after installing all the properties.
|
| + void EmitClassDefineProperties(ClassLiteral* lit);
|
| +
|
| // Apply the compound assignment operator. Expects the left operand on top
|
| // of the stack and the right one in the accumulator.
|
| void EmitBinaryOp(BinaryOperation* expr,
|
|
|