Skip to content
Snippets Groups Projects
Commit 3372820b authored by Mike Vitousek's avatar Mike Vitousek
Browse files

Update base for Update on "[compiler][ez] Rename...

Update base for Update on "[compiler][ez] Rename disableMemoizationForDebugging to just disableMemoization"


Summary: We don't really need to make positive claims about what a particular mode is for in the name

[ghstack-poisoned]
parent 8a524630
No related merge requests found
......@@ -274,12 +274,14 @@ function mayHaveChanged(env: Environment, instruction: Instruction): boolean {
case "GetIterator":
case "IteratorNext":
case "NextPropertyOf":
case "PropertyLoad":
case "CallExpression":
case "MethodCall":
case "NewExpression": {
return true;
}
case "PropertyLoad": {
return instruction.value.property !== "current"
}
case "LoadGlobal": {
return (
instruction.value.binding.kind === "ModuleLocal" &&
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment