Lines Matching refs:Breakable
63 // Check if expression is breakable.
73 // If the condition is breakable the if statement is breakable.
88 // Return is breakable if the expression is.
105 // Switch statements breakable if the tag expression is.
111 // Mark do while as breakable to avoid adding a break slot in front of it.
117 // Mark while statements breakable if the condition expression is.
123 // Mark for statements breakable if the condition expression is.
131 // Mark for in statements breakable if the enumerable expression is.
138 // Mark try catch as breakable to avoid adding a break slot in front of it.
145 // Mark try finally as breakable to avoid adding a break slot in front of it.
152 // The debugger statement is breakable.
197 // breakable.
205 // Otherwise the assignment is breakable if the assigned value is.
211 // Throw is breakable if the expression is.
217 // Property load is breakable.
223 // Function calls both through IC and call stub are breakable.
229 // Function calls through new are breakable.
602 // Check if the statement will be breakable without adding a debug break
607 // breakable. For breakable statements the actual recording of the
608 // position will be postponed to the breakable code (typically an IC).
612 // break slot to make the statement breakable.
630 // Check if the expression will be breakable without adding a debug break
635 // breakable. For breakable expressions the actual recording of the
636 // position will be postponed to the breakable code (typically an IC).
644 // break slot to make the statement breakable.
901 Breakable nested_statement(this, stmt);
989 Breakable* target = current->AsBreakable();