Home | History | Annotate | Download | only in bytecompiler

Lines Matching full:lhs

813 // lefthand side of the assignment should be passing as the optional 'lhs' argument.
821 // a lhs to a concatenating assignment is not provided then the root add should have at
824 RegisterID* BinaryOpNode::emitStrcat(BytecodeGenerator& generator, RegisterID* dst, RegisterID* lhs, ReadModifyResolveNode* emitExpressionInfoForMe)
846 // If there is an assignment, allocate a temporary to hold the lhs after conversion.
847 // We could possibly avoid this (the lhs is converted last anyway, we could let the
849 if (lhs)
906 // If there is an assignment convert the lhs now. This will also copy lhs to
908 if (lhs)
909 generator.emitToPrimitive(temporaryRegisters[0].get(), lhs);