Fixed C++ errors

This commit is contained in:
waldemar%netscape.com 2000-12-16 01:14:36 +00:00
parent 80b7ec4f9f
commit a86b8ebf19
2 changed files with 4 additions and 4 deletions

View File

@ -274,8 +274,8 @@ namespace ICG {
typedef enum { NoKind, Var, Property, Slot, Static, Constructor, Name, Method } LValueKind;
LValueKind ICodeGenerator::getVariableByName(const StringAtom &name, TypedRegister &v);
LValueKind ICodeGenerator::scanForVariable(const StringAtom &name, TypedRegister &v, uint32 &slotIndex, TypedRegister &base);
LValueKind getVariableByName(const StringAtom &name, TypedRegister &v);
LValueKind scanForVariable(const StringAtom &name, TypedRegister &v, uint32 &slotIndex, TypedRegister &base);
LValueKind resolveIdentifier(const StringAtom &name, TypedRegister &v, uint32 &slotIndex, TypedRegister &base, bool lvalue);
TypedRegister handleIdentifier(IdentifierExprNode *p, ExprNode::Kind use, ICodeOp xcrementOp, TypedRegister ret, ArgumentList *args, bool lvalue);
TypedRegister handleDot(BinaryExprNode *b, ExprNode::Kind use, ICodeOp xcrementOp, TypedRegister ret, ArgumentList *args, bool lvalue);

View File

@ -274,8 +274,8 @@ namespace ICG {
typedef enum { NoKind, Var, Property, Slot, Static, Constructor, Name, Method } LValueKind;
LValueKind ICodeGenerator::getVariableByName(const StringAtom &name, TypedRegister &v);
LValueKind ICodeGenerator::scanForVariable(const StringAtom &name, TypedRegister &v, uint32 &slotIndex, TypedRegister &base);
LValueKind getVariableByName(const StringAtom &name, TypedRegister &v);
LValueKind scanForVariable(const StringAtom &name, TypedRegister &v, uint32 &slotIndex, TypedRegister &base);
LValueKind resolveIdentifier(const StringAtom &name, TypedRegister &v, uint32 &slotIndex, TypedRegister &base, bool lvalue);
TypedRegister handleIdentifier(IdentifierExprNode *p, ExprNode::Kind use, ICodeOp xcrementOp, TypedRegister ret, ArgumentList *args, bool lvalue);
TypedRegister handleDot(BinaryExprNode *b, ExprNode::Kind use, ICodeOp xcrementOp, TypedRegister ret, ArgumentList *args, bool lvalue);