Lines Matching refs:Assignment
1040 // Perform the assignment as if via '='.
1601 void FullCodeGenerator::VisitAssignment(Assignment* expr) {
1602 Comment cmnt(masm_, "[ Assignment");
1893 // Non-initializing assignment to let variable needs a write barrier.
1919 // Assignment to var or initializing assignment to let/const
1929 // Perform the assignment.
1949 void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) {
1950 // Assignment to a property, using a named store IC.
1955 // If the assignment starts a block of assignments to the same object,
1978 // If the assignment ends an initialization block, revert to fast case.
1980 __ push(rax); // Result of assignment, saved even if not needed.
1991 void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) {
1992 // Assignment to a property, using a keyed store IC.
1994 // If the assignment starts a block of assignments to the same object,
2018 // If the assignment ends an initialization block, revert to fast case.
2021 __ push(rax); // Result of assignment, saved even if not needed.
3931 // Perform the assignment as if via '='.
3944 // Perform the assignment as if via '='.